ogg vorbis files
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10115
Ogg Vorbis 1.2.0
Ogg Vorbis is a fully open, non-proprietary, general-purpose compressed audio format. more>>
Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed audio format for mid to high quality (8kHz-48.0kHz, 16+ bit, polyphonic) audio and music at fixed and variable bitrates from 16 to 128 kbps/channel.
This places Vorbis in the same competitive class as audio representations such as MPEG-4 (AAC), and similar to, but higher performance than MPEG-1/2 audio layer 3, MPEG-4 audio (TwinVQ), WMA and PAC.
Vorbis is the first of a planned family of Ogg multimedia coding formats being developed as part of Xiph.orgs Ogg multimedia project.
libVorbis is the core Ogg stream / Vorbis engine.
<<lessThis places Vorbis in the same competitive class as audio representations such as MPEG-4 (AAC), and similar to, but higher performance than MPEG-1/2 audio layer 3, MPEG-4 audio (TwinVQ), WMA and PAC.
Vorbis is the first of a planned family of Ogg multimedia coding formats being developed as part of Xiph.orgs Ogg multimedia project.
libVorbis is the core Ogg stream / Vorbis engine.
Download (1.4MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
832 downloads
cutoggvorbis 0.2
cutoggvorbis is a small and fast command line Ogg/Vorbis editor. more>>
cutoggvorbis is a small and fast command line Ogg/Vorbis editor. The project lets you select sections of an Ogg/Vorbis interactively or via a timetable and save them to separate files without quality loss. It uses ogg123 for playback and even works with files bigger than 2GB.
For KDE you can copy cutoggvorbis.desktop to ${KDEDIR}/share/apps/konqueror/servicemenus.
I am looking for someone to write a simple GUI for KDE or whatever!
It just needs to replace keystrokes with buttons for clicking, thats all.
Enhancements:
- An error at the beginning of the output file has been fixed, unfinished files can now be edited, and a leap in time detection while seeking has been added.
- Backward seeking is now five times faster.
- Code cleanups have been made.
<<lessFor KDE you can copy cutoggvorbis.desktop to ${KDEDIR}/share/apps/konqueror/servicemenus.
I am looking for someone to write a simple GUI for KDE or whatever!
It just needs to replace keystrokes with buttons for clicking, thats all.
Enhancements:
- An error at the beginning of the output file has been fixed, unfinished files can now be edited, and a leap in time detection while seeking has been added.
- Backward seeking is now five times faster.
- Code cleanups have been made.
Download (MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
926 downloads
Ogg Vorbis Tag Editor for XMMS 0.2
Ogg Vorbis Tag Editor for XMMS is a plugin for XMMS which allows you to edit the tags in ogg vorbis files. more>>
Ogg Vorbis Tag Editor for XMMS is a plugin for XMMS which allows you to edit the tags in ogg vorbis files. The editor is built into the vorbis plugin for XMMS.
<<less Download (0.031MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1295 downloads
GTK Ogg Vorbis Tag Editor 0.2
The GTK Ogg Vorbis Tag Editor allows you to edit the tag information in ogg vorbis files. more>>
The GTK Ogg Vorbis Tag Editor allows you to edit the tag information in ogg vorbis files.
The following basic libraries are necessary for assembly of the program:
GTK 1.2.5 or is higher (http://www.gtk.org)
Ogg Vorbis the library of the version 1.0beta3 or above (is desirable from CVS) (http://www.vorbis.com)
Assembly and installation:
./autogen.sh - prefix =/usr make
make install-strip
To start the program you have to type:
oggedit
or
oggedit [file]
Enhancements:
- The support of localization is added (while is added only Russian)
- The information about "genre", "location", "copyright", "track number" and "organization" is added
- It is a lot of other changes both in a graphic part of the interface, and in the basic code
<<lessThe following basic libraries are necessary for assembly of the program:
GTK 1.2.5 or is higher (http://www.gtk.org)
Ogg Vorbis the library of the version 1.0beta3 or above (is desirable from CVS) (http://www.vorbis.com)
Assembly and installation:
./autogen.sh - prefix =/usr make
make install-strip
To start the program you have to type:
oggedit
or
oggedit [file]
Enhancements:
- The support of localization is added (while is added only Russian)
- The information about "genre", "location", "copyright", "track number" and "organization" is added
- It is a lot of other changes both in a graphic part of the interface, and in the basic code
Download (0.031MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
Ogg::Vorbis::Header 0.03
Ogg::Vorbis::Header is an object-oriented interface to Ogg Vorbis information and comment fields. more>>
Ogg::Vorbis::Header is an object-oriented interface to Ogg Vorbis information and comment fields.
SYNOPSIS
use Ogg::Vorbis::Header;
my $ogg = Ogg::Vorbis::Header->new("song.ogg");
while (my ($k, $v) = each %{$ogg->info}) {
print "$k: $vn";
}
foreach my $com ($ogg->comment_tags) {
print "$com: $_n" foreach $ogg->comment($com);
}
$ogg->add_comments("good", "no", "ok", "yes");
$ogg->delete_comment("ok");
$ogg->write_vorbis;
This module presents an object-oriented interface to Ogg Vorbis files which allows user to view Vorbis info and comments and to modify or add comments.
CONSTRUCTORS
new ($filename)
Partially opens an Ogg Vorbis file to ensure it exists and is actually a Vorbis stream. It then closes the filehandle. It does not fill in the objects data fields. These fields will be automatically filled the first time they are accessed using the objects instance methods. Returns undef if there is a problem opening the file or the file is not valid Ogg Vorbis.
load ([$filename])
Opens an Ogg Vorbis file, reads its information, and then closes the filehandle. Returns undef if there is a problem opening the file or the file is not valid Ogg Vorbis. This is both a constructor and an instance method. The filename is required in constructor context, but should be left out when you call this as an instance method on an object. When called as an instance method, it (re)loads the info and comment data from the file. This can be used to reset the state of the object if write_vorbis hasnt been called. Note that the path parameter is ignored in instance context.
INSTANCE METHODS
These methods may be called on actual Header objects, using the -> operator or indirect objects as you prefer.
info ([$key])
Returns a reference to a hash containing format information about the Vorbis file. Hash fields are: version, channels, rate, bitrate_upper, bitrate_nominal, bitrate_lower, and bitrate_window, length. The bitrate_window value is currently unused by the vorbis codec. You can modify the referenced hash if you want, but I wouldnt suggest it.
The optional key parameter allows you to extract a single value from the internal hash (passed by value, not reference). If the key is invalid, undef is returned.
comment_tags ()
Returns an array holding the key values of each comment field. You can then use these values to access specific fields using comment. This may seem somewhat clunky at first but it will speed up most programs. In addition, it makes it easier to support the Ogg Vorbis comment standard which allows multiple fields with the same key.
comment ($key)
Returns a list of comments given a key. If the key does not exist, returns undef.
add_comments ($key, $value, [$key, $value, ...])
Adds comments with the given keys and values. Takes an array of alternating keys and values as parameters. Keys and values should be valid ascii in the range 0x20 - 0x7D and the key should exclude 0x3D (=). This is a subset of the Vorbis standard which allows this range for the key field and all of utf8 for the value field. This will be fixed in future a release.
If an odd-length array is passed in the routine will fail and return undef. Key and value will be trimmed of characters which do not match the format requirement.
edit_comment ($key, $value, [$num])
Edits a given comment field. The optional num field is used to differentiate between two comments with the same key. If no num is supplied, the first value--as reported by comment--is modified. If the key or num are invalid, nothing is done and undef is returned. If all goes well, the old value is returned.
delete_comment ($key, [$num])
Deletes the comment given by key. The optional num value can be used to specify which comment to delete, given duplicate keys. Leaving num out will result in only the first instance being deleted. Returns undef if key or num are invalid. If all goes well, the value of the deleted comment is returned.
clear_comments ([@keys])
Deletes all of the comments which match keys in the input array or all of the comments in the stream if called with no arguments. Returns undef if any key is invalid, although all keys in the input array up until that key will be cleared. Returns true otherwise.
write_vorbis ()
Write object to its backing file. No comment modifications will be seen in the file until this operation is performed.
path ()
Returns the path/filename of the file the object represents.
<<lessSYNOPSIS
use Ogg::Vorbis::Header;
my $ogg = Ogg::Vorbis::Header->new("song.ogg");
while (my ($k, $v) = each %{$ogg->info}) {
print "$k: $vn";
}
foreach my $com ($ogg->comment_tags) {
print "$com: $_n" foreach $ogg->comment($com);
}
$ogg->add_comments("good", "no", "ok", "yes");
$ogg->delete_comment("ok");
$ogg->write_vorbis;
This module presents an object-oriented interface to Ogg Vorbis files which allows user to view Vorbis info and comments and to modify or add comments.
CONSTRUCTORS
new ($filename)
Partially opens an Ogg Vorbis file to ensure it exists and is actually a Vorbis stream. It then closes the filehandle. It does not fill in the objects data fields. These fields will be automatically filled the first time they are accessed using the objects instance methods. Returns undef if there is a problem opening the file or the file is not valid Ogg Vorbis.
load ([$filename])
Opens an Ogg Vorbis file, reads its information, and then closes the filehandle. Returns undef if there is a problem opening the file or the file is not valid Ogg Vorbis. This is both a constructor and an instance method. The filename is required in constructor context, but should be left out when you call this as an instance method on an object. When called as an instance method, it (re)loads the info and comment data from the file. This can be used to reset the state of the object if write_vorbis hasnt been called. Note that the path parameter is ignored in instance context.
INSTANCE METHODS
These methods may be called on actual Header objects, using the -> operator or indirect objects as you prefer.
info ([$key])
Returns a reference to a hash containing format information about the Vorbis file. Hash fields are: version, channels, rate, bitrate_upper, bitrate_nominal, bitrate_lower, and bitrate_window, length. The bitrate_window value is currently unused by the vorbis codec. You can modify the referenced hash if you want, but I wouldnt suggest it.
The optional key parameter allows you to extract a single value from the internal hash (passed by value, not reference). If the key is invalid, undef is returned.
comment_tags ()
Returns an array holding the key values of each comment field. You can then use these values to access specific fields using comment. This may seem somewhat clunky at first but it will speed up most programs. In addition, it makes it easier to support the Ogg Vorbis comment standard which allows multiple fields with the same key.
comment ($key)
Returns a list of comments given a key. If the key does not exist, returns undef.
add_comments ($key, $value, [$key, $value, ...])
Adds comments with the given keys and values. Takes an array of alternating keys and values as parameters. Keys and values should be valid ascii in the range 0x20 - 0x7D and the key should exclude 0x3D (=). This is a subset of the Vorbis standard which allows this range for the key field and all of utf8 for the value field. This will be fixed in future a release.
If an odd-length array is passed in the routine will fail and return undef. Key and value will be trimmed of characters which do not match the format requirement.
edit_comment ($key, $value, [$num])
Edits a given comment field. The optional num field is used to differentiate between two comments with the same key. If no num is supplied, the first value--as reported by comment--is modified. If the key or num are invalid, nothing is done and undef is returned. If all goes well, the old value is returned.
delete_comment ($key, [$num])
Deletes the comment given by key. The optional num value can be used to specify which comment to delete, given duplicate keys. Leaving num out will result in only the first instance being deleted. Returns undef if key or num are invalid. If all goes well, the value of the deleted comment is returned.
clear_comments ([@keys])
Deletes all of the comments which match keys in the input array or all of the comments in the stream if called with no arguments. Returns undef if any key is invalid, although all keys in the input array up until that key will be cleared. Returns true otherwise.
write_vorbis ()
Write object to its backing file. No comment modifications will be seen in the file until this operation is performed.
path ()
Returns the path/filename of the file the object represents.
Download (0.032MB)
Added: 2007-05-12 License: Perl Artistic License Price:
901 downloads
Audio::TagLib::Vorbis::File 1.42
Audio::TagLib::Vorbis::File is an implementation of Ogg::File with Vorbis specific methods. more>>
Audio::TagLib::Vorbis::File is an implementation of Ogg::File with Vorbis specific methods.
SYNOPSIS
use Audio::TagLib::Vorbis::File;
my $i = Audio::TagLib::Vorbis::File->new("sample vorblis file.ogg");
print $i->tag()->comment()->toCString(), "n"; # got comment
This is the central class in the Ogg Vorbis metadata processing collection of classes. Its built upon Ogg::File which handles processing of the Ogg logical bitstream and breaking it down into pages which are handled by the codec implementations, in this case Vorbis specifically.
new(PV $file, BOOL $readProperties = TRUE, PV $propertiesStyle = "Average")
Contructs a Vorbis file from $file. If $readProperties is true the files audio properties will also be read using $propertiesStyle. If false, $propertiesStyle is ignored.
DESTROY()
Destroys this instance of the File.
Ogg::XiphComment tag()
Returns the XiphComment for this file. XiphComment implements the tag interface, so this serves as the reimplementation of Audio::TagLib::File::tag().
Properties audioProperties()
Returns the Vorbis::Properties for this file. If no audio properties were read then this will return undef.
BOOL save()
Saves the File.
<<lessSYNOPSIS
use Audio::TagLib::Vorbis::File;
my $i = Audio::TagLib::Vorbis::File->new("sample vorblis file.ogg");
print $i->tag()->comment()->toCString(), "n"; # got comment
This is the central class in the Ogg Vorbis metadata processing collection of classes. Its built upon Ogg::File which handles processing of the Ogg logical bitstream and breaking it down into pages which are handled by the codec implementations, in this case Vorbis specifically.
new(PV $file, BOOL $readProperties = TRUE, PV $propertiesStyle = "Average")
Contructs a Vorbis file from $file. If $readProperties is true the files audio properties will also be read using $propertiesStyle. If false, $propertiesStyle is ignored.
DESTROY()
Destroys this instance of the File.
Ogg::XiphComment tag()
Returns the XiphComment for this file. XiphComment implements the tag interface, so this serves as the reimplementation of Audio::TagLib::File::tag().
Properties audioProperties()
Returns the Vorbis::Properties for this file. If no audio properties were read then this will return undef.
BOOL save()
Saves the File.
Download (1.4MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1216 downloads
VorbisSPI for Linux 1.0.3
Java Service Provider Interface that adds OGG Vorbis audio format more>> VorbisSPI is a Java Service Provider Interface that adds OGG Vorbis audio format support to Java platform. It supports icecast streaming. It is based on JOrbis Java libraries.
VorbisSPI works nice for local ogg files but streaming support is partially implemented.Vorbis SPI needs JOrbis 0.0.8 (100% Java Ogg Vorbis decoder library). Obviously, JOrbis is not real OO so you will see that VorbisSPI source code is a mess and needs to be optimized.
Vorbis SPI also uses some useful Tritonus classes included in their MpegAudioSPI.
WAV/AU SPI conflict bug fixed.AudioInputStream.available() bug fixed.Custom information available through AudioFileFormat.getType() workaround :
VORBISxNominalBitRateInBpsxLengthInMilliSeconds (e.g. VORBISx128000x282267)
Note that this workaround will be removed in VorbisSPI 1.0. Another workaround
to pass extra parameters (Ogg comments, Bitrates, ... ) will be available and
compliant with JDK 1.5
Design improved :
tritonus_share.jar included (old Tritonus classes removed).
TDebug class used for debugging traces.
(Use -Dtritonus.TraceAudioFileReader=true to enable traces)
jUnit classes included.
JOrbis 0.0.14 included.
File handle lock bug fixed.
SPI compatibility bug fix.<<less
Download (202KB)
Added: 2009-04-06 License: Freeware Price: Free
201 downloads
JOrbis 0.0.16
JOrbis is a pure Java Ogg Vorbis decoder. more>>
JOrbis is a pure Java Ogg Vorbis decoder.
JOrbis accepts Ogg Vorbis bitstreams and decodes them to raw PCM.
Vorbis is a general purpose audio and music encoding format contemporary to MPEG-4s AAC and TwinVQ, the next generation beyond MPEG audio layer 3. Unlike the MPEG sponsored formats (and other proprietary formats such as RealAudio G2 and Windows flavor of the month), the Vorbis CODEC specification belongs to the public domain. All the technical details are published and documented, and any software entity may make full use of the format without royalty or patent concerns.
We sympathize the aim of the Ogg project. JOrbis is our contribution to the Ogg project in our style. We think the ubiquity of Vorbis decoder will leverage the popularity of Ogg Vorbis. We hope JOrbis will run on any platform, any devices and any web browsers, which support Java and every people will enjoy streamed musics without patent or royalty concerns about codec.
Main features:
- JOrbis is in pure Java.
- JOrbis will run on JDK1.0.* or higher.
- JOrbis is under LGPL.
- JOrbis includes the pure Java Ogg Vorbis player, JOrbisPlayer.
- To enjoy this player, your JVM must support Java Sound API. JOrbisPlayer is under GPL.
- JOrbisPlayer can play Ogg Vorbis live streams on UDP broadcast packets from JRoar.
- JOrbis includes very simple pure Java Ogg Vorbis comment editor, JOrbisComment.
Enhancements:
- added a property jorbis.player.playonstartup to JOrbisPlayer applet to play given stream at the start-up time. Refer to play/JOrbisPlayer.html.
<<lessJOrbis accepts Ogg Vorbis bitstreams and decodes them to raw PCM.
Vorbis is a general purpose audio and music encoding format contemporary to MPEG-4s AAC and TwinVQ, the next generation beyond MPEG audio layer 3. Unlike the MPEG sponsored formats (and other proprietary formats such as RealAudio G2 and Windows flavor of the month), the Vorbis CODEC specification belongs to the public domain. All the technical details are published and documented, and any software entity may make full use of the format without royalty or patent concerns.
We sympathize the aim of the Ogg project. JOrbis is our contribution to the Ogg project in our style. We think the ubiquity of Vorbis decoder will leverage the popularity of Ogg Vorbis. We hope JOrbis will run on any platform, any devices and any web browsers, which support Java and every people will enjoy streamed musics without patent or royalty concerns about codec.
Main features:
- JOrbis is in pure Java.
- JOrbis will run on JDK1.0.* or higher.
- JOrbis is under LGPL.
- JOrbis includes the pure Java Ogg Vorbis player, JOrbisPlayer.
- To enjoy this player, your JVM must support Java Sound API. JOrbisPlayer is under GPL.
- JOrbisPlayer can play Ogg Vorbis live streams on UDP broadcast packets from JRoar.
- JOrbis includes very simple pure Java Ogg Vorbis comment editor, JOrbisComment.
Enhancements:
- added a property jorbis.player.playonstartup to JOrbisPlayer applet to play given stream at the start-up time. Refer to play/JOrbisPlayer.html.
Download (0.31MB)
Added: 2005-10-14 License: LGPL (GNU Lesser General Public License) Price:
1474 downloads
OggCarton for Linux 1.0 Beta
CD ripper, database, and web server for Ogg Vorbis and MP3 Files more>>
OggCarton is a free, open source, home jukebox system that rips, indexes, and manages playlists for Ogg Vorbis music files.
Includes a web server for playing files on your home network. Compatible with existing MP3 files.
<<lessIncludes a web server for playing files on your home network. Compatible with existing MP3 files.
Download (770KB)
Added: 2009-04-18 License: Freeware Price:
188 downloads
OggCarton 1.0 Beta
OggCarton is a free, open source, home jukebox system that rips, indexes, and manages playlists for Ogg Vorbis music files. more>>
OggCarton is a free, open source, home jukebox system that rips, indexes, and manages playlists for Ogg Vorbis music files. OggCarton a web server for playing files on your home network. Compatible with existing MP3 files.
Beta source code and binary installers are available for Windows, Linux, and Mac OS X. Please be sure to report any bugs you may encounter. Though the web server includes access control, you may want to run the web server behind a firewall for an additional layer of security against unauthorized users accessing your music files.
Main features:
- Runs on Windows 2000/XP, Mac OS X, and Linux.
- Compatible with any MP3 or Ogg Vorbis files you may already have.
- Ripping to Ogg Vorbis format -- built-in ripper for Mac OS X and Windows, uses the cdparanoia ripper under Linux.
- Indexing --
- Automatically creates a keyword-searchable database of your Ogg Vorbis files.
- Built-in ID tagging through freedb.org.
- Database can import your existing Ogg Vorbis and MP3 files.
- Playing -- Uses a standard media player (such as WinAmp, iTunes, or XMMS) to play your Ogg Vorbis and MP3 files.
- Home networking -- has an integrated web server so you can play your files from another machine on your home network.
- Requires NO external database software.
- Requires NO external web server
OggCarton is not designed for illegal distribution of music, nor is it particularly suited for doing so (it is not a "file-sharing" or peer-to-peer program and there is no net-wide file search capability). Ripping your own CDs for your own personal use is legal in the United States (and most other countries). Distributing the files to other people is not. As the good folks at Apple say, "Dont steal music." You dont want the karma, and you especially dont want the RIAAs lawyers knocking at your door.
<<lessBeta source code and binary installers are available for Windows, Linux, and Mac OS X. Please be sure to report any bugs you may encounter. Though the web server includes access control, you may want to run the web server behind a firewall for an additional layer of security against unauthorized users accessing your music files.
Main features:
- Runs on Windows 2000/XP, Mac OS X, and Linux.
- Compatible with any MP3 or Ogg Vorbis files you may already have.
- Ripping to Ogg Vorbis format -- built-in ripper for Mac OS X and Windows, uses the cdparanoia ripper under Linux.
- Indexing --
- Automatically creates a keyword-searchable database of your Ogg Vorbis files.
- Built-in ID tagging through freedb.org.
- Database can import your existing Ogg Vorbis and MP3 files.
- Playing -- Uses a standard media player (such as WinAmp, iTunes, or XMMS) to play your Ogg Vorbis and MP3 files.
- Home networking -- has an integrated web server so you can play your files from another machine on your home network.
- Requires NO external database software.
- Requires NO external web server
OggCarton is not designed for illegal distribution of music, nor is it particularly suited for doing so (it is not a "file-sharing" or peer-to-peer program and there is no net-wide file search capability). Ripping your own CDs for your own personal use is legal in the United States (and most other countries). Distributing the files to other people is not. As the good folks at Apple say, "Dont steal music." You dont want the karma, and you especially dont want the RIAAs lawyers knocking at your door.
Download (0.77MB)
Added: 2006-03-01 License: GPL (GNU General Public License) Price:
1333 downloads
jOggPlayer 1.1.4
jOggPlayer is an open source platform independant Graphical Ogg Vorbis Player. more>>
jOggPlayer is an open source platform independant Graphical Ogg Vorbis Player. Developed using Java, so if your system has a Java2 VM you can use this app. You can now listen to your Oggs using an app that is NOT bloated. In fact this app/let should be able to run on a web page after you set your java security permissions.
I programmed this because I wanted a Java Graphical Vorbis Ogg player. I did it for myself and thought I would share it with you. My first priority was to get something that worked and looked reasonable. There are still some outstanding issues that I want to fix or work on. Dont expect a WinAMP style playlist, Playlists are harder to be made than the actual player.
Main features:
- plays files from your hard drive or
- plays songs from a URL
- plays streams from jRoar ogg streams (version 1.1 only)
- individual file play or multiple file looping play
- sequential or random play
- in applet volume control that goes to 11!
- visual song progress indicator
- playlist songs have a favourite selection box (version 1.1 only)
- displays ogg file information comments in a mouse-over popup window (song name, artist etc.)
- unlimitted size playlist that can transparently include files and/or URLs
- user selectable directory recursion on file load... just choose a dir from the load file dialog
- can load a file, URL or a whole directory of files on startup
- can save and load your playlist to a file
- can read your m3u playlist for ogg files
- user selectable fonts, colours, and background textures
- needs Java 1.2 or higher
- works behind a proxy/firewall (see the starting documentation)
- PLUS it sounds great!
<<lessI programmed this because I wanted a Java Graphical Vorbis Ogg player. I did it for myself and thought I would share it with you. My first priority was to get something that worked and looked reasonable. There are still some outstanding issues that I want to fix or work on. Dont expect a WinAMP style playlist, Playlists are harder to be made than the actual player.
Main features:
- plays files from your hard drive or
- plays songs from a URL
- plays streams from jRoar ogg streams (version 1.1 only)
- individual file play or multiple file looping play
- sequential or random play
- in applet volume control that goes to 11!
- visual song progress indicator
- playlist songs have a favourite selection box (version 1.1 only)
- displays ogg file information comments in a mouse-over popup window (song name, artist etc.)
- unlimitted size playlist that can transparently include files and/or URLs
- user selectable directory recursion on file load... just choose a dir from the load file dialog
- can load a file, URL or a whole directory of files on startup
- can save and load your playlist to a file
- can read your m3u playlist for ogg files
- user selectable fonts, colours, and background textures
- needs Java 1.2 or higher
- works behind a proxy/firewall (see the starting documentation)
- PLUS it sounds great!
Download (2.7MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1187 downloads
Dirogg 0.4
Dirogg is a simple script for migrating your entire music collection from mp3 to Ogg Vorbis (ogg). more>>
Dirogg is a simple script for migrating your entire music collection from mp3 to Ogg Vorbis (ogg).
dirogg is a recursing script, which means you run it at the top directory of your music collection, and it will take care of the rest. Enjoy!
Installation:
Just copy the "dirogg" script to a directory in your path, like /usr/local/bin.
To use, enter a directory in which you want to convert all mp3 files to ogg. It will then recurse into subdirectories and convert these files to ogg as well. Note that your mp3 files will not be removed unless you set so in.
Enhancements:
- Parallelizing support was added to process multiple files simultaneously.
<<lessdirogg is a recursing script, which means you run it at the top directory of your music collection, and it will take care of the rest. Enjoy!
Installation:
Just copy the "dirogg" script to a directory in your path, like /usr/local/bin.
To use, enter a directory in which you want to convert all mp3 files to ogg. It will then recurse into subdirectories and convert these files to ogg as well. Note that your mp3 files will not be removed unless you set so in.
Enhancements:
- Parallelizing support was added to process multiple files simultaneously.
Download (0.008MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
711 downloads
togg 0.2.0
togg is the simple Ogg Vorbis tag editor youve been looking for all these years. more>>
togg project is the simple Ogg Vorbis tag editor youve been looking for all these years. Its syntax is strongly modelled after id3, the command-line ID3 tag editor, in order to allow for easy mass-tagging of your audio files.
In order to work, it requires the vorbiscomment program from vorbis-tools (see http://www.xiph.org/downloads/) to be installed.
For syntax and usage information, please see the man page togg(1).
Enhancements:
- This release fixes a serious bug that would cause havoc when tagging multiple files.
<<lessIn order to work, it requires the vorbiscomment program from vorbis-tools (see http://www.xiph.org/downloads/) to be installed.
For syntax and usage information, please see the man page togg(1).
Enhancements:
- This release fixes a serious bug that would cause havoc when tagging multiple files.
Download (0.005MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
942 downloads
alogg 1.3.7
alogg is an Ogg/Vorbis addon library for Allegro. more>>
alogg is an Ogg/Vorbis addon library for Allegro.
alogg is a library which makes it easier to use Ogg/Vorbis streams with Allegro. It offers facilities to decode, stream, and encode Ogg/Vorbis streams, and integrates those facilities with Allegros datafile and sample loading routines.
alogg comes with a sample player, streamer, and encoder based on Allegros sound routines.
<<lessalogg is a library which makes it easier to use Ogg/Vorbis streams with Allegro. It offers facilities to decode, stream, and encode Ogg/Vorbis streams, and integrates those facilities with Allegros datafile and sample loading routines.
alogg comes with a sample player, streamer, and encoder based on Allegros sound routines.
Download (0.049MB)
Added: 2006-07-10 License: BSD License Price:
1207 downloads
songanalysis 0.4.0
songanalysis software analyzes a song in WAV, Ogg Vorbis, or MP3 format. more>>
songanalysis software analyzes a song in WAV, Ogg Vorbis, or MP3 format and produces an output consisting of the volume differential, the relative strength in each frequency band, and the tempo.
This is useful if you want to build something that lets you find out whether you have duplicate files, if you need to find out the tempo of your songs, or if you need to find similar songs according to how they sound.
<<lessThis is useful if you want to build something that lets you find out whether you have duplicate files, if you need to find out the tempo of your songs, or if you need to find similar songs according to how they sound.
Download (0.027MB)
Added: 2006-01-15 License: GPL (GNU General Public License) Price:
1379 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 ogg vorbis files 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