file formats
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3501
ThinkFree Viewer 1.1
ThinkFree Viewer allows you to view ThinkFree or Microsoft Office word processing, spreadsheet, and presentation files. more>>
ThinkFree Viewer allows you to view ThinkFree or Microsoft Office word processing, spreadsheet, and presentation files without having any other office applications installed. After installing the appropriate Widget simply drag and drop files from your desktop, or copy and paste the Web URL into the ThinkFree Widget.
ThinkFree Widgets allows users to open email attachments with ease, and supports the following file formats: .doc, .rtf, .txt, .xls, .csv, .ppt, and .pps.
<<lessThinkFree Widgets allows users to open email attachments with ease, and supports the following file formats: .doc, .rtf, .txt, .xls, .csv, .ppt, and .pps.
Download (0.004MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
1320 downloads
libgsf 1.14.5
libgsf aims to provide an efficient extensible i/o abstraction for dealing with different structured file formats. more>>
libgsf aims to provide an efficient extensible i/o abstraction for dealing with different structured file formats.
<<less Download (0.72MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
Audio File Library 0.2.6
Audio File Library is a uniform API for accessing standard digital audio file formats. more>>
The Audio File Library provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.
Key goals of the Audio File Library are file format transparency and data format transparency. The same calls for opening a file, accessing and manipulating audio metadata (e.g. sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format. Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.
The Audio File Library distributed under the GNU Library General Public License.
<<lessKey goals of the Audio File Library are file format transparency and data format transparency. The same calls for opening a file, accessing and manipulating audio metadata (e.g. sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format. Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.
The Audio File Library distributed under the GNU Library General Public License.
Download (0.36MB)
Added: 2005-04-14 License: LGPL (GNU Lesser General Public License) Price:
1655 downloads
GNOME Structured File Library 1.14.5
The GNOME Structured File Library is a utility library for reading and writing structured file formats. more>>
GNOME Structured File Library is a utility library for reading and writing structured file formats. Support for MS OLE2 streams is complete, as is zip import.
There is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to other languages.
This library replaces libole2 and is used in gnumeric, mrproject, abiword, libwv2, koffice. It is also part of the AAF format.
Enhancements:
- This release reverts jump to dynamic types, as they arent thread-safe.
- A compilation glitch on Windows has been fixed.
- Problems building without gconf macros installed are avoided.
- Configure breakage with --without-gnome has been fixed.
<<lessThere is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to other languages.
This library replaces libole2 and is used in gnumeric, mrproject, abiword, libwv2, koffice. It is also part of the AAF format.
Enhancements:
- This release reverts jump to dynamic types, as they arent thread-safe.
- A compilation glitch on Windows has been fixed.
- Problems building without gconf macros installed are avoided.
- Configure breakage with --without-gnome has been fixed.
Download (0.70MB)
Added: 2007-07-17 License: LGPL (GNU Lesser General Public License) Price:
831 downloads
Test-Parser 1.2
Test::Parser is a collection of parsers for different test output file formats. more>>
Test::Parser is a collection of parsers for different test output file formats. These parse the data into a general purpose data structure that can then be used to create reports, do post-processing analysis, etc.
Test-Parser can also export tests in SpikeSources TRPI test description XML language.
<<lessTest-Parser can also export tests in SpikeSources TRPI test description XML language.
Download (0.053MB)
Added: 2006-05-04 License: GPL (GNU General Public License) Price:
1268 downloads
PRICE 0.8.1
PRICE can open several image file formats and apply high-quality filters and other enhancements. more>>
PRICE can open several image file formats and apply high-quality filters and other enhancements. PRICE was written to support the authors research in image processing.
PRICE was born to support my research in image processing. So I have decided to work on a usable application that can open several file formats and apply high quality filters and other enhancements to the image.
<<lessPRICE was born to support my research in image processing. So I have decided to work on a usable application that can open several file formats and apply high quality filters and other enhancements to the image.
Download (0.15MB)
Added: 2006-11-05 License: GPL (GNU General Public License) Price:
1089 downloads
File::Comments 0.07
File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments. more>>
File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments.
SYNOPSIS
use File::Comments;
my $snoop = File::Comments->new();
# *----------------
# | program.c:
# | /* comment */
# | main () {}
# *----------------
my $comments = $snoop->comments("program.c");
# => [" comment "]
# *----------------
# | script.pl:
# | # comment
# | print "howdy!n"; # another comment
# *----------------
my $comments = $snoop->comments("script.pl");
# => [" comment", " another comment"]
# or strip comments from a file:
my $stripped = $snoop->stripped("script.pl");
# => "print "howdy!n";"
# or just guess a files type:
my $type = $snoop->guess_type("program.c");
# => "c"
File::Comments guesses the type of a given file, determines the format used for comments, extracts all comments, and returns them as a reference to an array of chunks. Alternatively, it strips all comments from a file.
Currently supported are Perl scripts, C/C++ programs, Java, makefiles, JavaScript, Python and PHP.
The plugin architecture used by File::Comments makes it easy to add new formats. To support a new format, a new plugin module has to be installed. No modifications to the File::Comments codebase are necessary, new plugins will be picked up automatically.
File::Comments can also be used to simply guess a files type. It it somewhat more flexible than File::MMagic and File::Type. File types in File::Comments are typically based on file name suffixes (*.c, *.pl, etc.). If no suffix is available, or a given suffix is ambiguous (e.g. if several plugins have registered a handler for the same suffix), then the files content is used to narrow down the possibilities and arrive at a decision.
WARNING: THIS MODULE IS UNDER DEVELOPMENT, QUALITY IS ALPHA. IF YOU FIND BUGS, OR WANT TO CONTRIBUTE PLUGINS, PLEASE SEND THEM MY WAY.
<<lessSYNOPSIS
use File::Comments;
my $snoop = File::Comments->new();
# *----------------
# | program.c:
# | /* comment */
# | main () {}
# *----------------
my $comments = $snoop->comments("program.c");
# => [" comment "]
# *----------------
# | script.pl:
# | # comment
# | print "howdy!n"; # another comment
# *----------------
my $comments = $snoop->comments("script.pl");
# => [" comment", " another comment"]
# or strip comments from a file:
my $stripped = $snoop->stripped("script.pl");
# => "print "howdy!n";"
# or just guess a files type:
my $type = $snoop->guess_type("program.c");
# => "c"
File::Comments guesses the type of a given file, determines the format used for comments, extracts all comments, and returns them as a reference to an array of chunks. Alternatively, it strips all comments from a file.
Currently supported are Perl scripts, C/C++ programs, Java, makefiles, JavaScript, Python and PHP.
The plugin architecture used by File::Comments makes it easy to add new formats. To support a new format, a new plugin module has to be installed. No modifications to the File::Comments codebase are necessary, new plugins will be picked up automatically.
File::Comments can also be used to simply guess a files type. It it somewhat more flexible than File::MMagic and File::Type. File types in File::Comments are typically based on file name suffixes (*.c, *.pl, etc.). If no suffix is available, or a given suffix is ambiguous (e.g. if several plugins have registered a handler for the same suffix), then the files content is used to narrow down the possibilities and arrive at a decision.
WARNING: THIS MODULE IS UNDER DEVELOPMENT, QUALITY IS ALPHA. IF YOU FIND BUGS, OR WANT TO CONTRIBUTE PLUGINS, PLEASE SEND THEM MY WAY.
Download (0.012MB)
Added: 2007-06-09 License: Perl Artistic License Price:
868 downloads
KeyTool IUI 2.0
KeyTool IUI is a cryptography GUI tool. more>>
KeyTool IUI is a cryptography GUI tool. Its used to create/manage keys & certificates, sign/verify/encrypt/decrypt files.
Keystore file formats:
JKS
JCEKS
PKCS12
BKS
UBER
Certificate file formats:
DER
PKCS7
PEM
PKCS10
Secret Key (shared key) file formats:
DER
PEM
Private Key (keypair) file formats:
DER
PEM
Secret Key (shared key) algorithms:
AES
ARCFOUR
Blowfish
DES
DESede
HmacMD5
HmacSHA1
HmacSHA256
HmacSHA384
HmacSHA512
RC2
Private Key (keypair) algorithms:
SHA1withDSA
SHA1withRSA
MD2withRSA
MD5withRSA
SHA256withRSA
SHA384withRSA
SHA512withRSA
RIPEMD128withRSA
RIPEMD160withRSA
RIPEMD256withRSA
SHA1withECDSA
SHA224withECDSA
SHA256withECDSA
SHA384withECDSA
SHA512withECDSA
<<lessKeystore file formats:
JKS
JCEKS
PKCS12
BKS
UBER
Certificate file formats:
DER
PKCS7
PEM
PKCS10
Secret Key (shared key) file formats:
DER
PEM
Private Key (keypair) file formats:
DER
PEM
Secret Key (shared key) algorithms:
AES
ARCFOUR
Blowfish
DES
DESede
HmacMD5
HmacSHA1
HmacSHA256
HmacSHA384
HmacSHA512
RC2
Private Key (keypair) algorithms:
SHA1withDSA
SHA1withRSA
MD2withRSA
MD5withRSA
SHA256withRSA
SHA384withRSA
SHA512withRSA
RIPEMD128withRSA
RIPEMD160withRSA
RIPEMD256withRSA
SHA1withECDSA
SHA224withECDSA
SHA256withECDSA
SHA384withECDSA
SHA512withECDSA
Download (MB)
Added: 2007-07-04 License: Freeware Price:
877 downloads
Glame 2.0.1
Glame is a multi-track wave-editor with synthesis capabilities. more>>
Glame is a multi-track wave-editor with synthesis capabilities.
Glame is targeted to be the GIMP for audio processing. Glame supports non destructive multitrack editing, recording and mixing; realtime effects using native or LADSPA plugins; OSS, ALSA or SGI audio and WAV, Mp3 and Ogg file formats.
<<lessGlame is targeted to be the GIMP for audio processing. Glame supports non destructive multitrack editing, recording and mixing; realtime effects using native or LADSPA plugins; OSS, ALSA or SGI audio and WAV, Mp3 and Ogg file formats.
Download (1.6MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1559 downloads
xmms sndfile 1.2
xmms sndfile is an input plugin for XMMS. more>>
xmms sndfile is an input plugin for XMMS.
Using xmms_sndfile extends the capabilities of XMMS to open and play any file which can be opened and read by libsndfile, including WAV, AIFF, AU, and SVX files and many compressed version of these file formats.
<<lessUsing xmms_sndfile extends the capabilities of XMMS to open and play any file which can be opened and read by libsndfile, including WAV, AIFF, AU, and SVX files and many compressed version of these file formats.
Download (0.22MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1292 downloads
Carina 20060520
Carina is an application written in C++ for viewing various 3D graphic file formats. more>>
Carina is an application written in C++ for viewing various 3D graphic file formats. While focusing on the xVRML file format, it also supports the X3D and VRML97 formats.
Mostly for viewing files, it also contains some debug support to help people creating xVRML content. Carina project can save any file it can open as xVRML. xVRML is an XML-based virtual reality language.
Classroom testing has shown that new users who are already familiar with HTML can become proficient in xVRML with just a few weeks of study and practice.
<<lessMostly for viewing files, it also contains some debug support to help people creating xVRML content. Carina project can save any file it can open as xVRML. xVRML is an XML-based virtual reality language.
Classroom testing has shown that new users who are already familiar with HTML can become proficient in xVRML with just a few weeks of study and practice.
Download (0.69MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1249 downloads
BluePlayer 0.66
BluePlayer is a cross-platform, simple, light sound player. more>>
BluePlayer is a cross-platform, simple, light sound player. BluePlayer supports the following file formats: WAV, uncompressed AIFF, Ogg Vorbis, FLAC, MP3, MOD, S3M, IT, and XM.
Main features:
- Cross platform
- Simple Light
- for GUI using FLTK widgets http://www.fltk.org/
- uses a Audiere sound library http://audiere.sourceforge.net/
- Supported file formats: Uncompressed WAV*, Uncompressed AIFF*, Ogg Vorbis*, FLAC*, MP3, MOD, S3M, IT, XM (* supports seeking)
<<lessMain features:
- Cross platform
- Simple Light
- for GUI using FLTK widgets http://www.fltk.org/
- uses a Audiere sound library http://audiere.sourceforge.net/
- Supported file formats: Uncompressed WAV*, Uncompressed AIFF*, Ogg Vorbis*, FLAC*, MP3, MOD, S3M, IT, XM (* supports seeking)
Download (0.60MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1043 downloads
MPFC 1.3.7
MPFC is a full-featured curses-based music player for Linux. more>>
MPFC is an abbrevation for Music Player For Console. MPFC project is a full-featured curses-based playlist-oriented player.
MPFC supports a number of input file formats. This support is organised through input plugins model.
It means that the formats list - you must simply add a new plugin. Also there are plugins for output and effects.
<<lessMPFC supports a number of input file formats. This support is organised through input plugins model.
It means that the formats list - you must simply add a new plugin. Also there are plugins for output and effects.
Download (0.84MB)
Added: 2006-02-14 License: GPL (GNU General Public License) Price:
1351 downloads

NConvert for Linux 4.90
NConvert is a batch utility for converting graphic files. more>> Come to discover NConvert, a batch utility to convert graphic files! Support of more than 400 graphics formats!
NConvert is a batch utility for converting graphic files.
It has the features :
-Import about 400 graphic file formats
-Export about 40 graphic file formats
-Multipage TIFF, Animated GIF, Animated ICO support
-Resize
-Adjust brightness, contrast...
-Modify number of colors
-Apply filters (blur, average, emboss, ...)
-Apply effects (lens, wave, ...)
-And many many other things...
Note: Download 1 is for Linux x86,and download 2 is forLinux x86 64bit.<<less
Download (738KB)
Added: 2009-04-04 License: Freeware Price: Free
211 downloads
Unix Amiga Delitracker Emulator 2.07
Unix Amiga Delitracker Emulator (UADE) plays most Amiga music file formats by simulating Amiga hardware and software. more>>
Unix Amiga Delitracker Emulator (UADE) plays most Amiga music file formats by simulating Amiga hardware and software.
Unix Amiga Delitracker Emulator plays over 180 Amiga music file formats and has three frontends for playing: a command line tool, an XMMS plugin, and a Beep Media Player frontend.
Enhancements:
- An improved version of the Special FX replayer was added.
- A new Special FX ST replayer was added.
- Bugs in song length database handling were fixed.
- Audacious 1.3 is supported.
- 15 instrument soundtracker module detection is supported.
<<lessUnix Amiga Delitracker Emulator plays over 180 Amiga music file formats and has three frontends for playing: a command line tool, an XMMS plugin, and a Beep Media Player frontend.
Enhancements:
- An improved version of the Special FX replayer was added.
- A new Special FX ST replayer was added.
- Bugs in song length database handling were fixed.
- Audacious 1.3 is supported.
- 15 instrument soundtracker module detection is supported.
Download (0.74MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
918 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above file formats search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed