decoder
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 146
MMS Decoder 0.77
MMS Decoder provides a script for sending MMS messages to a Web page. more>>
MMS Decoder provides a script for sending MMS messages to a Web page.
MMS Decoder can receive MMS messages, decode them, and display them on a Web page. This is done by acting as an MMSC, which is a server to which MMS messages are sent.
The only requirement to get this to work is an internet connected webserver, with PHP support and a phone which can send MMS (some operators may have blocked all MMS servers except their own, and the application will not work with these).
When an MMS is sent, its usually sent to the operators MMSC, which notifies the reciever (by a binary encoded SMS) that she or he has an MMS to retrieve, then his or her phone connects to the MMSC server and fetches the MMS which has been made available on the server via HTTP. What my web application actually do is to pretend to be an MMSC, recieves the MMS, decodes it (its encoded as specified in the WAP-209-MMSEncapsulation-20020105-a and wap-230-wsp-20010705-a specifications) and then stores it.
The only thing you need to do to make this work on your phone, is to set the phones MMSC (may also be labeled Service Center, MMS Center, or MMS Server) to http://domain.com/mms/get.php, or something like that, and then start sending MMS messages. And best of all, it will not cost you like 20 cents which the phone operators charge, the only cost is what your operator charge for WAP access (usually a lot less than the MMS cost), since the MMS is sent over WAP.
MMS Decoder was first written as a school project, and therefore Ive written a very detailed report of the decoding mechanism. This is, how ever, written in swedish so it would not be useful to anyone who doesnt know swedish. You can grab the report here.
Enhancements:
- An installation script, which creates the database or/and the tables, was added.
- A phpMyAdmin dump of the database structure was added.
- The directory structure of the package was changed.
<<lessMMS Decoder can receive MMS messages, decode them, and display them on a Web page. This is done by acting as an MMSC, which is a server to which MMS messages are sent.
The only requirement to get this to work is an internet connected webserver, with PHP support and a phone which can send MMS (some operators may have blocked all MMS servers except their own, and the application will not work with these).
When an MMS is sent, its usually sent to the operators MMSC, which notifies the reciever (by a binary encoded SMS) that she or he has an MMS to retrieve, then his or her phone connects to the MMSC server and fetches the MMS which has been made available on the server via HTTP. What my web application actually do is to pretend to be an MMSC, recieves the MMS, decodes it (its encoded as specified in the WAP-209-MMSEncapsulation-20020105-a and wap-230-wsp-20010705-a specifications) and then stores it.
The only thing you need to do to make this work on your phone, is to set the phones MMSC (may also be labeled Service Center, MMS Center, or MMS Server) to http://domain.com/mms/get.php, or something like that, and then start sending MMS messages. And best of all, it will not cost you like 20 cents which the phone operators charge, the only cost is what your operator charge for WAP access (usually a lot less than the MMS cost), since the MMS is sent over WAP.
MMS Decoder was first written as a school project, and therefore Ive written a very detailed report of the decoding mechanism. This is, how ever, written in swedish so it would not be useful to anyone who doesnt know swedish. You can grab the report here.
Enhancements:
- An installation script, which creates the database or/and the tables, was added.
- A phpMyAdmin dump of the database structure was added.
- The directory structure of the package was changed.
Added: 2007-03-15 License: AGPL (Affero General Public License) Price:
969 downloads
TiVo File Decoder 0.2pre2
TiVo File Decoder software converts a .TiVo file. more>>
TiVo File Decoder software converts a .TiVo file (produced by the TiVoToGo functionality on recent TiVo software releases) to a normal MPEG file.
This has the same functionality as using TiVos supplied DirectShow DLL on Windows with a tool such as DirectShowDump, but is portable to different architectures and operating systems, and runs on the command line using files or pipes.
The conversion still requires the valid MAK of the TiVo which recorded the file, so it cannot be used to circumvent their protection, simply to provide the same level of access as is already available on Windows.
Usage: ./objects.dir/tivodecode [--help] [--verbose|-v] [--no-verify|-n] {--mak|-m} mak [{--out|-o} outfile] < tivofile >
--mak, -m media access key (required)
--out, -o output file (default stdout)
--verbose, -v verbose
--no-verify, -n do not verify MAK while decoding
--help print this help and exit
Enhancements:
- Fixes a merge error in tivodecoder.h which included several headers before including tdconfig.h, causing some needed defines not to be defined in those headers
<<lessThis has the same functionality as using TiVos supplied DirectShow DLL on Windows with a tool such as DirectShowDump, but is portable to different architectures and operating systems, and runs on the command line using files or pipes.
The conversion still requires the valid MAK of the TiVo which recorded the file, so it cannot be used to circumvent their protection, simply to provide the same level of access as is already available on Windows.
Usage: ./objects.dir/tivodecode [--help] [--verbose|-v] [--no-verify|-n] {--mak|-m} mak [{--out|-o} outfile] < tivofile >
--mak, -m media access key (required)
--out, -o output file (default stdout)
--verbose, -v verbose
--no-verify, -n do not verify MAK while decoding
--help print this help and exit
Enhancements:
- Fixes a merge error in tivodecoder.h which included several headers before including tdconfig.h, causing some needed defines not to be defined in those headers
Download (0.11MB)
Added: 2007-04-02 License: BSD License Price:
939 downloads
Convert::yEnc::Decoder 1.02
Convert::yEnc::Decoder is a Perl module that decodes yEncoded files. more>>
Convert::yEnc::Decoder is a Perl module that decodes yEncoded files.
SYNOPSIS
use Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder $dir;
$decoder->out_dir($dir);
eval
{
$decoder->decode( $file);
$decoder->decode(*FILE);
$decoder->decode;
};
print $@ if $@;
$name = $decoder->name;
$file = $decoder->file;
$size = $decoder->size;
$ybegin = $decoder->ybegin;
$ypart = $decoder->ypart;
$yend = $decoder->yend;
ABSTRACT
yEnc decoder
Convert::yEnc::Decoder decodes a yEncoded file and writes it to disk. Methods are provided for returning information about the decoded file.
<<lessSYNOPSIS
use Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder $dir;
$decoder->out_dir($dir);
eval
{
$decoder->decode( $file);
$decoder->decode(*FILE);
$decoder->decode;
};
print $@ if $@;
$name = $decoder->name;
$file = $decoder->file;
$size = $decoder->size;
$ybegin = $decoder->ybegin;
$ypart = $decoder->ypart;
$yend = $decoder->yend;
ABSTRACT
yEnc decoder
Convert::yEnc::Decoder decodes a yEncoded file and writes it to disk. Methods are provided for returning information about the decoded file.
Download (0.056MB)
Added: 2006-08-23 License: Perl Artistic License Price:
683 downloads
MIME::WordDecoder 5.420
MIME::WordDecoder is a Perl module to decode RFC-1522 encoded words to a local representation. more>>
MIME::WordDecoder is a Perl module to decode RFC-1522 encoded words to a local representation.
SYNOPSIS
See MIME::Words for the basics of encoded words. See "DESCRIPTION" for how this class works.
use MIME::WordDecoder;
### Get the default word-decoder (used by unmime()):
$wd = default MIME::WordDecoder;
### Get a word-decoder which maps to ISO-8859-1 (Latin1):
$wd = supported MIME::WordDecoder "ISO-8859-1";
### Decode a MIME string (e.g., into Latin1) via the default decoder:
$str = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
### Decode a string using the default decoder, non-OO style:
$str = unmime(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
A MIME::WordDecoder consists, fundamentally, of a hash which maps a character set name (US-ASCII, ISO-8859-1, etc.) to a subroutine which knows how to take bytes in that character set and turn them into the target string representation. Ideally, this target representation would be Unicode, but we dont want to overspecify the translation that takes place: if you want to convert MIME strings directly to Big5, thats your own decision.
The subroutine will be invoked with two arguments: DATA (the data in the given character set), and CHARSET (the upcased character set name).
For example:
### Keep 7-bit characters as-is, convert 8-bit characters to #:
sub keep7bit {
local $_ = shift;
tr/x00-x7F/#/c;
$_;
}
Heres a decoder which uses that:
### Construct a decoder:
$wd = MIME::WordDecoder->new({US-ASCII => "KEEP", ### sub { $_[0] }
ISO-8859-1 => &keep7bit,
ISO-8859-2 => &keep7bit,
Big5 => "WARN",
* => "DIE"});
### Convert some MIME text to a pure ASCII string...
$ascii = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= < keld >);
### ...which will now hold: "To: Keld J#rn Simonsen < keld >"
<<lessSYNOPSIS
See MIME::Words for the basics of encoded words. See "DESCRIPTION" for how this class works.
use MIME::WordDecoder;
### Get the default word-decoder (used by unmime()):
$wd = default MIME::WordDecoder;
### Get a word-decoder which maps to ISO-8859-1 (Latin1):
$wd = supported MIME::WordDecoder "ISO-8859-1";
### Decode a MIME string (e.g., into Latin1) via the default decoder:
$str = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
### Decode a string using the default decoder, non-OO style:
$str = unmime(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
A MIME::WordDecoder consists, fundamentally, of a hash which maps a character set name (US-ASCII, ISO-8859-1, etc.) to a subroutine which knows how to take bytes in that character set and turn them into the target string representation. Ideally, this target representation would be Unicode, but we dont want to overspecify the translation that takes place: if you want to convert MIME strings directly to Big5, thats your own decision.
The subroutine will be invoked with two arguments: DATA (the data in the given character set), and CHARSET (the upcased character set name).
For example:
### Keep 7-bit characters as-is, convert 8-bit characters to #:
sub keep7bit {
local $_ = shift;
tr/x00-x7F/#/c;
$_;
}
Heres a decoder which uses that:
### Construct a decoder:
$wd = MIME::WordDecoder->new({US-ASCII => "KEEP", ### sub { $_[0] }
ISO-8859-1 => &keep7bit,
ISO-8859-2 => &keep7bit,
Big5 => "WARN",
* => "DIE"});
### Convert some MIME text to a pure ASCII string...
$ascii = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= < keld >);
### ...which will now hold: "To: Keld J#rn Simonsen < keld >"
Download (0.37MB)
Added: 2006-08-30 License: Perl Artistic License Price:
1150 downloads
Teralogic 880 HDTV decoder Linux driver 0.2.3
Teralogic 880 HDTV decoder Linux driver. more>>
Teralogic 880 HDTV decoder Linux driver.
Remember that this driver has no video capture capability. The kernel module
uses three devices per TL880 card in /dev/tl880 to allow all users to mmap the
memory regions of the TL880, or use the ioctl interface to control the card.
The tools are then used to upload the firmware, set external sync, turn on color
bars, display a mouse cursor, and tweak the OSD. Thats all that the driver can
do so far. There is also I2C bus support. For the latest known bugs, see the
web site and mailing list.
To test the I2C bus(es), you will need the lm_sensors package. Load the
i2c-dev, i2c-algo-bit, and tl880.ko kernel modules, then run i2cdetect for each
bus displayed in the kernel message log (each card has a different number of
buses). If you have any output beside all XXs, note the address and bus
number, and run i2cdump [bus] [address]. For example, the NXT2000 on the MyHD
has address 0x14 on bus 1, so i2cdetect 1 shows a response from address 0xa, and
i2cdump 1 0xa shows the registers of the NXT2000.
Enhancements:
- Many internal improvements in this version, though few new user-worthy
- features.
- Improvements to card initialization.
- New ioctl interfaces.
- Improved VPX chip support.
- More chip features documented.
<<lessRemember that this driver has no video capture capability. The kernel module
uses three devices per TL880 card in /dev/tl880 to allow all users to mmap the
memory regions of the TL880, or use the ioctl interface to control the card.
The tools are then used to upload the firmware, set external sync, turn on color
bars, display a mouse cursor, and tweak the OSD. Thats all that the driver can
do so far. There is also I2C bus support. For the latest known bugs, see the
web site and mailing list.
To test the I2C bus(es), you will need the lm_sensors package. Load the
i2c-dev, i2c-algo-bit, and tl880.ko kernel modules, then run i2cdetect for each
bus displayed in the kernel message log (each card has a different number of
buses). If you have any output beside all XXs, note the address and bus
number, and run i2cdump [bus] [address]. For example, the NXT2000 on the MyHD
has address 0x14 on bus 1, so i2cdetect 1 shows a response from address 0xa, and
i2cdump 1 0xa shows the registers of the NXT2000.
Enhancements:
- Many internal improvements in this version, though few new user-worthy
- features.
- Improvements to card initialization.
- New ioctl interfaces.
- Improved VPX chip support.
- More chip features documented.
Download (MB)
Added: 2007-03-28 License: Other/Proprietary License Price:
946 downloads
Audio::AMR::Decode 0.01
Audio::AMR::Decode is a Perl extension do decode .amr files. more>>
Audio::AMR::Decode is a Perl extension do decode .amr files.
SYNOPSIS
use Audio::AMR::Decode;
Audio::AMR::Decode::amr2raw(infile.amr, outfile.pcm);
This module will attempt to decode an amr encoded audio file to a raw pcm audio encoded file.
The package contains C-source files for the optimized fixed-point speech decoder. The optimized fixed-point speech decoder is bit-exact with 3GPP TS 26.073 fixed-point speech decoder version 4.1.0.
<<lessSYNOPSIS
use Audio::AMR::Decode;
Audio::AMR::Decode::amr2raw(infile.amr, outfile.pcm);
This module will attempt to decode an amr encoded audio file to a raw pcm audio encoded file.
The package contains C-source files for the optimized fixed-point speech decoder. The optimized fixed-point speech decoder is bit-exact with 3GPP TS 26.073 fixed-point speech decoder version 4.1.0.
Download (0.13MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1229 downloads
epiOS
epiOS is a Gentoo based GNU/Linux distribution designed and optimized for VIA Epia systems. more>>
epiOS is a Gentoo based GNU/Linux distribution designed and optimized for VIA Epia systems.
epiOS is developed to detect and support all integrated hardware components like the onboard MPEG-2 decoder or the PadLock (Cryptography) engine out of the box.
Otherwise its main purpose is to provide a system which is easy to install, maintain and of course very easy to use even for unexperienced users but keeping all the advanced features Gentoo provides.
<<lessepiOS is developed to detect and support all integrated hardware components like the onboard MPEG-2 decoder or the PadLock (Cryptography) engine out of the box.
Otherwise its main purpose is to provide a system which is easy to install, maintain and of course very easy to use even for unexperienced users but keeping all the advanced features Gentoo provides.
Download (624MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
699 downloads
aKode 2.0.2
aKode is the decoding library used in akode_artsplugin in kdemultimedia. more>>
aKode is not really a KDE application and not even an application, but very usefull non the less.
aKode is the decoding library used in akode_artsplugin in kdemultimedia, and improves the aRts experience by fewer drop-outs, more supported formats and fewer bugs in general.
It can also be used directly without aRts in JuK and Amarok.
aKode supports decoding of MPEG audio, Ogg Vorbis, Ogg FLAC, old FLAC, Speex, WAV, and Musepack audio.
aKode currently has the following decoder plugins:
- mpeg: Uses libMAD to decoder all MPEG 1/2 layer I-III audio. GPL licensed and patent issue in the US.
- mpc: Decodes musepack aka mpc audio. LGPL licensed.
- xiph: Decodes FLAC, Ogg/FLAC, Speex and Ogg Vorbis audio. LGPL licensed, patent free.
- ffmpeg: Experimental decoder using the FFMPEG decoding library. Enables WMA and RealAudio playback. LGPL and possible patent and reengineering issues in the US.
aKode also has the following audio outputs:
- oss: Outputs to the OSS (Open Sound System) of for instance FreeBSD and Linux 2.4
- alsa: Outputs to ALSA of Linux 2.6 (version 0.9 or 1.x required) (dmix is recommended).
- sun: Outputs to Sun OS/Solaris audio device .
- jack: Outputs using Jack audio backend.
- polyp: Output to the polypaudio server. Recommended for network transparent audio.
Enhancements:
- Support for new FLAC C API (1.1.3+)
- Fixed WAV replay bug.
- Improved FFMPEG decoder
<<lessaKode is the decoding library used in akode_artsplugin in kdemultimedia, and improves the aRts experience by fewer drop-outs, more supported formats and fewer bugs in general.
It can also be used directly without aRts in JuK and Amarok.
aKode supports decoding of MPEG audio, Ogg Vorbis, Ogg FLAC, old FLAC, Speex, WAV, and Musepack audio.
aKode currently has the following decoder plugins:
- mpeg: Uses libMAD to decoder all MPEG 1/2 layer I-III audio. GPL licensed and patent issue in the US.
- mpc: Decodes musepack aka mpc audio. LGPL licensed.
- xiph: Decodes FLAC, Ogg/FLAC, Speex and Ogg Vorbis audio. LGPL licensed, patent free.
- ffmpeg: Experimental decoder using the FFMPEG decoding library. Enables WMA and RealAudio playback. LGPL and possible patent and reengineering issues in the US.
aKode also has the following audio outputs:
- oss: Outputs to the OSS (Open Sound System) of for instance FreeBSD and Linux 2.4
- alsa: Outputs to ALSA of Linux 2.6 (version 0.9 or 1.x required) (dmix is recommended).
- sun: Outputs to Sun OS/Solaris audio device .
- jack: Outputs using Jack audio backend.
- polyp: Output to the polypaudio server. Recommended for network transparent audio.
Enhancements:
- Support for new FLAC C API (1.1.3+)
- Fixed WAV replay bug.
- Improved FFMPEG decoder
Download (0.45MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
936 downloads
DreamPlayer 0.2.5
DreamPlayer is a Linux-console multi format player. more>>
DreamPlayer is a Linux-console multi format player. Its the first Linux console multimedia player supports TwinVQ, and Wave (for now). There is planned version for Windows in the future. Player uses free decoder library known as TwinVQ SDK by NTT.
You probably have a question Why Ive decided to write a text console program. The answer is very simple. As you can read in About Me I just love to listen music, especially during working. I use TwinVQ for collecting music - because of smaller file size - I thought that all over the world there are many people who would do like me.
Yes, I know there is a Linux native multimedia player called XMMS working in the X Window environment. But X Window uses much more resources than my program, and XMMS arent better. So I wanted to create a small player with big abilities. The first: I did by using text console environment, the second: Im on ncurses based interface to make the player more useful. Additionally my player is available as freeware on the GNU GPL and as an Open Source. So you can use my code, change as you wish, but just write that the original code is mine
<<lessYou probably have a question Why Ive decided to write a text console program. The answer is very simple. As you can read in About Me I just love to listen music, especially during working. I use TwinVQ for collecting music - because of smaller file size - I thought that all over the world there are many people who would do like me.
Yes, I know there is a Linux native multimedia player called XMMS working in the X Window environment. But X Window uses much more resources than my program, and XMMS arent better. So I wanted to create a small player with big abilities. The first: I did by using text console environment, the second: Im on ncurses based interface to make the player more useful. Additionally my player is available as freeware on the GNU GPL and as an Open Source. So you can use my code, change as you wish, but just write that the original code is mine
Download (0.38MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1186 downloads
Convert::UUlib 1.06
Convert::UUlib is a Perl interface to the uulib library (a.k.a. uudeview/uuenview). more>>
Convert::UUlib is a Perl interface to the uulib library (a.k.a. uudeview/uuenview).
SYNOPSIS
use Convert::UUlib :all;
# read all the files named on the commandline and decode them
# into the CURRENT directory. See below for a longer example.
LoadFile $_ for @ARGV;
for (my $i = 0; my $uu = GetFileListItem $i; $i++) {
if ($uu->state & FILE_OK) {
$uu->decode;
print $uu->filename, "n";
}
}
Read the file doc/library.pdf from the distribution for in-depth information about the C-library used in this interface, and the rest of this document and especially the non-trivial decoder program at the end.
<<lessSYNOPSIS
use Convert::UUlib :all;
# read all the files named on the commandline and decode them
# into the CURRENT directory. See below for a longer example.
LoadFile $_ for @ARGV;
for (my $i = 0; my $uu = GetFileListItem $i; $i++) {
if ($uu->state & FILE_OK) {
$uu->decode;
print $uu->filename, "n";
}
}
Read the file doc/library.pdf from the distribution for in-depth information about the C-library used in this interface, and the rest of this document and especially the non-trivial decoder program at the end.
Download (0.23MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Bundle::Knetrix 1.0
Bundle::Knetrix is a Perl bundle to install all Knetrix required modules. more>>
Bundle::Knetrix is a Perl bundle to install all Knetrix required modules.
SYNOPSIS
perl -MCPAN -e install Bundle::Knetrix
CONTENTS
Apache AutoLoader Business::CreditCard Carp Class::Delegation Class::MakeMethods::Composite::Hash Compress::Zlib Crypt::TripleDES Cyrus::SIEVE::managesieve Data::Dumper DBI Digest::MD5 DynaLoader Email::Valid Error Exporter ExtUtils::MakeMaker File::Spec Geo::PostalCode HTML::Entities HTML::Parser Image::Size Image::Thumbnail IO::Scalar IPC::Shareable IPC::SysV Log::Log4perl Mail::IMAPClient Mail::IMAPClient::BodyStructure MIME::Base64 MIME::Decoder Number::Format PDF::Template POSIX Storable Switch Symbol Template Term::ANSIColor Tie::Hash::Expire Time::HiRes Time::Local URI::Escape URI::Find::Schemeless XML::Simple XML::XPath
head1 DESCRIPTION
This bundle defines modules, required by Knetrix.
<<lessSYNOPSIS
perl -MCPAN -e install Bundle::Knetrix
CONTENTS
Apache AutoLoader Business::CreditCard Carp Class::Delegation Class::MakeMethods::Composite::Hash Compress::Zlib Crypt::TripleDES Cyrus::SIEVE::managesieve Data::Dumper DBI Digest::MD5 DynaLoader Email::Valid Error Exporter ExtUtils::MakeMaker File::Spec Geo::PostalCode HTML::Entities HTML::Parser Image::Size Image::Thumbnail IO::Scalar IPC::Shareable IPC::SysV Log::Log4perl Mail::IMAPClient Mail::IMAPClient::BodyStructure MIME::Base64 MIME::Decoder Number::Format PDF::Template POSIX Storable Switch Symbol Template Term::ANSIColor Tie::Hash::Expire Time::HiRes Time::Local URI::Escape URI::Find::Schemeless XML::Simple XML::XPath
head1 DESCRIPTION
This bundle defines modules, required by Knetrix.
Download (0.002MB)
Added: 2007-05-25 License: Perl Artistic License Price:
882 downloads
soundKonverter 0.3.4
soundKonverter a frontend to various audio converters. more>>
soundKonverter project is a frontend to various audio converters.
Currently supported backends are oggenc, oggdec, flac, lame, ffmpeg (partly), mplayer (partly).
With soundKonverter you can convert between various audio file formats. Supported formats are: (encode/decode)
ogg (e/d)
flac (e/d)
mp3 (e/d)
wav (e/d)
wma (d)
Known problems:
-Starting soundKonverter with arguments will fail if there is already an active instance. Use dragndrop.
-The progressbar doesnt work fine.
-Calibrating the wma decoder only works one time per reboot for me.
-some small things.
Planned features:
-Profile manager.
-More audio formats.
If you have suggestions feel free to send me a mail. My English is not very well, so feel free to send me corrections of incongruous expressions.
This app is in a very early development stage. I just thought that some guys are waiting for an application like this (me for example). Furthermore it may still take some time to finish it.
Enhancements:
- Add: Polish translation (thanks to qla)
- Add: Brazilian Portuguese translation (thanks to Leandro Santiago da Silva)
- Add: Spanish translation (thanks to Adrian Capel)
- Add: Support for ttaenc and bonk
- Add: Support for wvgain
- Fix: Show Replay Gain of flac files correctly
- Fix: Dont recalculate Replay Gain, if all files in an album show the same gain
- Fix: Some minor fixes
- Remove: Plugin update feature because my website is down
<<lessCurrently supported backends are oggenc, oggdec, flac, lame, ffmpeg (partly), mplayer (partly).
With soundKonverter you can convert between various audio file formats. Supported formats are: (encode/decode)
ogg (e/d)
flac (e/d)
mp3 (e/d)
wav (e/d)
wma (d)
Known problems:
-Starting soundKonverter with arguments will fail if there is already an active instance. Use dragndrop.
-The progressbar doesnt work fine.
-Calibrating the wma decoder only works one time per reboot for me.
-some small things.
Planned features:
-Profile manager.
-More audio formats.
If you have suggestions feel free to send me a mail. My English is not very well, so feel free to send me corrections of incongruous expressions.
This app is in a very early development stage. I just thought that some guys are waiting for an application like this (me for example). Furthermore it may still take some time to finish it.
Enhancements:
- Add: Polish translation (thanks to qla)
- Add: Brazilian Portuguese translation (thanks to Leandro Santiago da Silva)
- Add: Spanish translation (thanks to Adrian Capel)
- Add: Support for ttaenc and bonk
- Add: Support for wvgain
- Fix: Show Replay Gain of flac files correctly
- Fix: Dont recalculate Replay Gain, if all files in an album show the same gain
- Fix: Some minor fixes
- Remove: Plugin update feature because my website is down
Download (0.60MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
824 downloads
Audio::Mad 0.6
Audio::Mad is a Perl interface to the mad MPEG decoder library. more>>
Audio::Mad is a Perl interface to the mad MPEG decoder library.
SYNOPSIS
use Audio::Mad qw(:all);
my $stream = new Audio::Mad::Stream();
my $frame = new Audio::Mad::Frame();
my $synth = new Audio::Mad::Synth();
my $timer = new Audio::Mad::Timer();
my $resample = new Audio::Mad::Resample(44100, 22050);
my $dither = new Audio::Mad::Dither();
my $buffer = join(, );
$stream->buffer($buffer);
FRAME: {
if ($frame->decode($stream) == -1) {
last FRAME unless ($stream->err_ok());
warn "decoding error: " . $stream->error();
next FRAME;
}
$synth->synth($frame);
my $pcm = $dither->dither($resample->resample($synth->samples()));
print $pcm;
next FRAME;
}
This module is an attempt to provide a perl interface to the MAD (MPEG Audio Decoder) library, written by Robert Leslie. It has been designed to be 100% object oriented, and to follow the MAD interface as closely as possible.
So far, most of the MAD library, plus two companion modules are provided as part of the interface. Seperate documentation is provided in perldoc for all of the modules in the Audio::Mad framework.
<<lessSYNOPSIS
use Audio::Mad qw(:all);
my $stream = new Audio::Mad::Stream();
my $frame = new Audio::Mad::Frame();
my $synth = new Audio::Mad::Synth();
my $timer = new Audio::Mad::Timer();
my $resample = new Audio::Mad::Resample(44100, 22050);
my $dither = new Audio::Mad::Dither();
my $buffer = join(, );
$stream->buffer($buffer);
FRAME: {
if ($frame->decode($stream) == -1) {
last FRAME unless ($stream->err_ok());
warn "decoding error: " . $stream->error();
next FRAME;
}
$synth->synth($frame);
my $pcm = $dither->dither($resample->resample($synth->samples()));
print $pcm;
next FRAME;
}
This module is an attempt to provide a perl interface to the MAD (MPEG Audio Decoder) library, written by Robert Leslie. It has been designed to be 100% object oriented, and to follow the MAD interface as closely as possible.
So far, most of the MAD library, plus two companion modules are provided as part of the interface. Seperate documentation is provided in perldoc for all of the modules in the Audio::Mad framework.
Download (0.13MB)
Added: 2006-06-30 License: Perl Artistic License Price:
1212 downloads
cue2ogg
cue2ogg is a script to bust up not-so-cute single-file CD rips. more>>
cue2ogg is a script to bust up not-so-cute single-file CD rips. Basically, at least a few people have gotten into the habit of ripping a CD into a CUE file and a lossless format of their choice.
So, youll end up with WAV/CUE, APE/CUE, or FLAC/CUE sets. All the times (and possibly track names) are in the cue file, and all you want is individual tracks you can skip around and listen to.
Inspired by a similar CUE/APE->FLAC converter by HEx, this will give you split Ogg Vorbis tracks from a CUE/lossless set with a simple command:
cue2ogg.py filename.cue
All you need is python, a file to break up, and decoder binaries.
<<lessSo, youll end up with WAV/CUE, APE/CUE, or FLAC/CUE sets. All the times (and possibly track names) are in the cue file, and all you want is individual tracks you can skip around and listen to.
Inspired by a similar CUE/APE->FLAC converter by HEx, this will give you split Ogg Vorbis tracks from a CUE/lossless set with a simple command:
cue2ogg.py filename.cue
All you need is python, a file to break up, and decoder binaries.
Download (0.003MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
714 downloads
xmms-a52dec 1.0
xmms-a52dec is an A52/AC3 decoder plugin for xmms. more>>
xmms-a52dec is an A52/AC3 decoder plugin for xmms. In order to use this software, youll need XMMS, and liba52. AC3 files can be extracted from a DVD using "extract_a52" provided with liba52.
Main features:
- Plays A52/AC3 files.
- Display information on A52 files.
- Surround Sound using the OSSSurround output plugin (Included).
<<lessMain features:
- Plays A52/AC3 files.
- Display information on A52 files.
- Surround Sound using the OSSSurround output plugin (Included).
Download (0.048MB)
Added: 2006-04-07 License: GPL (GNU General Public License) Price:
1312 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 decoder 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