Main > Free Download Search >

Free hdr vdp software for linux

hdr vdp

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 17
HDR Visual Difference Predictor 1.6

HDR Visual Difference Predictor 1.6


HDR Visual Difference Predictor (HDR VDP) is a perceptual metric that can predict whether differences between two images. more>>
Visual difference metrics can predict whether differences between two images are visible to the human observer or not. Such metrics are used for testing either visibility of information (whether we can see important visual information) or visibility of noise (to make sure we do not see any distortions in images, e.g. due to lossy compression).

The image below shows how two input images, a reference image (upper left) and a distorted image (lower left), are processed with the VDP to produce a probability of detection map (right). Such probability of detection map tells how likely we will notice a difference between two images for each part of an image.

Red color denotes high probability, green - low probability. Red color is mostly present in the areas where there is a snow covered path. Because of smooth texture of the snow, there is not much visual masking and distortions are easily visible.

Although there are dozens of visible difference metrics that serve a similar purpose, our Visual Difference Predictor for HDR images (HDR-VDP) has two unique advantages: firstly, our metric works with a full range of luminance values that can be meet in a real word (HDR images), and secondly, we offer a complete source code for free.

High Dynamic Range Visible Difference Predictor (HDR-VDP) can work within the complete range of luminance the human eye can see. An input to our metric is a high dynamic range (HDR) image, or an ordinary 8-bits-per-color image, converted to the actual luminance values. The proposed metric takes into account the aspects of high contrast vision, like scattering of the light in the optics (OTF), nonlinear response to light for the full range of luminance, and local adaptation.

