m3u
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 66
m3u2toc 0.1
m3u2toc is a Perl script which creates a CD-Text enabled cdrdao TOC file from a XMMS MP3 playlist. more>>
m3u2toc is a Perl script which creates a CD-Text enabled cdrdao TOC file from a XMMS MP3 playlist.
Theres lots of scripts out there to help you burn MP3s as CD audio, but none Ive seen that make a point of writing matching CD-Text data. This script takes the pain out of manually preparing a TOC file with CD-Text author and title data by extracting that info from MP3 ID3 tags.
This script also differs from others by not being an end to end solution for MP3 to CD audio burning. It will take a M3U playlist and produce a TOC file and thats it. Decoding MP3s and running cdrdao to burn them is your job. (Although Ill implement decoding if theres demand for it).
I like small programs that tackle individual problems and solve them well, rather than monolithic ones that try to do everything and fail badly.
Four simple steps to burn:
- complile and save a playlist in XMMS (ensuring ID3 tags are filled).
- set output plugin in XMMS to "disk writer" and decode MP3s.
- run m3u2toc on playlist file to make a TOC file complete with author and title CD-Text data.
- then just run cdrdao using the TOC file and let the CD burn.
<<lessTheres lots of scripts out there to help you burn MP3s as CD audio, but none Ive seen that make a point of writing matching CD-Text data. This script takes the pain out of manually preparing a TOC file with CD-Text author and title data by extracting that info from MP3 ID3 tags.
This script also differs from others by not being an end to end solution for MP3 to CD audio burning. It will take a M3U playlist and produce a TOC file and thats it. Decoding MP3s and running cdrdao to burn them is your job. (Although Ill implement decoding if theres demand for it).
I like small programs that tackle individual problems and solve them well, rather than monolithic ones that try to do everything and fail badly.
Four simple steps to burn:
- complile and save a playlist in XMMS (ensuring ID3 tags are filled).
- set output plugin in XMMS to "disk writer" and decode MP3s.
- run m3u2toc on playlist file to make a TOC file complete with author and title CD-Text data.
- then just run cdrdao using the TOC file and let the CD burn.
Download (0.003MB)
Added: 2006-04-19 License: Freeware Price:
1285 downloads
M3U Ripper 1.4
M3U Ripper is a Firefox extension that allows you to rip the contents of an m3u, wmx, or ram playlist file. more>>
M3U Ripper is a Firefox extension that allows you to rip the contents of an m3u, wmx, or ram playlist file link by right clicking on the link and selecting the "Rip Playlist Contents..." option from the popup menu. The option will only appear if the URL ends with the proper file extension.
All the URLs in the M3U file are downloaded via the Firefox download manager to the default download directory or the one specified in the M3U Ripper options. You can also optionally have M3U Ripper create a sub directory with the playlist file name, create the remote playlist file, create a local playlist file, and filter URLs within the playlist files via regular expressions.
<<lessAll the URLs in the M3U file are downloaded via the Firefox download manager to the default download directory or the one specified in the M3U Ripper options. You can also optionally have M3U Ripper create a sub directory with the playlist file name, create the remote playlist file, create a local playlist file, and filter URLs within the playlist files via regular expressions.
Download (0.012MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
946 downloads
extm3u.pl 0.1
extm3u.pl generates an extended .m3u playlist from a given directory. more>>
extm3u.pl generates an extended .m3u playlist from a given directory. The generated playlist can be used with XMMS, Winamp, and other MPEG layer 3 players. The playlist is printed to stdout. Extended .m3u files contain additional information, such as the length of the song and data from the ID3 tag. This script requires the MP3::Info Perl-module.
For the curious the process will looks like this:
EXTINF:187,Bob Marley & The Wailers - Keep On Moving
./Bob_Marley_and_The_Wailers/Trilogy_CD3/Keep_On_Moving.mp3
The first number is the length of the song in seconds, then comes the artistname and songname from the ID3-tag
Enhancements:
- Added OGG Vorbis Support (thanks to David Klotz)
<<lessFor the curious the process will looks like this:
EXTINF:187,Bob Marley & The Wailers - Keep On Moving
./Bob_Marley_and_The_Wailers/Trilogy_CD3/Keep_On_Moving.mp3
The first number is the length of the song in seconds, then comes the artistname and songname from the ID3-tag
Enhancements:
- Added OGG Vorbis Support (thanks to David Klotz)
Download (0.008MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1194 downloads
MP3::M3U::Parser 2.20
MP3::M3U::Parser is a MP3 playlist parser. more>>
MP3::M3U::Parser is a MP3 playlist parser.
SYNOPSIS
use MP3::M3U::Parser;
my $parser = MP3::M3U::Parser->new(%options);
$parser->parse(*FILEHANDLE, $scalar, "/path/to/playlist.m3u");
my $result = $parser->result;
my %info = $parser->info;
$parser->export(-format => xml,
-file => "/path/mp3.xml",
-encoding => ISO-8859-9);
$parser->export(-format => html,
-file => "/path/mp3.html",
-drives => off);
# convert all m3u files to individual html files.
foreach () {
$parser->parse($_)->export->reset;
}
# convert all m3u files to one big html file.
foreach () {
$parser->parse($_);
}
$parser->export;
MP3::M3U::Parser is a parser for M3U mp3 playlist files. It also parses the EXTINF lines (which contains id3 song name and time) if possible. You can get a parsed object or specify a format and export the parsed data to it. The format can be xml or html.
<<lessSYNOPSIS
use MP3::M3U::Parser;
my $parser = MP3::M3U::Parser->new(%options);
$parser->parse(*FILEHANDLE, $scalar, "/path/to/playlist.m3u");
my $result = $parser->result;
my %info = $parser->info;
$parser->export(-format => xml,
-file => "/path/mp3.xml",
-encoding => ISO-8859-9);
$parser->export(-format => html,
-file => "/path/mp3.html",
-drives => off);
# convert all m3u files to individual html files.
foreach () {
$parser->parse($_)->export->reset;
}
# convert all m3u files to one big html file.
foreach () {
$parser->parse($_);
}
$parser->export;
MP3::M3U::Parser is a parser for M3U mp3 playlist files. It also parses the EXTINF lines (which contains id3 song name and time) if possible. You can get a parsed object or specify a format and export the parsed data to it. The format can be xml or html.
Download (0.018MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1086 downloads
M3U-Playlist Manager 0.0-3
M3U-Playlist Manager is an administration of loose m3u-playlists in tree structure. more>>
M3U-Playlist Manager is an administration of loose m3u-playlists in tree structure. Simple mouse-click to add or remove a song from playlist with currently running Song in the Player.
And other interesting functions. Supporting only XMMS at the moment.
<<lessAnd other interesting functions. Supporting only XMMS at the moment.
Download (0.017MB)
Added: 2006-04-09 License: GPL (GNU General Public License) Price:
1304 downloads
Recursively create M3U playlists 1.1
Recursively create M3U playlists is a service menu which can create a file called playlist.m3u in each directories. more>>
Recursively create M3U playlists is a service menu which can create a file called playlist.m3u in each directories and sub directories.
You can edit recursively_create_M3U_playlist.py to change the name of playlist.m3u
To install, simply put recursively_create_M3U_playlist.py and recursively_create_M3U_playlist.desktop in ~/.kde/share/apps/konqueror/servicemenus
You need the package fapg installed.
Dont hesitate giving feedbacks or improvements.
Enhancements:
NEW FEATURES :
- 001 ==> Ask the name of the m3u playlist file
- 002 ==> Tell when its finished
BUGS FIXES :
- 001 ==> Much faster
<<lessYou can edit recursively_create_M3U_playlist.py to change the name of playlist.m3u
To install, simply put recursively_create_M3U_playlist.py and recursively_create_M3U_playlist.desktop in ~/.kde/share/apps/konqueror/servicemenus
You need the package fapg installed.
Dont hesitate giving feedbacks or improvements.
Enhancements:
NEW FEATURES :
- 001 ==> Ask the name of the m3u playlist file
- 002 ==> Tell when its finished
BUGS FIXES :
- 001 ==> Much faster
Download (0.001MB)
Added: 2007-03-18 License: GPL (GNU General Public License) Price:
960 downloads
M3Tk 2.2
M3Tk generates M3U playlists from MP3 files and edits ID3 tags. more>>
M3Tk generates M3U playlists from MP3 files and edits ID3 tags. Wrote in Tcl/Tk, the M3Tk create the M3Us playlists from itens Genre, Album, Year and Artist. Scan the computer to search MP3s files and sort them in M3Us playlists. The editor can change (or include) informations about MP3 in one or several files at same time. Plus, you can manage the files names with the MP3 Renamer -- fast and practical. And may open the player, send the playlist to the player to play it or enqueue it. M3Tk has a installer/uninstaller GUI and has a simple and practical interface.
To install, change to directory where you extracted M3Tk package (e.g., cd ~/src/m3tk-2.2) and:
./m3tk-instal
And follow the screen instructions. If you desire to install on folder of ROOT permissions, run m3tk-instal as ROOT.
Enhancements:
- Fixed found errors and bugs.
<<lessTo install, change to directory where you extracted M3Tk package (e.g., cd ~/src/m3tk-2.2) and:
./m3tk-instal
And follow the screen instructions. If you desire to install on folder of ROOT permissions, run m3tk-instal as ROOT.
Enhancements:
- Fixed found errors and bugs.
Download (0.084MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1186 downloads
mp3cleanup 0.9
mp3cleanup is used to tidy up various aspects of MP3 files, including filenames, ID3 tags, path, m3u playlists, and bitrate. more>>
mp3cleanup is used to tidy up various aspects of MP3 files, including filenames, ID3 tags, path, m3u playlists, and bitrate.
This is particularly useful for hardware MP3 players that sometimes have arbitrary limitations on the files they work (well) with.
It can operate on single files or on all the files contained in a directory.
Enhancements:
- The -k option was added to check MP3s for bad frames before processing.
- The -D option was added to increase search depth.
- The -b option was added to create DOS format .m3u playlists.
- The -C option was added to copy rather than move.
- The (experimental) -g option was added to set the genre.
- Type "list" or "l" to get a list of genre numbers.
- Support for Ogg Vorbis files was added.
- The default maximum filename length was reduced to 52 chars (for iRiver).
- eyeD3 is used as well as id3tag to set tags, since sometimes tags were left inconsistent.
<<lessThis is particularly useful for hardware MP3 players that sometimes have arbitrary limitations on the files they work (well) with.
It can operate on single files or on all the files contained in a directory.
Enhancements:
- The -k option was added to check MP3s for bad frames before processing.
- The -D option was added to increase search depth.
- The -b option was added to create DOS format .m3u playlists.
- The -C option was added to copy rather than move.
- The (experimental) -g option was added to set the genre.
- Type "list" or "l" to get a list of genre numbers.
- Support for Ogg Vorbis files was added.
- The default maximum filename length was reduced to 52 chars (for iRiver).
- eyeD3 is used as well as id3tag to set tags, since sometimes tags were left inconsistent.
Download (0.015MB)
Added: 2005-08-14 License: GPL (GNU General Public License) Price:
1531 downloads
Kmp3burn 0.3.5
Kmp3burn is a kde fontend for cdrecord. more>>
Kmp3burn project is a kde fontend for cdrecord.
Main features:
- Adjust the volume of audio files to a standard volume level.
- Autodetection for CD burners, if libk3bdevice is found.
- New Player Interface.
- Handle Playlists at m3u format.
- Drag and Drop support.
Normalize
Normalize is a tool for adjusting the volume of audio files to a standard level.
This is useful for things like creating music CDs and mp3 collections,
where different recording levels on different albums can cause the volume
to vary greatly from song to song.
k3bs libraries
Though it is not a requirement, kmp3burn can make use of k3bs libraries
to autodetec CD burners. This may be necessary to make some more obscure devices work.
You can get k3b from www.k3b.org. You will need to install from source or install
k3b development files if you are using a binary package and you want to compile kmp3burn.
<<lessMain features:
- Adjust the volume of audio files to a standard volume level.
- Autodetection for CD burners, if libk3bdevice is found.
- New Player Interface.
- Handle Playlists at m3u format.
- Drag and Drop support.
Normalize
Normalize is a tool for adjusting the volume of audio files to a standard level.
This is useful for things like creating music CDs and mp3 collections,
where different recording levels on different albums can cause the volume
to vary greatly from song to song.
k3bs libraries
Though it is not a requirement, kmp3burn can make use of k3bs libraries
to autodetec CD burners. This may be necessary to make some more obscure devices work.
You can get k3b from www.k3b.org. You will need to install from source or install
k3b development files if you are using a binary package and you want to compile kmp3burn.
Download (0.68MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
956 downloads
mcplay 0.3i
mcplay is not just another fontend for mpg123. more>>
mcplay is not just another fontend for mpg123. It is also just another frontend for many other players (ogg123, sox, drvmidi). It is able to adjust the soundmixers volume and it is able to read and write playlist files (*.m3u). And it can be controlled via lirc.
The word mcplay stands for "my cool player" or "my cloned player" since it is a C-clone of the excellent program cplay which is written in python.
For now mcplay is in beta stage as it lacks a comfortable installation routine. And there might be some Bugs, too.
Uncompress the tar-gz file (e.g. with `tar xvzf myfile.tar.gz). Change to the newly created subdirectory and edit the Makefile e.g. by the command
vi Makefile
The lines you should change are marked with comments in the Makefile. If you have finished type
make
and mcplay should compile. If you like a sytemwide installation you should become root:
su
If you want to enable mcplays -a option (get a high priority) for all users make it suid root:
chown root mcplay
chmod +s mcplay
Now you can install the program system-wide:
make install
<<lessThe word mcplay stands for "my cool player" or "my cloned player" since it is a C-clone of the excellent program cplay which is written in python.
For now mcplay is in beta stage as it lacks a comfortable installation routine. And there might be some Bugs, too.
Uncompress the tar-gz file (e.g. with `tar xvzf myfile.tar.gz). Change to the newly created subdirectory and edit the Makefile e.g. by the command
vi Makefile
The lines you should change are marked with comments in the Makefile. If you have finished type
make
and mcplay should compile. If you like a sytemwide installation you should become root:
su
If you want to enable mcplays -a option (get a high priority) for all users make it suid root:
chown root mcplay
chmod +s mcplay
Now you can install the program system-wide:
make install
Download (0.10MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1184 downloads
djmount 0.71
djmount is a UPnP AV client. more>>
djmount is a UPnP AV client. It mounts as a Linux filesystem the media content of compatible UPnP AV devices.
Djmount discovers automatically all UPnP AV Media Servers on the network and it can make the content available in a directory tree.
An Audio or Video file is rendered as a playlist (.m3u or .ram) which contains an URL for the file. The file can then be streamed by your favorite media player.
djmount is written in C for the Linux operating system.
It is free software, licensed under the terms of the GNU General Public License (GNU GPL).
<<lessDjmount discovers automatically all UPnP AV Media Servers on the network and it can make the content available in a directory tree.
An Audio or Video file is rendered as a playlist (.m3u or .ram) which contains an URL for the file. The file can then be streamed by your favorite media player.
djmount is written in C for the Linux operating system.
It is free software, licensed under the terms of the GNU General Public License (GNU GPL).
Download (1.0MB)
Added: 2006-08-28 License: GPL (GNU General Public License) Price:
666 downloads
mousikos 0.3
mousikos is a portable audio/music player manager for GNOME. more>>
mousikos is a portable audio/music player manager for GNOME. It is designed to be able to support various types of portable music players connected through the parallel port or a USB port. It currently does not support any existing players. A fake player mimicked by a directory on the hard disk is currently supported as proof of concept of the rest of the features.
It is being developed under Linux. It is written in C. It requires glib, gtk+ and gnome. I intend to un-gnome-ify it sometime as some people only use KDE. It will always rely on glib and gtk however. It is distributed under the GNU General Public License (GPL) version 2 of June 1991.
It differs from other gui front-ends in these ways ways:
It relies on playlists (m3u).
It filters on the fly from high bit rate file to low bitrate files. In some cases this can be achieved by bit pealing (ogg to ogg), in others by re-encoding. This allows more files to fit on the player. The filtering capabilities are customizable so one could also have, for example, 256KBps ogg VBR to a regular 112Kbps mp3s.
Main features:
- It uses a two pane window. One for player contents one for playlist. Other player managers only have one with the player contents
- It can support multiple types of players. To add support for a given player one file must be edited and two new files must be created: .c and .h. I hope this means that existing command line programs for other players can be adapted easily for use within mousikos.
- It features a bookmarks(hotlist) menu for quick access to favorite playlists.
<<lessIt is being developed under Linux. It is written in C. It requires glib, gtk+ and gnome. I intend to un-gnome-ify it sometime as some people only use KDE. It will always rely on glib and gtk however. It is distributed under the GNU General Public License (GPL) version 2 of June 1991.
It differs from other gui front-ends in these ways ways:
It relies on playlists (m3u).
It filters on the fly from high bit rate file to low bitrate files. In some cases this can be achieved by bit pealing (ogg to ogg), in others by re-encoding. This allows more files to fit on the player. The filtering capabilities are customizable so one could also have, for example, 256KBps ogg VBR to a regular 112Kbps mp3s.
Main features:
- It uses a two pane window. One for player contents one for playlist. Other player managers only have one with the player contents
- It can support multiple types of players. To add support for a given player one file must be edited and two new files must be created: .c and .h. I hope this means that existing command line programs for other players can be adapted easily for use within mousikos.
- It features a bookmarks(hotlist) menu for quick access to favorite playlists.
Download (0.21MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1187 downloads
Apache::MP3 4.00
Apache::MP3 is a Perl module that can generate streamable directories of MP3 and Ogg Vorbis files. more>>
Apache::MP3 is a Perl module that can generate streamable directories of MP3 and Ogg Vorbis files.
SYNOPSIS
# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3
AddType audio/playlist m3u M3U
AddType audio/x-scpls pls PLS
AddType application/x-ogg ogg OGG
# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3
< /Location >
# Or use the Apache::MP3::Sorted subclass to get sortable directory listings
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
< /Location >
# Or use the Apache::MP3::Playlist subclass to get persistent playlists
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Playlist
< /Location >
A demo version can be browsed at http://www.modperl.com/Songs/.
This module makes it possible to browse a directory hierarchy containing MP3, Ogg Vorbis, or Wav files, sort them on various fields, download them, stream them to an MP3 decoder like WinAmp, and construct playlists. The display is configurable and subclassable.
NOTE: This version of Apache::MP3 is substantially different from the pre-2.0 version described in The Perl Journal. Specifically, the format to use for HREF links has changed. See Linking for details.
<<lessSYNOPSIS
# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3
AddType audio/playlist m3u M3U
AddType audio/x-scpls pls PLS
AddType application/x-ogg ogg OGG
# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3
< /Location >
# Or use the Apache::MP3::Sorted subclass to get sortable directory listings
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
< /Location >
# Or use the Apache::MP3::Playlist subclass to get persistent playlists
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Playlist
< /Location >
A demo version can be browsed at http://www.modperl.com/Songs/.
This module makes it possible to browse a directory hierarchy containing MP3, Ogg Vorbis, or Wav files, sort them on various fields, download them, stream them to an MP3 decoder like WinAmp, and construct playlists. The display is configurable and subclassable.
NOTE: This version of Apache::MP3 is substantially different from the pre-2.0 version described in The Perl Journal. Specifically, the format to use for HREF links has changed. See Linking for details.
Download (0.32MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1223 downloads
Graveman 0.3.12-5
GRAVEMAN is a GUI frontend for CD-R tools (cdrecord, readcd, and mkisofs), cdrdao, DVD+RW tools, and sox. more>>
GRAVEMAN is a GUI frontend for CD-R tools (cdrecord, readcd, and mkisofs), cdrdao, DVD+RW tools (growisofs and dvd+rw-format), and sox.
You can also import M3U and PTS playlists.
Main features:
- burn audio cd (from wav, ogg, mp3, flac, import m3u and pts playlists)
- burn data cd and dvd
- duplicate cd
- clean rewritable cd and dvd
Enhancements:
- Just a bugfixe release to close major "invalid free" bug.
<<lessYou can also import M3U and PTS playlists.
Main features:
- burn audio cd (from wav, ogg, mp3, flac, import m3u and pts playlists)
- burn data cd and dvd
- duplicate cd
- clean rewritable cd and dvd
Enhancements:
- Just a bugfixe release to close major "invalid free" bug.
Download (0.92MB)
Added: 2006-06-06 License: GPL (GNU General Public License) Price:
1242 downloads
MP3::Icecast 0.02
MP3::Icecast is a Perl module to generate Icecast streams, as well as M3U and PLSv2 playlists. more>>
MP3::Icecast is a Perl module to generate Icecast streams, as well as M3U and PLSv2 playlists.
SYNOPSIS
use MP3::Icecast;
use MP3::Info;
use IO::Socket;
my $listen_socket = IO::Socket::INET->new(
LocalPort => 8000, #standard Icecast port
Listen => 20,
Proto => tcp,
Reuse => 1,
Timeout => 3600);
#create an instance to find all files below /usr/local/mp3
my $finder = MP3::Icecast->new();
$finder->recursive(1);
$finder->add_directory(/usr/local/mp3);
my @files = $finder->files;
#accept TCP 8000 connections
while(1){
next unless my $connection = $listen_socket->accept;
defined(my $child = fork()) or die "Cant fork: $!";
if($child == 0){
$listen_socket->close;
my $icy = MP3::Icecast->new;
#stream files that have an ID3 genre tag of "jazz"
while(@files){
my $file = shift @files;
my $info = new MP3::Info $file;
next unless $info;
next unless $info->genre =~ /jazz/i;
$icy->stream($file,0,$connection);
}
exit 0;
}
#a contrived example to demonstrate that MP3::Icecast
#can generate M3U and PLSv2 media playlists.
print STDERR $icy->m3u, "n";
print STDERR $icy->pls, "n";
$connection->close;
}
ABSTRACT
MP3::Icecast supports streaming Icecast protocol over socket or other filehandle (including STDIN). This is useful for writing a streaming media server.
MP3::Icecast also includes support for generating M3U and PLSv2 playlist files. These are common formats supported by most modern media players, including XMMS, Windows Media Player 9, and Winamp.
<<lessSYNOPSIS
use MP3::Icecast;
use MP3::Info;
use IO::Socket;
my $listen_socket = IO::Socket::INET->new(
LocalPort => 8000, #standard Icecast port
Listen => 20,
Proto => tcp,
Reuse => 1,
Timeout => 3600);
#create an instance to find all files below /usr/local/mp3
my $finder = MP3::Icecast->new();
$finder->recursive(1);
$finder->add_directory(/usr/local/mp3);
my @files = $finder->files;
#accept TCP 8000 connections
while(1){
next unless my $connection = $listen_socket->accept;
defined(my $child = fork()) or die "Cant fork: $!";
if($child == 0){
$listen_socket->close;
my $icy = MP3::Icecast->new;
#stream files that have an ID3 genre tag of "jazz"
while(@files){
my $file = shift @files;
my $info = new MP3::Info $file;
next unless $info;
next unless $info->genre =~ /jazz/i;
$icy->stream($file,0,$connection);
}
exit 0;
}
#a contrived example to demonstrate that MP3::Icecast
#can generate M3U and PLSv2 media playlists.
print STDERR $icy->m3u, "n";
print STDERR $icy->pls, "n";
$connection->close;
}
ABSTRACT
MP3::Icecast supports streaming Icecast protocol over socket or other filehandle (including STDIN). This is useful for writing a streaming media server.
MP3::Icecast also includes support for generating M3U and PLSv2 playlist files. These are common formats supported by most modern media players, including XMMS, Windows Media Player 9, and Winamp.
Download (0.033MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1084 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 m3u 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