currency converter
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 265
Yahoo! Finance Currency Converter 0.4
Yahoo! Finance Currency Converter is a greasemonkey script that will automatically convert every foreign currency. more>>
After the converter I developed ages ago for Dashboard, I needed something to help me grasp quickly the prices in foreign currencies displayed on the web site I visited.
I therefore started to develop my first greasemonkey script to have Firefox do that automatically.
Yahoo! Finance Currency Converter is not the first one around, I particularly like that one, but for the exercise, I wanted to develop mine using Yahoo! Finance exchange rates.
<<lessI therefore started to develop my first greasemonkey script to have Firefox do that automatically.
Yahoo! Finance Currency Converter is not the first one around, I particularly like that one, but for the exercise, I wanted to develop mine using Yahoo! Finance exchange rates.
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1037 downloads
Locale::Object::Currency::Converter 0.74
Locale::Object::Currency::Converter is a Perl module that can convert between currencies. more>>
Locale::Object::Currency::Converter is a Perl module that can convert between currencies.
Locale::Object::Currency::Converter allows you to convert between values of currencies represented by Locale::Object::Currency objects.
SYNOPSIS
use Locale::Object::Currency;
use Locale::Object::Currency::Converter;
my $usd = Locale::Object::Currency->new( code => USD );
my $gbp = Locale::Object::Currency->new( code => GBP );
my $eur = Locale::Object::Currency->new( code => EUR );
my $jpy = Locale::Object::Currency->new( code => JPY );
my $converter = Locale::Object::Currency::Converter->new(
from => $usd,
to => $gbp,
service => XE
);
my $result = $converter->convert(5);
my $rate = $converter->rate;
my $timestamp = $converter->timestamp;
print $converter->use_xe;
print $converter->use_yahoo;
$converter->from($eur);
$converter->to($jpy);
$converter->service(Yahoo);
$converter->refresh;
<<lessLocale::Object::Currency::Converter allows you to convert between values of currencies represented by Locale::Object::Currency objects.
SYNOPSIS
use Locale::Object::Currency;
use Locale::Object::Currency::Converter;
my $usd = Locale::Object::Currency->new( code => USD );
my $gbp = Locale::Object::Currency->new( code => GBP );
my $eur = Locale::Object::Currency->new( code => EUR );
my $jpy = Locale::Object::Currency->new( code => JPY );
my $converter = Locale::Object::Currency::Converter->new(
from => $usd,
to => $gbp,
service => XE
);
my $result = $converter->convert(5);
my $rate = $converter->rate;
my $timestamp = $converter->timestamp;
print $converter->use_xe;
print $converter->use_yahoo;
$converter->from($eur);
$converter->to($jpy);
$converter->service(Yahoo);
$converter->refresh;
Download (0.045MB)
Added: 2006-08-07 License: Perl Artistic License Price:
1174 downloads
RIR to DNS converter 0.1
RIR to DNS converter is a tool to convert Regional Internet Registry data to a DNS country lookup zone. more>>
RIR to DNS converter is a tool to convert Regional Internet Registry data to a DNS country lookup zone. You can use it to build your own DNS zone for looking up country codes from IP addresses.
It uses data directly from RIPE, ARIN, APNIC, LACNIC, and AFRINIC. The data can be updated on a schedule of your choosing.
The input data comes from:
ftp://ftp.afrinic.net/pub/stats/afrinic/delegated-afrinic-latest
ftp://ftp.apnic.net/pub/stats/apnic/delegated-apnic-latest
ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest
ftp://ftp.ripe.net/pub/stats/ripencc/delegated-ripencc-latest
ftp://ftp.lacnic.net/pub/stats/lacnic/delegated-lacnic-latest
The input data format is described in:
http://www.apnic.net/db/rir-stats-format.html
The output is a BIND 9 zone file that can be used to look up country codes
in a similar fashion to in-addr.arpa. For example, to find out what country
203.30.47.58 is:
host 58.47.30.203.rir.example.com
58.47.30.203.rir.example.com has address 127.0.65.86
where 65 and 85 are ASCII for A and U, which means 203.30.47.58 is
in Australia (AU).
HOW TO USE IT
Just feed it the above delegated- -latest files into stdin and it will
spit out the zone file to stdout. The zone file will only have the IP addresses,
so you could $INCLUDE it into a zone file that contains NS records, SOA, $ORIGIN,
etc.
WHY USE IT
You dont need the resolution of MaxMinds GeoIP database, but you do want
something that is free and you want it kept up to date on a schedule that
you decide.
You could use this to block or tag email based on countries, block or redirect
visitors to your website based on end-user country, and so on. Be very
careful about blocking mail this way, though, as you may block legitimate
email. Instead of blocking outright, use it in a SpamAssassin rule to add
something to the spam level, based on where the email comes from.
HOW IT WORKS
The RIR files contain ranges of IP addresses, and indicate what CC each range is allocated to. At the simplest level, rir2dns just sorts the ranges then iterates
through the IPs in each range and generates a reverse-dns-style A record that
represents the country code.
HOW IT WORKS - IN DETAIL
Rather than iterate through each IP address, the program tries to skip through
entire classes at a time (256 IPs, 65536 IPs, etc). Rather than iterate
through each IP, the loop iterates through classes or IP ranges (whichever are
smaller at the loop control), using control-breaks to accummulate neighbouring
ranges where possible so that entire classes that are in the same country dont
generate huge numbers of records.
Firstly, IPs are considered to be 4-digit numbers, but in base-256. In other
words, each octet is dealt with as if it were a single base-256 digit. This
turns out to be convenient because optimisations of large chunks of IP space can be done by looking for places where least-significant base-256 digits are zero.
Next, IP ranges are broken down into the following sub-ranges:
Optional individual IP addresses (ie: 4 octets)
Optional A-class ranges (ie: 3 octets)
Optional B-class ranges (ie: 2 octets)
Optional C-class ranges (ie: 1 octet)
Optional B-class ranges (ie: 2 octets)
Optional A-class ranges (ie: 3 octets)
Optional individual IP addresses (ie: 4 octets)
Considering that there is a pattern here, Im sure theres an elegant way to
handle breaking this down into two loops (one reducing the octets and one
increasing the octets), but I cant be bothered, so Ill break it down into
seven loops. Kind of hard-coded, but at least its simple.
For ease of processing, the IP addresses are actually converted to 32-bit numbers, then back again. This simplifies mathematics and looping through ranges.
Thats pretty much it, really...
Note that currently there are about 80,000 RIR records between all five
registries. This takes about 35 seconds on a 2.4GHz P4 to process, and
generates a 26MB file with around 3/4 million lines (RRs). This causes BIND
to use about 100MB or so of memory, and on a slow machine will probably cause it to take too long to reply, while it searches the zone. That size zone can
take a minute or two to load, which is quite a while.
Basic algorithm:
Read & process RIR data:
Read RIR ranges
Sort RIR ranges by start IP address
Glue together contiguous ranges of the same country
For each range
Generate the IPs at the start of the range
Generate the A-classes at the start of the range
Generate the B-classes at the start of the range
Generate the C-classes in the middle of the range
Generate the B-classes at the end of the range
Generate the A-classes at the end of the range
Generate the IPs at the end of the range
<<lessIt uses data directly from RIPE, ARIN, APNIC, LACNIC, and AFRINIC. The data can be updated on a schedule of your choosing.
The input data comes from:
ftp://ftp.afrinic.net/pub/stats/afrinic/delegated-afrinic-latest
ftp://ftp.apnic.net/pub/stats/apnic/delegated-apnic-latest
ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest
ftp://ftp.ripe.net/pub/stats/ripencc/delegated-ripencc-latest
ftp://ftp.lacnic.net/pub/stats/lacnic/delegated-lacnic-latest
The input data format is described in:
http://www.apnic.net/db/rir-stats-format.html
The output is a BIND 9 zone file that can be used to look up country codes
in a similar fashion to in-addr.arpa. For example, to find out what country
203.30.47.58 is:
host 58.47.30.203.rir.example.com
58.47.30.203.rir.example.com has address 127.0.65.86
where 65 and 85 are ASCII for A and U, which means 203.30.47.58 is
in Australia (AU).
HOW TO USE IT
Just feed it the above delegated- -latest files into stdin and it will
spit out the zone file to stdout. The zone file will only have the IP addresses,
so you could $INCLUDE it into a zone file that contains NS records, SOA, $ORIGIN,
etc.
WHY USE IT
You dont need the resolution of MaxMinds GeoIP database, but you do want
something that is free and you want it kept up to date on a schedule that
you decide.
You could use this to block or tag email based on countries, block or redirect
visitors to your website based on end-user country, and so on. Be very
careful about blocking mail this way, though, as you may block legitimate
email. Instead of blocking outright, use it in a SpamAssassin rule to add
something to the spam level, based on where the email comes from.
HOW IT WORKS
The RIR files contain ranges of IP addresses, and indicate what CC each range is allocated to. At the simplest level, rir2dns just sorts the ranges then iterates
through the IPs in each range and generates a reverse-dns-style A record that
represents the country code.
HOW IT WORKS - IN DETAIL
Rather than iterate through each IP address, the program tries to skip through
entire classes at a time (256 IPs, 65536 IPs, etc). Rather than iterate
through each IP, the loop iterates through classes or IP ranges (whichever are
smaller at the loop control), using control-breaks to accummulate neighbouring
ranges where possible so that entire classes that are in the same country dont
generate huge numbers of records.
Firstly, IPs are considered to be 4-digit numbers, but in base-256. In other
words, each octet is dealt with as if it were a single base-256 digit. This
turns out to be convenient because optimisations of large chunks of IP space can be done by looking for places where least-significant base-256 digits are zero.
Next, IP ranges are broken down into the following sub-ranges:
Optional individual IP addresses (ie: 4 octets)
Optional A-class ranges (ie: 3 octets)
Optional B-class ranges (ie: 2 octets)
Optional C-class ranges (ie: 1 octet)
Optional B-class ranges (ie: 2 octets)
Optional A-class ranges (ie: 3 octets)
Optional individual IP addresses (ie: 4 octets)
Considering that there is a pattern here, Im sure theres an elegant way to
handle breaking this down into two loops (one reducing the octets and one
increasing the octets), but I cant be bothered, so Ill break it down into
seven loops. Kind of hard-coded, but at least its simple.
For ease of processing, the IP addresses are actually converted to 32-bit numbers, then back again. This simplifies mathematics and looping through ranges.
Thats pretty much it, really...
Note that currently there are about 80,000 RIR records between all five
registries. This takes about 35 seconds on a 2.4GHz P4 to process, and
generates a 26MB file with around 3/4 million lines (RRs). This causes BIND
to use about 100MB or so of memory, and on a slow machine will probably cause it to take too long to reply, while it searches the zone. That size zone can
take a minute or two to load, which is quite a while.
Basic algorithm:
Read & process RIR data:
Read RIR ranges
Sort RIR ranges by start IP address
Glue together contiguous ranges of the same country
For each range
Generate the IPs at the start of the range
Generate the A-classes at the start of the range
Generate the B-classes at the start of the range
Generate the C-classes in the middle of the range
Generate the B-classes at the end of the range
Generate the A-classes at the end of the range
Generate the IPs at the end of the range
Download (0.60MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
913 downloads
Sound Converter 0.9.7
Sound Converter can convert sound files to other formats. more>>
Sound Converter project can convert sound files to other formats.
A simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files.
<<lessA simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files.
Download (0.036MB)
Added: 2007-08-01 License: GPL v3 Price:
538 downloads
Finance::Currency::Convert::XE 0.10
Finance::Currency::Convert::XE is a Perl module for currency conversion module. more>>
Finance::Currency::Convert::XE is a Perl module for currency conversion module.
SYNOPSIS
use Finance::Currency::Convert::XE;
my $obj = Finance::Currency::Convert::XE->new()
|| die "Failed to create objectn" ;
my $value = $obj->convert(
source => GBP,
target => EUR,
value => 123.45,
format => text
) || die "Could not convert: " . $obj->error . "n";
my @currencies = $obj->currencies;
Currency conversion module using XE.coms Universal Currency Converter (tm) site.
<<lessSYNOPSIS
use Finance::Currency::Convert::XE;
my $obj = Finance::Currency::Convert::XE->new()
|| die "Failed to create objectn" ;
my $value = $obj->convert(
source => GBP,
target => EUR,
value => 123.45,
format => text
) || die "Could not convert: " . $obj->error . "n";
my @currencies = $obj->currencies;
Currency conversion module using XE.coms Universal Currency Converter (tm) site.
Download (0.006MB)
Added: 2006-08-07 License: Perl Artistic License Price:
1178 downloads
Capacitor Converter 1.0
Capacitor Converter is an extension which converts capacitor values. more>>
Capacitor Converter is an extension which converts capacitor values.
Easy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
<<lessEasy to use capacitor converter. Converts between pF, nF and uF in a flash. For those of you who didnt know you can make the toolbar disappear.
Just right-click(Windows) or ctrl+click(one button Macs) beside the address bar and select Capacitor Converter to make it disappear.
Download (0.002MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
603 downloads
Multimedia Converter 1.5
Multimedia Converter project provides graphical environment to take full advantage some of the possibilities the ffmpeg & MPlaye more>>
Multimedia Converter project provides graphical environment to take full advantage some of the possibilities the ffmpeg and MPlayer.
So help to Convert between different media formats.
<<lessSo help to Convert between different media formats.
Download (0.30MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
894 downloads
3gp converter 0.6
3gp converter is a Kommander script that uses ffmpeg as a backend and allows you convert the video files in 3gp format. more>>
3gp converter is a GUI (Kommander script) that uses ffmpeg as a backend and allows you convert the video files in 3gp format, which used at mobile phones.
You must have ffmpeg installed at you system compilled with AMR audio-codec fupport (check up ffmpeg manuals for instructions). Also you need Kommander installed(at least kommender executor).
You can set custom parameters of encoding,for video stream: resolution, bitrate, framerate, used codec (h263,mpeg4), one or two pass encoding.
For audio stream:bitrate,samplerate (AAC only), audio codec (amr_nb,AAC).
Enhancements:
- updated homepage and added some info
- sliders fix (now sliders moves when you set values manually)
- added prevew backend switch(ffplay/mplayer)
- added "exit" button
- added "stop" buttons for prevew
<<lessYou must have ffmpeg installed at you system compilled with AMR audio-codec fupport (check up ffmpeg manuals for instructions). Also you need Kommander installed(at least kommender executor).
You can set custom parameters of encoding,for video stream: resolution, bitrate, framerate, used codec (h263,mpeg4), one or two pass encoding.
For audio stream:bitrate,samplerate (AAC only), audio codec (amr_nb,AAC).
Enhancements:
- updated homepage and added some info
- sliders fix (now sliders moves when you set values manually)
- added prevew backend switch(ffplay/mplayer)
- added "exit" button
- added "stop" buttons for prevew
Download (0.035MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
1432 downloads
YaHP Converter 1.2.17
YaHP is a java library that allows you to convert an HTML document into a PDF document. more>>
YaHP Converter is a java library that can convert an HTML document into a PDF document.
YaHP is licensed under the LGPL (GNU).
Method Summary
void convertToPdf(java.lang.String content, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.lang.String urlForBase, java.io.OutputStream out)
Convert the document in content in a PDF file.
void convertToPdf(java.net.URL url, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.io.OutputStream out)
Convert the document pointed by url in a PDF file.
private java.net.URL copyToTemp(java.net.URL url)
Copy the file pointed to url in the temp directory
private void init()
initialize the classloader, and the transforme.
Enhancements:
- A NPE which occurred if the FOP_TTF_FONT_PATH property is not set was fixed.
<<lessYaHP is licensed under the LGPL (GNU).
Method Summary
void convertToPdf(java.lang.String content, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.lang.String urlForBase, java.io.OutputStream out)
Convert the document in content in a PDF file.
void convertToPdf(java.net.URL url, IHtmlToPdfTransformer.PageSize size, java.util.List hf, java.io.OutputStream out)
Convert the document pointed by url in a PDF file.
private java.net.URL copyToTemp(java.net.URL url)
Copy the file pointed to url in the temp directory
private void init()
initialize the classloader, and the transforme.
Enhancements:
- A NPE which occurred if the FOP_TTF_FONT_PATH property is not set was fixed.
Download (29.3MB)
Added: 2007-07-06 License: LGPL (GNU Lesser General Public License) Price:
841 downloads
Finance::Currency::Convert::Yahoo 0.2
Finance::Currency::Convert::Yahoo is Perl mdoule that convert currencies using Yahoo. more>>
Finance::Currency::Convert::Yahoo is Perl mdoule that convert currencies using Yahoo.
SYNOPSIS
use Finance::Currency::Convert::Yahoo;
$Finance::Currency::Convert::Yahoo::CHAT = 1;
$_ = Finance::Currency::Convert::Yahoo::convert(1,USD,GBP);
print defined($_)? "Is $_n" : "Error.";
exit;
# See the currencies in a dirty way:
use Finance::Currency::Convert::Yahoo;
use Data::Dumper;
warn %Finance::Currency::Convert::Yahoo::currencies;
exit;
Using Finance.Yahoo.com, converts a sum between two currencies.
<<lessSYNOPSIS
use Finance::Currency::Convert::Yahoo;
$Finance::Currency::Convert::Yahoo::CHAT = 1;
$_ = Finance::Currency::Convert::Yahoo::convert(1,USD,GBP);
print defined($_)? "Is $_n" : "Error.";
exit;
# See the currencies in a dirty way:
use Finance::Currency::Convert::Yahoo;
use Data::Dumper;
warn %Finance::Currency::Convert::Yahoo::currencies;
exit;
Using Finance.Yahoo.com, converts a sum between two currencies.
Download (0.006MB)
Added: 2006-08-07 License: Perl Artistic License Price:
1176 downloads
PSP Video Converter 0.1
PSP Video Converter project is a simple graphical frontend to ffmpeg to allow you to easily convert your videos to PSP format. more>>
PSP Video Converter project is a simple graphical frontend to ffmpeg to allow you to easily convert your videos to PSP compatibile format. Works for me, thought I may share.
Note: Created with Kommander 1.3, not sure if it works with earlier Kommander.
Note: There is no error checking for now, so make sure you have a working ffmpeg with necessary codecs installed.
Note: Looks like some PSPs cant open h264 videos encoded with ffmpeg.
<<lessNote: Created with Kommander 1.3, not sure if it works with earlier Kommander.
Note: There is no error checking for now, so make sure you have a working ffmpeg with necessary codecs installed.
Note: Looks like some PSPs cant open h264 videos encoded with ffmpeg.
Download (0.033MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
704 downloads
Kde media converter 2.1
Kde media converter is a Kommander script that can convert any type of media into any other type. more>>
Well... i apreciated the good job done by almusaihij http://www.kde-apps.org/content/show.php?content=53457
And ive read comment about too many buttons... Ive searched along in kde-apps and i found this app http://www.kde-apps.org/content/show.php?content=41272
So ive decided to take the best from those kommander script to realize a more "feeling" and clean gui.. I would like to thanx all this guys and the script code..hope i can help to contribuite in adding-code for future kommander interfaces..
It could be more improved... like multiple files converted... and a clean "map-format" ...because now is in a little bit of a mess...
If u like this prog check also:
-SoundKonverter
-Kvideoencoder
A big tnx to the Ubuntu italian community for support..;)
A special tan to almusaihij for makeing a Kubuntu .deb package and for sharing code and idea.
Enhancements:
- More improved code
- Added subtiles misc with avi file
- Added experimental controls
<<lessAnd ive read comment about too many buttons... Ive searched along in kde-apps and i found this app http://www.kde-apps.org/content/show.php?content=41272
So ive decided to take the best from those kommander script to realize a more "feeling" and clean gui.. I would like to thanx all this guys and the script code..hope i can help to contribuite in adding-code for future kommander interfaces..
It could be more improved... like multiple files converted... and a clean "map-format" ...because now is in a little bit of a mess...
If u like this prog check also:
-SoundKonverter
-Kvideoencoder
A big tnx to the Ubuntu italian community for support..;)
A special tan to almusaihij for makeing a Kubuntu .deb package and for sharing code and idea.
Enhancements:
- More improved code
- Added subtiles misc with avi file
- Added experimental controls
Download (0.030MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
537 downloads
Audio Format Converter 0.7.0
Audio Format Converter is a an Amarok script that allows you to convert the audio format of the tracks in the playlist. more>>
Audio Format Converter is a an Amarok script that allows you to convert the audio format of the tracks in the playlist. The script takes a snapshot of the current playlist. Once the conversion has started, you can go back to using amaroK normally.
Supported files for both input and output include .flac, .ogg, .mp3, .mpc, .m4a, and .wav. Additionally, .wma, .ra, and are supported for input. (See below for the required packages.)
I dont know how to do anything with metatags from .wma or .ra. All I know is tags will get transferred to the output file if and only if the tags show up in the amaroK playlist. If they arent there, I suggest converting the files, then using a real tag editor like Easy Tag to put them in to the converted files.
This has only been tested on amaroK 1.2.4, but it should work on any amaroK>=1.2
The original files are NOT deleted. If the output file will overwrite an existing file, a dialog will appear to ask you whether to go ahead and overwrite or to skip the track. If you try to convert a file into the format its already in, a dialog will ask you how to handle this situation.
Depending on the number of tracks and the speed of your computer, this can take a long time to run. With each track, a passive popup will let you know what track its processing. At any time, you can stop the script by clicking stop in the amaroK script GUI.
<<lessSupported files for both input and output include .flac, .ogg, .mp3, .mpc, .m4a, and .wav. Additionally, .wma, .ra, and are supported for input. (See below for the required packages.)
I dont know how to do anything with metatags from .wma or .ra. All I know is tags will get transferred to the output file if and only if the tags show up in the amaroK playlist. If they arent there, I suggest converting the files, then using a real tag editor like Easy Tag to put them in to the converted files.
This has only been tested on amaroK 1.2.4, but it should work on any amaroK>=1.2
The original files are NOT deleted. If the output file will overwrite an existing file, a dialog will appear to ask you whether to go ahead and overwrite or to skip the track. If you try to convert a file into the format its already in, a dialog will ask you how to handle this situation.
Depending on the number of tracks and the speed of your computer, this can take a long time to run. With each track, a passive popup will let you know what track its processing. At any time, you can stop the script by clicking stop in the amaroK script GUI.
Download (0.006MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
914 downloads
Rainbyte Video Converter 0.01 Beta
Rainbyte Video Converter is a Kommander script which helps you convert video and audio in an easy way. more>>
Rainbyte Video Converter is a Kommander script which helps you convert video and audio in an easy way.
Its based on Kommander, mencoder and ffmpeg and you can convert from/to any format supported by those programs.
Well, I hope that it will be usefull for you, thanks for all.
<<lessIts based on Kommander, mencoder and ffmpeg and you can convert from/to any format supported by those programs.
Well, I hope that it will be usefull for you, thanks for all.
Download (0.012MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
985 downloads
Perl Audio Converter 3.3.2
Perl Audio Converter (PAC) is a simple script for converting multiple audio types from one format to another. more>>
Perl Audio Converter (PAC) is a tool for converting multiple audio types from one format to another. It supports MP2, MP3, Ogg Vorbis, FLAC, Shorten, Monkey Audio, FAAC (AAC/M4A/MP4), Musepack (MPC), Wavpack (WV), OptimFrog (OFR/OFS), TTA, LPAC, Kexis (KXS), AIFF, AC3, Lossless Audio (LA), AU, SND, RAW, VOC, SMP, RealAudio (RA/RAM), WAV, and WMA.
It can also convert audio from the following video formats/extensions: RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, QT, VCD, VOB, and WMV. A CD ripping function with CDDB support, batch and playlist conversion, tag preservation for most supported formats, independent tag reading/writing, and extensions for Konqueror and amaroK is also provided.
Enhancements:
- Added: MP4::Info dependency IO::String to pacpl-install
- Updated: License GPLv3
- Bug Fix: Directory conversions. pacpl was claiming the directory was empty and prompting to use the --recursive option...Thanks to John Meyer for the report.
<<lessIt can also convert audio from the following video formats/extensions: RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, QT, VCD, VOB, and WMV. A CD ripping function with CDDB support, batch and playlist conversion, tag preservation for most supported formats, independent tag reading/writing, and extensions for Konqueror and amaroK is also provided.
Enhancements:
- Added: MP4::Info dependency IO::String to pacpl-install
- Updated: License GPLv3
- Bug Fix: Directory conversions. pacpl was claiming the directory was empty and prompting to use the --recursive option...Thanks to John Meyer for the report.
Download (0.12MB)
Added: 2007-07-07 License: GPL v3 Price:
526 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 currency converter 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