<<less
Download (0.13MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1028 downloads
MIME::Head 5.420

MIME::Head 5.420


MIME::Head is a MIME message header (a subclass of Mail::Header). more>>
MIME::Head is a MIME message header (a subclass of Mail::Header).

SYNOPSIS

Before reading further, you should see MIME::Tools to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. Ill wait.

Ready? Ok...

Construction

### Create a new, empty header, and populate it manually:
$head = MIME::Head->new;
$head->replace(content-type, text/plain; charset=US-ASCII);
$head->replace(content-length, $len);

### Parse a new header from a filehandle:
$head = MIME::Head->read(*STDIN);

### Parse a new header from a file, or a readable pipe:
$testhead = MIME::Head->from_file("/tmp/test.hdr");
$a_b_head = MIME::Head->from_file("cat a.hdr b.hdr |");

Output

### Output to filehandle:
$head->print(*STDOUT);

### Output as string:
print STDOUT $head->as_string;
print STDOUT $head->stringify;

Getting field contents

### Is this a reply?
$is_reply = 1 if ($head->get(Subject) =~ /^Re: /);

### Get receipt information:
print "Last received from: ", $head->get(Received, 0), "n";
@all_received = $head->get(Received);

### Print the subject, or the empty string if none:
print "Subject: ", $head->get(Subject,0), "n";

### Too many hops? Count em and see!
if ($head->count(Received) > 5) { ...

### Test whether a given field exists
warn "missing subject!" if (! $head->count(subject));
Setting field contents
### Declare this to be an HTML header:
$head->replace(Content-type, text/html);
Manipulating field contents
### Get rid of internal newlines in fields:
$head->unfold;

### Decode any Q- or B-encoded-text in fields (DEPRECATED):
$head->decode;

Getting high-level MIME information

### Get/set a given MIME attribute:
unless ($charset = $head->mime_attr(content-type.charset)) {
$head->mime_attr("content-type.charset" => "US-ASCII");
}

### The content type (e.g., "text/html"):
$mime_type = $head->mime_type;

### The content transfer encoding (e.g., "quoted-printable"):
$mime_encoding = $head->mime_encoding;

### The recommended name when extracted:
$file_name = $head->recommended_filename;

### The boundary text, for multipart messages:
$boundary = $head->multipart_boundary;

<<less
Download (0.38MB)
Added: 2007-08-13 License: Perl Artistic License Price:
803 downloads
File::Wildcard 0.10

File::Wildcard 0.10


File::Wildcard is a Perl module for enhanced glob processing. more>>
File::Wildcard is a Perl module for enhanced glob processing.

SYNOPSIS

use File::Wildcard;
my $foo = File::Wildcard->new(path => "/home/me///core");
while (my $file = $foo->next) {
unlink $file;
}

When looking at how various operating systems do filename wildcard expansion (globbing), VMS has a nice syntax which allows expansion and searching of whole directory trees. It would be nice if other operating systems had something like this built in. The best Unix can manage is through the utility program find.

This module provides this facility to Perl. Whereas native VMS syntax uses the ellipsis "...", this will not fit in with POSIX filenames, as ... is a valid (though somewhat strange) filename. Instead, the construct "///" is used as this cannot syntactically be part of a filename, as you do not get three concurrent filename separators with nothing between (three slashes are used to avoid confusion with //node/path/name syntax).

You dont have to use this syntax, as you can do the splitting yourself and pass in an arrayref as your path.

The module also forms a regular expression for the whole of the wildcard string, and binds a series of back references ($1, $2 etc.) which are available to construct new filenames.

new

File::Wildcard-new( $wildcard, [,option => value,...]);>
my $foo = File::Wildcard->new( path => "/home/me///core");
my $srcfnd = File::Wildcard->new( path => "src///*.cpp",
match => qr(^src/(.*?).cpp$),
derive => [src/$1.o,src/$1.hpp]);

This is the constructor for File::Wildcard objects. At a simple level, pass a single wildcard string as a path.

For more complicated operations, you can supply your own match regexp, or use the derive option to specify regular expression captures to form the basis of other filenames that are constructed for you.

The $srcfnd example gives you object files and header files corresponding to C++ source files.

Here are the options that are available:

path

This is the input parameter that specifies the range of files that will be looked at. This is a glob spec which can also contain the ellipsis /// (it could contain more than one ellipsis, but the benefit of this is questionable, and multiple ellipsi would cause a performance hit).

Note that the path can be relative or absolute. new will do the right thing, working out that a path starting with / is absolute. In order to recurse from the current directory downwards, specify .///foo.

As an alternative, you can supply an arrayref with the path constituents already split. If you do this, you need to tell new if the path is absolute. Include an empty string for an ellipsis. For example:

foo///bar/*.c is equivalent to [foo,,bar,*.c]

You can also construct a File::Wildcard without a path. A call to next will return undef, but paths can be added using the append and prepend methods.
absolute

This is ignored unless you are using a pre split path. If you are passing a string as the path, new will work out whether the path is absolute or relative. Pass a true value for absolute paths.

If your original filespec started with / before you split it, specify absolute => 1. absolute is not required for Windows if the path contains a drive specification, e.g. C:/foo/bar.

case_insensitive

By default, the module will use Filesys::Type to determine whether the file system of your wildcard is defined. This is an optional module (see Module::Optional), and File::Wildcard will guess at case sensitivity based on your operating system. This will not always be correct, as the file system might be VFAT mounted on Linux or ODS-5 on VMS.

Specifying the option case_insensitive explicitly forces this behaviour on the wildcard.

Note that File::Wildcard will use the file system of the current working directory if the path is not absolute. If the path is absolute, you should specify the case_sensitivity option explicitly.

exclude

You can provide a regexp to apply to any generated paths, which will cause any matching paths not to be processed. If the root of a directory tree matches, no processing is done on the entire tree.

This option can be useful for excluding version control repositories, e.g.

exclude => qr/.svn/
match

Optional. If you do not specify a regexp, you get all the files that match the glob; in addition, new will set up a regexp for you, to provide a capture for each wildcard used in the path.

If you do provide a match parameter, this will be used instead, and will filter the results.

derive

Supply an arrayref with a list of derived filenames, which will be constructed for each matching file. This causes next to return an arrayref instead of a scalar.
follow

If given a true value indicates that symbolic links are to be followed. Otherwise, the symbolic link target itself is presented, but the ellipsis will not traverse the link.

This module detects a looping symlink that points to a directory higher up, and will only present the tree once.

ellipsis_order

This can take one of the following values: normal, breadth-first, inside-out. The default option is normal. This controls how File::Wildcard handles the ellipsis. The default is a normal depth first search, presenting the name of each containing directory before the contents.

The inside-out order presents the contents of directories first before the directory, which is useful when you want to remove files and directories (all O/S require directories to be empty before rmdir will work). See t/03_absolute.t as this uses inside-out order to tidy up after the test.

Breadth-first is rarely needed (but I do have an application for it). Here, the whole directory contents is presented before traversing any subdirectories.
Consider the following tree: a/ a/bar/ a/bar/drink a/foo/ a/foo/lish
breadth-first will give the following order: qw(a/ a/bar/ a/foo/ a/bar/drink a/foo/lish). normal gives the order in which the files are listed. inside-out gives the following: qw(a/bar/drink a/bar/ a/foo/lish a/foo/ a/).

sort

By default, globbing returns the list of files in the order in which they are returned by the dirhandle (internally). If you specify sort => 1, the files are sorted into ASCII sequence (case insensitively if we are operating that way). If you specify a CODEREF, this will be used as a comparison routine. Note that this takes its operands in @_, not in $a and $b.

debug and debug_output

You can enable a trace of the internal states of File::Wildcard by setting debug to a true value. Set debug_output to an open filehandle to get the trace in a file. If you are submitting bug reports for File::Wildcard, attaching debug trace files would be very useful.

debug_output defaults to STDERR.
match
my $foo_re = $foo->match;
$foo->match(bar/core);

This is a get and set method that gives access to the match regexp that the File::Wildcard object is using. It is possible to change the regex on the fly in the middle of a search (though I dont know why anyone would want to do this).

append

$foo->append(path => /home/me///*.tmp);

appends a path to an objects todo list. This will be globbed after the object has finished processing the existing wildcards.

prepend
$srcfnd->prepend(path => $include_file);

This is similar to append, but prepends the path to the todo list. In other words, the current wildcard operation is interrupted to serve the new path, then the previous wildcard operation is resumed when this is exhausted.

next
while (my $core = $foo->next) {
unlink $core;
}
my ($src,$obj,$hdr) = @{$srcfnd->next};

The next method is an iterator, which returns successive files. Returns matching files if there was no derive option passed to new. If there was a derive option, returns an arrayref containing the matching filespec and all derived filespecs. The derived filespecs do not have to exist.

Note that next maintains an internal cursor, which retains context and state information. Beware if the contents of directories are changing while you are iterating with next; you may get unpredictable results. If you are intending to change the contents of the directories you are scanning (with unlink or rename), you are better off deferring this operation until you have processed the whole tree. For the pending delete or rename operations, you could always use another File::Wildcard object - see the spike example below:

all
my @cores = $foo->all;

all returns an array of matching files, in the simple case. Returns an array of arrays if you are constructing new filenames, like the $srcfnd example.

Beware of the performance and memory implications of using all. The method will not return until it has read the entire directory tree. Use of the all method is not recommended for traversing large directory trees and whole file systems. Consider coding the traversal using the iterator next instead.

reset

reset causes the wildcard context to be set to re-read the first filename again. Note that this will cause directory contents to be re-read.

Note also that this will cause the path to revert to the original path specified to new. Any additional paths appended or prepended will be forgotten.

close

Release all directory handles associated with the File::Wildcard object. An object that has been closed will be garbage collected once it goes out of scope. Wildcards that have been exhausted are automatically closed, (i.e. all was used, or c< next > returned undef).

Subsequent calls to next will return undef. It is possible to call reset after close on the same File::Wildcard object, which will cause it to be reopened.

<<less
Download (0.023MB)
Added: 2007-04-27 License: Perl Artistic License Price:
910 downloads
exrtools 0.4

exrtools 0.4


exrtools project is a set of simple command-line utilities for manipulating with high dynamic range images in OpenEXR format. more>>
exrtools project is a set of simple command-line utilities for manipulating with high dynamic range images in OpenEXR format. OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.
exrtools was developed to help experiment with batch processing of HDR images for tone mapping. Each application is small and reasonably self-contained such that the source code may be of most value to others.
exrtools currently only works with RGBA OpenEXR files. As well, the code assumes that the EXR files and PNG files all use sRGB primaries and gamma function. Fixing this is not very difficult, and the code to fix allows for some interesting possibilities. That said, I do not have time right now, so this will have to wait.
exrtools and its source code is released under an MIT-style license and may be used in both commercial and non-commercial applications without fee.
Applications
exrblur
Applies a gaussian blur to an image.
exrchr
Applies spatially-varying chromatic adaptation to an image.
exricamtm
Performs tone mapping using the iCAM method.
exrnlm
Performs non-linear masking correction to an image.
exrnormalize
Normalize an image.
exrpptm
Performs tone mapping using the photoreceptor physiology method.
exrstats
Displays statistics about an image.
exrtopng
Converts an image to PNG format.
jpegtoexr
Converts an image to EXR format from JPEG.
pngtoexr
Converts an image to EXR format from PNG.
ppmtoexr
Converts an image to EXR format from PPM. Works with the 16 bit per channel PPM files from dcraw for digital cameras with RAW modes.
Enhancements:
- Added the ppmtoexr application to convert from PPM formats including the 48 bit per pixel format output by dcraw.
<<less
Download (0.29MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
OpenEXR 1.4.0a

OpenEXR 1.4.0a


OpenEXR project is a high dynamic-range (HDR) image file format for use in computer imaging applications. more>>
OpenEXR project is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.
OpenEXR is used by ILM on all motion pictures currently in production. The first movies to employ OpenEXR were Harry Potter and the Sorcerers Stone, Men in Black II, Gangs of New York, and Signs. Since then, OpenEXR has become ILMs main image file format.
Main features:
- Higher dynamic range and color precision than existing 8- and 10-bit image file formats.
- Support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels. The 16-bit floating-point format, called "half", is compatible with the half data type in NVIDIAs Cg graphics language and is supported natively on their new GeForce FX and Quadro FX 3D graphics solutions.
- Multiple lossless image compression algorithms. Some of the included codecs can achieve 2:1 lossless compression ratios on images with film grain.
- Extensibility. New compression codecs and image types can easily be added by extending the C++ classes included in the OpenEXR software distribution. New image attributes (strings, vectors, integers, etc.) can be added to OpenEXR image headers without affecting backward compatibility with existing OpenEXR applications.
Enhancements:
- This release added support for multithreaded reading and writing of files, Intel-based Mac OS X, and Visual Studio 2005.
- Building against OpenEXR headers was cleaned up.
- Handling of incomplete or damaged files was improved. IRIX, OSF/1, SunOS, Mac OS X prior to 10.3, and GCC prior to 3.3 were deprecated.
- New features were added to the documentation, and many bugs in the code, build system, and documentation were fixed.
<<less
Download (9.2MB)
Added: 2006-10-27 License: BSD License Price:
1097 downloads
Generator 0.35

Generator 0.35


Generator project is a Sega Genesis (MegaDrive) emulator. more>>
Generator project is a Sega Genesis (MegaDrive) emulator.
Generator is a portable Sega Genesis (Mega Drive) emulator with gtk/SDL, SVGAlib and Tcl/Tk user interfaces.
It features its own unique portable 68000 core processor emulation enhanced by recompilation techniques.
Enhancements:
- [CORE] Support for Genecyst patch files / Game Genie
- [CORE] Support for AVI uncompressed and MJPEG output
- [68000] Re-added busy wait removal that got lost
- [SOUND] Added configurable single-pole low-pass filter
- [CORE] Added autoconf/automake version checks
- [VDP] Fix FIFO busy flag (Nicholas Van Veen)
- [SOUND] Various further endian improvements from Bastien Nocera
- and andi@fischlustig.de (Debian)
- [SOUND] Various BSD compatibility improvements from
- Alistair Crooks and Michael Core (NetBSD)
- [UI] SDL Joystick support from Matthew N. Dodd (FreeBSD)
- [68000] Do pre-decrement with two reads (Steve Snake)
- [68000] Make TAS not write (Steve Snake) fixes Gargoyles, Ex Mutant
- [68000] Re-write ABCD,etc based on info from Bart Trzynadlowski
- [68000] Implement missing BTST op-code (fixes NHL Hockey 94)
<<less
Download (0.45MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1094 downloads
Streamsniff 0.03

Streamsniff 0.03


Streamsniff is a small command line tool that sniffs network traffic for stream URLs. more>>
Streamsniff is a command line tool that sniffs network traffic for stream urls. I built it because I got tired chasing stream urls hidden behind loads of html and javascript.

Run it as root, fire up your browser and start the stream you want to "expose". Streamsniff detects the initiation of rtsp, mms, icy and http streams, and performs a backtrace on http traffic to detect "playlist"-urls (stream metafiles).

Sample output showing ICY, RTSP and MMS urls and their playlist urls:

ICY : http://212.92.28.98:2002/
: http://real1.radio.hu/BartokG2.ram

RTSP: rtsp://rmlivev8.bbc.net.uk:554/farm/*/ev7/live24/6music/live/6music_dsat_g2.ra
: http://www.bbc.co.uk/6music/ram/dsatg2.ram

MMS : mms://wm05.nm.cbc.ca/cbcr2-toronto
: http://origin.www.cbc.ca/mrl2/livemedia/cbcr2-toronto.asx

Streamsniff is experimental. It runs on little-endian (Intel/AMD), Linux and Windows XP SP2. I want to be less specific about the platform. Help with ports (big-endian, FreeBSD) is appreciated.

Detects:

MMS
RTSP
ICY
HTTP (with Content-Type: audio.. , video.. , ..wms-hdr..)
<<less
Download (0.020MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1493 downloads
TrueCombat:Elite 0.49b

TrueCombat:Elite 0.49b


TrueCombat:Elite project is an Enemy Territory total conversion modification. more>>
TrueCombat:Elite project is an Enemy Territory total conversion modification of the free, popular, stand-alone third-person shooter Wolfenstein: Enemy Territory. That is, TC:E is an entirely free game, made by gamers, for gamers.
TC:E is currently being developed by GrooveSix Studios and TeamTerminator. While TeamTerminator is known for the famous Q3 based TrueCombat series, GrooveSix Studios was initiated by retired TeamTerminator co-founder Coroner to develop a Return to Castle Wolfenstein modification that is not released.
Thus, as very experienced Q3-based content creators, we hope to be able to serve the gaming community with a quality offering.
Now, the most important question: "What can you expect from TC:E?" TC:E is a tactical-team shooter, set up in a modern-world environment.
TC:E puts you into the role of elite mercenary soldier in the conflicts of two internationally operating forces.
Main features:
- Texture Tone Mapping
- HDR Lighting
- Realistic scaling
- High quality sounds (44khz)
- rich, deluxe graphics, based on high-resolution digital-camera shots
- Letterbox & widescreen modes - TrueVision
- Dynamic Eye Adaption - DynEA
- Cross Platform Gaming (Win, OS X, Linux)
- tactical-teamplay oriented, modern-world combat simulation
- realistic weapon behavior simulation
- iron sight aiming system, no crosshair
- sophisticated ballistic simulation including multiple-layer object penetration
- professional mode: 1-life, short-timed, objective driven scenarios in realistic environments
- bodycount mode: team deathmatch style, gametype to relax?
- Reinforced OBJ, as Capture the Flag in stock maps
- balanced, team specific set of real-world weapons (Beretta 92, Glock 19, Ump45, Mac-10, M4, Ak-47, and more)
- Free climb
- lag compensation, client-side bullet prediction, punkbuster support
- immersive and lethal, fast-paced action"
<<less
Download (MB)
Added: 2007-02-28 License: Freeware Price:
725 downloads
SIPp 2.0

SIPp 2.0


SIPp is a free Open Source test tool / traffic generator for the SIP protocol. more>>
SIPp is a free Open Source test tool / traffic generator for the SIP protocol. It includes a few basic SipStone user agent scenarios (UAC and UAS) and establishes and releases multiple calls with the INVITE and BYE methods.
SIPp project can also reads custom XML scenario files describing from very simple to complex call flows. It features the dynamic display of statistics about running tests (call rate, round trip delay, and message statistics), periodic CSV statistics dumps, TCP and UDP over multiple sockets or multiplexed with retransmission management and dynamically adjustable call rates.
Other advanced features include support of IPv6, TLS, SIP authentication, conditional scenarios, UDP retransmissions, error robustness (call timeout, protocol defense), call specific variable, Posix regular expression to extract and re-inject any protocol fields, custom actions (log, system command exec, call stop) on message receive, field injection from external CSV file to emulate live users.
While optimized for traffic, stress and performance testing, SIPp can be used to run one single call and exit, providing a passed/failed verdict.
Last, but not least, SIPp has a comprehensive documentation available both in HTML and PDF format.
SIPp can be used to test many real SIP equipements like SIP proxies, B2BUAs, SIP media servers, SIP/x gateways, SIP PBX, ... It is also very useful to emulate thousands of user agents calling your SIP system.
Enhancements:
- New: Statistical (conditional) branching feature. See
- http://sipp.sf.net/doc/reference.html#Randomness+in+conditional+branching.
- New: 3PCC extended mode - see
- http://sipp.sourceforge.net/doc/reference.html#3PCC+Extended
- Tool: monitor remote SIP servers through SNMP - see
- http://sipp.sourceforge.net/wiki/index.php/Getting_feedback_from_the_server
- Enh: extends the -aa option to UPDATE messages
- Enh: changes in the compilation with external libs - useful for the package
- generation system
- Enh: Allow sampling from a Weibull distribution for pause duration
- Enh: use stat_delimiter for the trace_rtt option and include number that is
- being reported.
- Enh: Add repeat_rtd keyword for repeated RTD calculations
- Enh: Handle stripping Control-M characters from multi-valued headers in
- get_header
- Enh: Update the clock_tick more frequently so that we have a higher timer and
- statistics resolution
- Enh: for option that take a time as argument - allow them to be specified using
- seconds or milliseconds
- Enh: fail when parsing a scenario that has pcap if pcap is not enabled
- Enh: print the actual location of the error log file and the error condition
- (if any) on creation
- Enh: fail when parsing a scenario that enables authentication if SSL is not
- enabled
- Enh: Makefile - include EXTRAENDLIBS keyword so that libraries can be appended
- to the list after SSL Enh: Add regexp_match argument to the receive command for
- universal catching
- Enh: remote control: increase the allowed number of control sockets.
- Enh: 3pcc extended: clean the reach of the allowed number of local twin sockets
- Enh: amelioration of statistic computing
- Enh regexp: add case_indep, occurence and start_line options for the hdr
- matching case
- Enh: Stats: Use RTDs that are precise to the microsecond in -trace_rtt, and
- improve the consistency between trace_rtt and the averages
- Enh: Only include RTDs that are actually used in the CSV output
- Enh: Allow loss percentages less than 1 and also a global command line option to
- specify that packets should be lost at a given percentage
- Fix: fix for -t un error for non-IPv6 platform like win32 - Unable to bind UDP
- socket, errno = 106 (Address family not supported by protocol)
- Fix: Do not initialize the screen library in background mode
- Fix: allow having an optional recv before a recvCmd
- Fix: Authentication: allow [fieldn] values for the [authentication] field
- Fix: updated support of short header forms
- Fix: small bug fix to the micrortt.diff which is required for the initial call
- rate to work properly
- Fix:Allow the code to compile with -Wall -Werror on Linux
- Fix: empty line was generated when [routes] keyword was used and proxy did not
- record-route
- Fix: pcap on HPUX; Fix: Simple fixes identified with valgrind
- Fix: 3pcc extended: problem when quitting
- Fix: regexp: add a warning when the specified header is not present in the
- received message
- Fix: pcap: destroy the send packets thread properly even if the sendto failed
- Fix: bug in regexp due to an incomplete commit (rev 172) - remove some debugging
- traces in message log file
- Fix: bugs on retransmission counters and on cookies for optional messages
- Fix: Incorrect branch in automatic ACK answering to unexpected >= 400 responses,
- as well as automatic CANCEL - in such cases, branch must be identical to the
- branch of the initial INVITE request
- Fix: 3pcc extended: clean up when screen exit. Fix: stop logging when the
- maximum allowed file size is reached (avoid core dump)
- Fix: incomplete Via header in automatic responses when aborting calls
- Fix: -h: -key parameter
- Fix: 3pcc/3pcc extended modes: closes twin sockets properly when twin instance
- exits, to break the poll() loop and avoid the print of empty messages
- Fix: in 3pcc/3pcc extended modes: send BYE/CANCEL before exit due to other twin
- instance exit
- Fix: force exit when pressing q twice (Q press can still be used)
- Fix: Aka authentication for synchro case, also added password len as password
- for authentication might contain char Fix: possible core dump in SDP parser
- Fix: accept up to the 5 defined RTDs (previously would only accept one less)
- Fix: Fail if there is an invalid repartition table specification - previous
- behavior was a core dump
- Fix: added -users option to the parameter table
- Fix: change option description to match timed options
- Fix: trace_err did not work in background mode
- Fix: bug when testing the presence of the 3PCC compilation flag
- Fix: bug in -r -rp option
<<less
Download (0.18MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
926 downloads
Qtpfsgui for Linux 1.8.12

Qtpfsgui for Linux 1.8.12


An graphical user interface application that aims to provide a workflow for HDR. more>> Qtpfsgui is an open source graphical user interface application that aims to provide a workflow for HDR imaging.
Supported HDR formats:
OpenEXR (extension: exr)
Radiance RGBE (extension: hdr)
Tiff formats: 16bit, 32bit (float) and LogLuv (extension: tiff)
Raw image formats (extension: various)
PFS native format (extension: pfs)
Supported LDR formats:
JPEG, PNG, PPM, PBM, TIFF(8 bit)
Supported features:
Create an HDR file from a set of images (formats: JPEG, TIFF 8bit and 16bit, RAW) of the same scene taken at different exposure setting.
Save and load HDR images.
Rotate and resize HDR images.
Tonemap HDR images.
Copy exif data between sets of images.
Supports internationalization.
Qtpfsgui is available for Linux, Windows and Mac OS X, see Download below.
A wiki space provided by Sourceforge acts a central place for all the documentation.
A great deal of discussions and images related to Qtpfsgui can be found on flickr.
If you want to contribute translating Qtpfsgui for your language heres an howto that explains the procedure to become a maintainer.
<<less
Download (1.23MB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
Fotoxx 7.7.1

Fotoxx 7.7.1


Fotoxx is a free open source Linux program for photo editing and collection management. The goal is to meet most user needs while remaining fast and easy to use. more>>

Fotoxx 7.7.1 is a free open source Linux program for photo editing and collection management. The goal is to meet most user needs while remaining fast and easy to use.

Navigate a large image collection using a thumbnail image browser. Import most camera RAW files and edit with 16-bit color. Save edited images as tiff-24/48 or jpeg with adjustable compression. Edit the whole image or an area outlined with the mouse, with adjustable edge-blending.Edit functions have fast feedback using the whole image. Multiple undo/redo aids evaluation of changes. Add tags, dates, and star-ratings to images. Search images using these criteria and also (wildcard) file names.

The GUI has English, German, Spanish, Galician, French, Chinese, Greek, and Czech. A user guide is available in English, French, Spanish, and Galician.

Fotoxx works best on a fast computer with at least a gigabyte of memory. Multiple processor cores are utilized. Netbooks work adequately, but some edit functions will be slow and a 1024x600 screen is confining.

Major Features:

  1. Flatten brightness distribution (quick fix for many photos)
  2. Brightness and color adjustments using movable curves
  3. Trim, Rescale, Rotate (any angle)
  4. Warp (stretch/distort image by dragging the mouse)
  5. Sharpen, Blur, Noise reduction, Red-eye removal
  6. Panorama and HDR composites (hand-held photos OK)
  7. Artful transformations (simulated drawing or painting)
  8. Pixel edit with variable brush and blending
  9. Rename a series of files using a base name and sequence number
  10. Slide-show mode: full screen, no menu, keyboard navigation
  11. Batch convert multiple RAW files to tiff/48
  12. Select images from the navigator and burn a CD or DVD
  13. View EXIF data
<<less
Added: 2009-07-27 License: GPL Price: FREE
downloads
pfstools 1.6.2

pfstools 1.6.2


pfstools allows for reading, writing, manipulating and viewing high-dynamic range (HDR) images and video frames. more>>
pfstools project contains a set of command line (and one GUI) programs for reading, writing, manipulating and viewing high-dynamic range (HDR) images and video frames. All programs in the package exchange data using a simple generic file format (pfs) for HDR data. The concept of the pfstools is similar to netpbm package for low-dynamic range images.
pfstools come with a library for reading and writing pfs files. The library can be used for writing custom applications that can integrate with the existing pfstools programs.
pfstools offers also a good integration with a high-level mathematical programming language GNU Octave. pfstools can be used as the extension of Octave for reading and writing HDR images or simply to store effectively large matrices.
Note that pfs in not just another format for storing HDR images (and there are already quite a few of them). It is more an attempt to integrate the existing file formats by providing a simple data format that can be used to exchange data between applications.
Enhancements:
- matlab: pfsview can now display 2D cell arrays
- pfs library: quite serious bug in sRGB transforms fixed
- added: check for GLUT library (unix only)
- added: man page for pfsglview
<<less
Download (0.53MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
Qtpfsgui 1.8.12

Qtpfsgui 1.8.12


Qtpfsgui is a graphical user interface that enables users to work on hdr images. more>>
Qtpfsgui project is a graphical user interface that enables users to work on hdr images.
Supported operations include:
- creations of a HDR file from a set of images of a scene taken at different exposure settings
- tonemapping an HDR image into a common LDR image format (e.g jpeg or png)
loading, saving and rotating existing HDR images
In some ways the program is a opensource clone of Photomatix.
<<less
Download (0.13MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
862 downloads
PFScalibration 1.3

PFScalibration 1.3


PFScalibration package provides an implementation of the Robertson et al. 2003 method for the photometric calibration of cameras more>>
PFScalibration project provides an implementation of the Robertson et al. 2003 method for the photometric calibration of cameras and for the recovery of high dynamic range (HDR) images from the set of low dynamic range (LDR) exposures.

Tools provided with this software can be used for photometric calibration of both off-the-shelf digital cameras and HDR cameras as described in the MPI Research Report. A short tutorial on calibration of the LDR cameras and the recovery of the HDR images from multiple exposures is provided below. For details on the calibration of the HDR cameras please refer to the research report.

<<less
Download (0.30MB)
Added: 2007-01-05 License: LGPL (GNU Lesser General Public License) Price:
1025 downloads
BINKI GNU/Linux 0.3

BINKI GNU/Linux 0.3


BINKI GNU/Linux is a distro inspired by the www.linuxfromscratch.com project. more>>
BINKI GNU/Linux is a distro inspired by the www.linuxfromscratch.com project.

BINKI is many things, first of all, it is the name of the horse of Death as it is told by my favourite author Terry Pratchet in his "Discworld" series. It is the name of a sheep that was eaten at a St. Georges Day in Bulgaria. And last it is my custom distro, based on inspirations from www.linuxfromscratch.com

Packages:
1. a2ps-4.13 convert any into PostScript format
2. a52dec-0.7.4 decode ATSC A/52 (AC-3) streams
3. aalib-1.4.0 render any graphic into ASCII Art
4. akregator-1.0.2 RSS reader
5. alsa-lib-1.0.11 ALSA sound interface library
6. alsa-oss-1.0.11 ALSA OSS compatibility lib
7. alsa-plugins-1.0.11 ALSA OSS and JACK plugins
8. alsa-utils-1.0.11 ALSA utilities
9. amarok-1.4.0 advanced audio player
10. apache-2.2.0 apache web server
11. arts-1.5.0 arts sound support for KDE libs
12. aspell-0.60.4 interactive spell checking program
13. atk-1.11.4 accessibility solutions for GTK2
14. audacity-1.3.0b audio editor and recorder
15. audiofile-0.2.6 oss version of SGIs audiofile library
16. autoconf-2.59 automatically configures source code
17. autofs-4.1.4 Automate Mounting of File Systems
18. automake-1.9.6 generates Makefiles for autoconf
19. avidemux-2.1.2 linear video editor
20. avifile-0.7.43 AVI tools and support libraries
21. bash-3.1 Bourne-Again SHell
22. bc-1.06 arbitrary precision numeric processor
23. berkeley-db-4.4.20 Berkeley database library ver.4
24. bind-9.3.1 DNS server and utilities
25. binkibase-0.3 BINKI 0.2 Base Config
26. binutils-2.16.1 GNU binary development tools
27. bison-2.1 parser generator
28. bluefish-1.0.5 powerful programmers editor for X
29. boehm-gc-6.7 garbage collector
30. bzip2-1.0.3 compress and decompress bz2 files
31. cairo-1.0.4 2D graphics library
32. calcchecksum-1.6 various checksum calulator
33. cdparanoia-3.9.8 CD audio extraction tool
34. cdrdao-1.2.1 record audio or data CDR in DAO mode
35. cdrtools-2.01 CD recording utilities
36. cfv-1.18.1 checksum verification files tool
37. chmlib-0.37.4 ITSS/CHM file format lib
38. consolecyr-0.1 console cyrillic support
39. coreutils-5.94 core GNU utilities
40. cpio-2.6 cpio and tar archiver
41. cream-0.35 vim graphical interface for X
42. cups-1.2.1 Common Unix Printing System
43. curl-7.15.3 transfer files with URL syntax
44. cvs-1.11.21 CVS version control system
45. cxx-4.0.3-runtime g++,fortran,objc,java runtime libs
46. cxx-libs-5.0.7 C++ shared library compatibility
47. d4x-2.5.6 Downloader for X
48. dejagnu-1.4.4 framework for testing other programs
49. desktop-file-utils-0.10 desktop entries command line tool
50. dhcp-3.0.4b3 DHCP client and server tools
51. dhcpcd-2.0.4 DHCP Client Daemon
52. dialog-1.0 curses based dialog interface
53. diffutils-2.8.7 find differences between files
54. distcc-2.18.3 distributed C/C++ compiler
55. dlume-0.2.4 address book
56. dosfstools-2.11 FAT-16 and FAT-32 file system tools
57. drgeo-1.1.0 interactive geometry for children
58. dvd+rw-tools-6.1 tools for burning DVD/-R/+R/+RW/-RW
59. dvd-slideshow-0.7.5 DVD slides creation tool
60. dvdauthor-0.6.11 DVD authoring tools
61. e2fsprogs-1.38 ext2 and ext3 file system tools
62. easytag-1.99.12 various media tags viewer/editor
63. enscript-1.6.4 converts ASCII to PS, HTML, RTF, ANSI
64. esound-0.2.36 Enlightened sound daemon
65. espgs-8.15.1 versatile processor for PostScript data
66. ethereal-0.10.14 network packet sniffer and analizer
67. ettercap-0.7.3 network packet sniffer and analizer
68. expat-2.0.0 C library for parsing XML streams
69. expect-5.43.0 dialog with interactive programs
70. faac-1.24.1 free AAC encoder
71. faad-2.0.1 free AAC decoder
72. fcron-3.0.0 periodical command scheduler
73. ffmpeg-0.4.9 audio and video conversion tools
74. fftw-3.1.1 fast fourier transform lib
75. file-4.17 tool for determining file type
76. findutils-4.2.27 tools to find files
77. firefox-1.5.0.3 firefox web browser
78. flac-1.1.2 free lossless audio codec
79. flex-2.5.33 programs to recognize text patterns
80. fontconfig-2.3.2 library for configuring font access
81. fortune-mod-1.99.1 fortune telling program
82. freeglut-2.4.0 free openGL toolkit
83. freetype-2.1.10 TrueType font lib
84. fyre-1.0.0 tool for computation artwork
85. gaim-1.5.0 Instant Messenger
86. galculator-1.2.5.2 scientific calculator
87. gawk-3.1.5 programs for manipulating text files
88. gbgoffice-1.3 office dictionary
89. gcc-4.0.3 gcc,g77,g++,gnat,gcj compilers
90. gcolor2-0.4 simple color selector
91. gd-2.0.33 graphic library for image creation
92. gdb-6.4 GNU Project Debugger
93. gdbm-1.8.3 GNU Database Manager
94. gettext-0.14.5 internationalization and localization
95. gftp-2.0.18 ftp client for X
96. giflib-4.1.4 libs for reading and writing GIFs
97. gimp-2.2.11 The GIMP image editor
98. gimp-help-2.0.9 The GIMP help
99. gimp-print-4.2.7 high quality printer drivers
100. glib-1.2.10 low-level core library
101. glib-2.10.3 low-level core library
102. glibc-2.3.6 main C library
103. glibmm-2.8.6 C++ interface for glib2
104. gmp-4.1.4 arbitrary precision math lib
105. gnupg-1.4.3 public/private key encryptor
106. gnutls-1.3.1 gnu Transport Layer Security lib
107. gpa-0.7.0 GnuPG Assistant Manager
108. gparted-0.2.5 GUI for parted
109. gpgme-1.0.3 GnuPG Make access Easy
110. gphoto2-2.1.99 GNU Digital Camera download software
111. gpm-1.20.1 General Purpose Mouse daemon
112. gqview-2.1.1 very fast image viewer
113. graveman-0.3.12-4 cdrtools/dvd+rw-tools GUI
114. grep-2.5.1a programs for searching through files
115. gresistor-0.0.1 translate resistor color codes
116. groff-1.18.1.1 processing and formatting text
117. grsync-0.4.2 GUI for rsync
118. grub-0.97 GRand Unified Bootloader
119. gtk+-1.2.10 GTK+ libs
120. gtk2-2.8.18 GTK2 libs
121. gtkam-0.1.13 digital camera front-end for X
122. gtkglext-1.2.0 GTK2 openGL extension
123. gtkglextmm-1.2.0 GTKmm openGL extension
124. gtkmm-2.8.5 C++ interface of GTK2 libs
125. guile-1.6.7 extensions language lib
126. gzip-1.3.5 compress and decompress gz files
127. hd2u-1.0.0 dos2unix plain text convertor
128. hicolor-theme-0.9 hicolor icon theme
129. htop-0.6.2 interactive process viewer
130. icu-3.4.1 Unicode support fot C/C++/Java
131. id3lib-3.8.3 manipule ID3v1 and ID3v2 tags
132. imagemagick-6.2.6-8 interactive image manipulation tool
133. imlib-1.9.15 image rendering lib
134. imlib2-1.2.1 faster image rendering lib
135. inetutils-1.4.2 basic networking programs
136. inkscape-0.43 SVG-based vector drawing program
137. intltool-0.34.1 internationalization tool
138. iproute2-2.6.16 basic and advanced IPV4-based networking
139. iptables-1.3.5 principal linux firewall
140. iptraf-3.0.0 IP Network monitor stat tool
141. jack-0.100.0 Jack Audio Connection Kit
142. k3b-0.12.15 The Ultimate CD/DVD Burner
143. k9copy-1.0.4 linux DVD shrinker
144. kaffeine-0.8.1 full featured media player
145. kanatest-0.3.6 learn japanese alphabet
146. kbabel-3.5.2 advanced PO-file editor
147. kbd-1.12 key-table files and keyboard tools
148. kcdlabel-2.13 tool for making CD covers
149. kchmviewer-2.5 CHM viewer
150. kdelibs-3.5.0 core KDE programs and libs
151. kdetv-0.8.9 watch TV on Linux
152. kernel-headers-2.6.12.0 sanitized kernel headers API
153. kino-0.8.1 non-linear video editor
154. kmagnify-3.5.2 magnifies screen portions
155. knowde-1.8.0 knowledge management tool
156. kompare-3.5.2 compares files
157. kpdf-3.5.0 PDF Viewer
158. kphotoalbum-2.2 photo album utility
159. krename-3.0.11 multirename tool
160. ksubeditor-0.2 subtitle file editor
161. kuser-3.5.2 user manager
162. lame-3.97 MP3 encoder
163. lcms-1.15 provide color management facilities
164. leafpad-0.8.9 simple notepad for X
165. less-394 text file viewer
166. lha-114i LHA archiver
167. libIDL-0.8.6 Interface Definition Language libs
168. libao-0.8.6 cross-platform audio library
169. libart_lgpl-2.3.17 high-performance 2D graphics lib
170. libavc1394-0.5.1 1934 AV/C program interface
171. libcdio-0.77 CD Input and Control library
172. libcroco-0.6.1 general CSS parsing and manipulation
173. libdv-0.104 software DV video codec
174. libdvdcss-1.2.9 access DVDs as a block device
175. libdvdread-0.9.4 simple DVD reading lib
176. libexif-0.6.13 parse, edit, and save EXIF data
177. libexif-gtk-0.3.5 libexif GTK bindings
178. libfame-0.9.1 realtime MPEG-1/4 video encoding lib
179. libfpx-1.2.0.13 Flash FPX image lib
180. libgcrypt-1.2.2 general-purpose cryptographic library
181. libglade-2.5.1 loads Glade interface files
182. libgpg-error-1.3 error handling for GnuPG, libgcrypt
183. libgphoto2-2.1.99 access digital camera by programs
184. libgsf-1.14.0 abstraction layer for structured files
185. libgtkhtml-2.6.3 lightweight HTML engine
186. libid3tag-0.15.1b ID3 tag library
187. libiec61883-1.0.0 high level DV streaming API
188. libieee1284-0.2.10 paralel port IEEE 1284 Driver
189. libjpeg-6b JPEG image compression lib
190. libmad-0.15.1b high-quality MPEG audio decoder
191. libmikmod-3.2.0 module formats and samples sound lib
192. libmng-1.0.9 MNG image (animated PNG) lib
193. libmpeg2-0.4.0b advanced manipulation of MPEG-2 streams
194. libmpeg3-1.6 advanced manipulation of MPEG streams
195. libnet-1.1.3 generic networking API
196. libogg-1.1.3 ogg file structure lib
197. libpcap-0.9.4 user-level network packet capture
198. libpng-1.2.8 PNG image manipulation lib
199. libquicktime-0.9.8 manipulate quicktime files
200. libraw1394-1.2.1 IEEE 1394 direct access
201. librsvg-2.14.3 SVG image manipulation lib
202. libsamplerate-0.1.2 Sample Rate Converter for audio
203. libsigc++-2.0.17 typesafe callback system for C++
204. libsndfile-1.0.15 Sampled Sound file library
205. libtheora-1.0 free video compression lib
206. libtiff-3.8.2 TIFF image manipulation lib
207. libtool-1.5.22 generic library support script
208. libusb-0.1.12 USB device access lib
209. libvorbis-1.1.2 general purpose audio format
210. libxml-1.8.17 XML parsing lib
211. libxml2-2.6.22 XML and HTML parser lib
212. libxslt-1.1.15 XSLT XML support lib
213. linux-2.6.16.2 Linux Kernel source
214. lmms-0.1.4 Linux MultiMedia Studio
215. lshw-0.2 hardware lister
216. lynx-2.8.5 text based web browser with color
217. lzo-2.02 realtime data (de)compression library
218. m4-1.4.4 macro processor
219. make-3.80 program for compiling packages
220. man-1.6c find and view man pages
221. man-pages-2.25 GNU Linux 1,200 man pages
222. mc-4.6.1 midnight commander
223. mixmos-0.2.0 enchanced audio mixer for X
224. mjpegtools-1.8.0 MPEG-2 tools
225. mktemp-1.5 create secure temporary files
226. modinit-tools-3.2.2 kernel module (un)loading tools
227. mpeg4ip-1.5 audio/video streaming tools
228. mpfr-2.2.0 multi-precision float-point lib
229. mplayer-1.0 Mplayer video audio player
230. mysql-5.0.20 fast SQL database server
231. nas-1.7 Network Audio Server
232. nasm-0.98.39 80x86 assembler and disassebler
233. ncftp-3.1.9 powerful and flexible ftp client
234. ncurses-5.5 terminal-independent screen library
235. net-tools-1.60 linux kernel networking tools
236. netpbm-10.26.27 graphic sofware lib
237. nmap-4.0.2 network exploration and security
238. nss-3.11 network security services libs
239. ntp-4.2.0 Network Time Protocol client/server
240. ocrad-0.14 optical character recognition tool
241. ogmtools-1.5 OGM video tools
242. openexr-1.2.2 HDR image format libs
243. openldap-2.3.30 Lightweight Directory Access Protocol
244. openssh-4.3p2 secure shell client and daemon
245. openssl-0.9.8a cryptography tools and libs
246. p7zip-4.42 7zip archiver
247. pango-1.12.1 layout and text rendering lib
248. parted-1.7.1 advanced partition editor
249. patch-2.5.9 apply and create patch files
250. pciutils-2.2.1 lists PCI devices
251. pcre-6.6 Perl Compatible Regular Expression
252. perl-5.8.8 Perl development environment
253. perl-archive-zip-1.16 perl module
254. perl-compress-zlib-1.41 perl module
255. perl-xml-parser-2.34 perl module
256. php-5.1.4 PHP Hypertext Preprocessor
257. pine-4.64 mail user agent
258. pkg-config-0.20 manage library compile/link flags
259. poppler-0.4.5 PDF rendering library
260. popt-1.7.5 parse command-line options
261. postfix-2.2.10 mail transport agent server
262. postgresql-8.1.4 advanced object-relational DBMS
263. ppp-2.4.3 dial-up PPP daemon
264. procps-3.2.6 programs for monitoring processes
265. proftpd-1.2.10 highly configurable secure FTP daemon
266. psmisc-22.2 display info about running processes
267. psutils-p17 PostScript Utilities
268. pygtk-2.8.6 Python bindings for the GTK widget
269. python-2.4.2 Python development environment
270. qcomicbook-0.2.7 comic books reading tool
271. qt-3.3.6 C++ GUI library (for KDE)
272. readline-5.1 command-line editing support
273. recode-3.6 converts files between character sets
274. reiserfsprogs-3.6.19 Reiserfs file system tools
275. rp-pppoe-3.8 PPPoE client and server
276. rsync-2.6.7 fast incremental file transfers daemon
277. ruby-1.8.4 Ruby development environment
278. samba-3.0.22 provides services to SMB/CIFS clients
279. sane-backends-1.0.17 Scanner Access Now Easy backends
280. screen-4.0.2 screen manager VT100/ANSI emulation
281. sdl-1.2.10 Simple DirectMedia Layer toolkit
282. sdl-guilib-1.1.2 SDL GUI library
283. sdl-image-1.2.5 SDL image loader
284. sdl-mixer-1.2.7 SDL mixer lib
285. sdl-mpeg-0.4.4 SDL video lib
286. sdl-net-1.2.6 SDL network lib
287. sdl-rtf-0.1.0 SDL rich text format lib
288. sdl-sound-1.0.1 SDL Sound lib
289. sdl-ttf-2.0.8 SDL TrueType font lib
290. sed-4.1.5 stream line editing tool
291. shadow-4.0.15 shadow password suite
292. shared-mime-info-0.17 shared MIME-info database
293. sharutils-4.6 create shell archives out of many files
294. slang-2.0.6 powerful interpreted language
295. smb4k-0.7.0 SAMBA network browser
296. sox-12.17.9 audio converting tool
297. speex-1.1.9 speech audio encoder/decoder
298. sqlite-3.3.5 lite SQL engine
299. squid-3.0 high performance web proxy cache
300. startup-notify-0.8 busy cursor for loading apps
301. strace-4.5.14 system call tracer
302. subversion-1.3.1 SVN version control system
303. sudo-1.6.8p12 gives temporary root access
304. supertux-0.1.3 Super Mario clone
305. sysklogd-1.4.1 programs for logging system messages
306. sysvinit-2.86 Linux System V Init tools
307. taglib-1.4 manipulate audio meta data
308. tar-1.15.1 GNU tar archiver
309. tcl-8.4.12 Tool Command Language
310. tcp_wrappers-7.6 daemon wrapper programs
311. tcpdump-3.9.4 network monitoring and data acquisition
312. tcsh-6.14.00 enhanced C shell
313. tellico-1.1.6 collection manager
314. texinfo-4.8 GNU software documentation system
315. thunderbird-1.5.0.2 Thunderbird mail client
316. tightvnc-1.3 optimized VNC distribution
317. tk-8.4.12 TCL GUI toolkit
318. traceroute-1.4 IP packet route tracing utility
319. transcode-1.0.2 transcoding video and audio
320. ttf-basic-0.3 basic TrueType fonts for X
321. tuxpaint-0.9.15b drawing program for children
322. udev-089 dynamic creation of device nodes tools
323. udftools-1.0.0b3 UDF file system tools
324. unzip-5.52 ZIP extraction utilities
325. usbutils-0.71 list USB devices
326. util-linux-2.12r huge collection of essential tools
327. vcdimager-0.7.23 VCD BIN/CUE image creation and ripping
328. vim-6.4 vim text editor
329. vnc2swf-0.5.0 screen recorging tool
330. vorbis-tools-1.1.1 Ogg Vorbis Tools
331. wget-1.10.2 non-interactive download manager
332. which-2.16 shows full path of (shell) commands
333. whois-4.7.12 whois directory client
334. wireless-tools-2.8 wireless tools
335. wxgtk-2.6.3 cross platform GTK lib
336. x264-20060508 free H.264/MPEG-4 AVC lib
337. xchat-2.6.2 IRC client for X
338. xfc-4.3.1 XFCE Foundation Classes
339. xfce-4.3-plugins XFCE Goodies
340. xfce-4.3 XFCE Desktop environment
341. xfsprogs-2.7.11 Utilities for SGIs XFS filesystem
342. xine-lib-1.1.1 xine multimedia playback libs
343. xinetd-2.3.14 eXtended InterNET services Daemon
344. xmahjongg-3.7 a MahJongg game for X
345. xmms-1.2.10 MP3 player and MPlayer frontend
346. xorg-6.9.0 xorg X11 server
347. xpad-2.11 leave sticky notes
348. xsane-0.97 SANE front end for X
349. xvid-1.1.0 XviD (MPEG-4 compliant) video codec
350. zip-2.31 ZIP creation utilities
351. zlib-1.2.3 compression and decompression lib
352. zsh-4.2.5 the Z shell (enhanced korn shell)

<<less
Download (14MB)
Added: 2006-06-05 License: GPL (GNU General Public License) Price:
1252 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2