Main > Free Download Search >

Free ogg vorbis tag editor xmms 0.2 software for linux

ogg vorbis tag editor xmms 0.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3214
Ogg Vorbis Tag Editor for XMMS 0.2

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

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
<<less
Download (0.031MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
Ogg Vorbis 1.2.0

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.
<<less
Download (1.4MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
832 downloads
cutoggvorbis 0.2

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.
<<less
Download (MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
926 downloads
Ogg::Vorbis::Header 0.03

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.

<<less
Download (0.032MB)
Added: 2007-05-12 License: Perl Artistic License Price:
901 downloads
VorbisSPI for Linux 1.0.3

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
aio-xmms 0.2.0

aio-xmms 0.2.0


aio-xmms is an output plugin for XMMS which produces output for use with the libAIO library. more>>
aio-xmms is an output plugin for XMMS which produces output for use with the libAIO library.

<<less
Download (0.18MB)
Added: 2006-04-07 License: GPL (GNU General Public License) Price:
1297 downloads
Audio Tag Tool 0.12.3

Audio Tag Tool 0.12.3


Audio Tag Tool is a program to manage the tags in MP3 and Ogg Vorbis files. more>>
Audio Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files, commonly called tags. It is available under the GNU General Public Licence (GPL).
Please send me any comments or bugs you find (email at the bottom)
Tag Tool can be used to edit tags one by one, but the most useful features are the ability to easily tag or rename hundreds of files at once, in any desired format.
The interface is arranged into two sections, with the list of available files on the left and a set of tabs on the right.
Each tab corresponds to one of the main operations Audio Tag Tool can do:
Tag Editor
- Lets you edit the tags individually.
Tag Multiple Files
- Here you can set the tags of multiple files at once. The tag fields can be set to a fixed value, filled in automatically from the files name, or left alone.
Clear Tags
- Allows you to remove the tags from multiple files at once. For MP3 files it lets you choose to remove only ID3v1 or ID3v2 tags.
Move/Rename Multiple Files
- Here you can rename multiple files at once and/or organize them into directories. File names can be based on the contents of the tag.
Create Playlists
- Generates playlists. Playlists can be sorted by file name or by any tag field.
<<less
Download (0.30MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
972 downloads
Cortado 0.2.2

Cortado 0.2.2


Cortado Streaming applet is a Java applet which supports decoding of Ogg Vorbis, Ogg Theora, MJPEG codecs. more>>
Cortado Streaming applet is a Java applet which supports decoding of Ogg Vorbis, Ogg Theora, MJPEG and Smoke codecs directly in a browser window. Both audio and video are supported.
It contains:
- JST, a port of the GStreamer 0.10 design to Java
- jcraft, a copy of the JCraft JOgg/Jorbis code
- jheora, an implementation of Theora in Java
- codecs (currently only containing the Smoke codec, a variant on Jpeg)
- JST plugins for:
- HTTP source element
- Ogg and Multipart demuxers
- Theora, JPEG and Smoke video decoders
- Vorbis and MuLaw audio decoders
- Java 1.1 sun.audio API audio sink
- Java 1.4 javax.sound.sampled API audio sink
- examples
- applets
This release has support for:
- seeking in on-demand files
- the above-mentioned plugins
- basic HTTP authentication
- buffering
<<less
Download (0.25MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1099 downloads
orange amp xmms

orange amp xmms


orange amp xmms is rebuilt from scratch orange version of my black amp theme. more>>
orange amp xmms is rebuilt from scratch orange version of my black amp theme.

Now "xmms" button opens preferences for xmms {I meant to do that for black amp but forgot}.

<<less
Download (0.45MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1185 downloads
DeFX plug-in for XMMS 0.9.9

DeFX plug-in for XMMS 0.9.9


DeFX plug-in for XMMS is a multi-effects processor for XMMS. more>>
DeFX plug-in for XMMS is a multi-effects processor for XMMS.
DeFX is a plug-in module for XMMS. This is an audio player that supports many audio/multimedia formats (MP3, XM, S3M, IT, MIDI, MPG, AVI...) for the Linux platform.
XMMS provides an open architecture to add extra functionality through plug-in extensions. For example, You can add Input Plugins to support any format created or not yet created (SID, Ogg Vorbis), or you can add Visualization Plugins to add new ways of viewing music (more than osciloscopes or spectrum analysers). Also there are other types of plugins like Output, General and Effect Plugin.
DeFX belongs to this last type of plugin. With DeFX you can alter the sound that XMMS have processed, before it will be sent to your sound card, in other words, DeFX take its place between XMMS and your sound card.
Main features:
DeFX support 6 types of effects, grouped into 4 different modules.
- Karaoke : Removes the songs voices trying to preserve the bass and drums
- Panning : Smoothly selects between the two stereo channels
- Modulation : Three classical effects. Flange, phaser and chorus
- Reverberation : You can simulate your songs as being played in a huge room
<<less
Download (0.021MB)
Added: 2006-04-07 License: GPL (GNU General Public License) Price:
1306 downloads
TagReport 0.3

TagReport 0.3


TagReport is a nifty little project Ive been working on which is mostly a giant C++ exploration exercise. more>>
TagReport is a nifty little project Ive been working on which is mostly a giant C++ exploration exercise. The program is very simple at this stage; the indexer part is really an HTML output function right now, that mimics the "Winamp Generated Playlist" format commonly seen on the Internet.
Currently it supports 4 libraries with which it can process audio files; libFLAC for FLAC files, libvorbisfile for Ogg Vorbis audio, libid3tag for MP3 audio, and TagLib, an all-in-one library that supports both Ogg Vorbis and MP3 reading.
Enhancements:
- Many many many new things, hence the version leap
- FLAC support: started with forking metaflac, now uses libFLAC
- Support for using libvorbisfile and libid3tag to process MP3s when TagLib is not available
- Piles of code cleanups
- Fix a giant configure bug involving when we search for where the preprocessor is
- Add a man page in SGML. Should not have to be built by normal users, though.
- Move all tag/comment-retrieving code to ftfuncs.{cc,h}
- Move all HTML-related code to html.cc
<<less
Download (0.058MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1180 downloads
Kxmms 0.2

Kxmms 0.2


Kxmms is a KDE dock application for XMMS. more>>
KXMMS is a small dock app for XMMS.

It sits in the KDE dock and waits for you to click on some of those buttons, which are like those on XMMS.
<<less
Download (0.16MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1649 downloads
XChat-XMMS 0.7

XChat-XMMS 0.7


XChat-XMMS is an XChat script for controlling XMMS. more>>
XChat-XMMS is an XChat script for controlling XMMS. Use XMMS from within XChat, including remote control and having XChat interact with your IRC channel or /msg (including allowing remote users to browse your playlist)

It can send out messages to channels or other IRC users, and supports searching playlists with Perl regular expresions, DCC transfers, understands MP3 and Ogg-Vorbis tags, caches playlists for quick searches, and allows remote playlist browsing via /msg. It also supports auto- messages and auto-topics.

<<less
Download (0.013MB)
Added: 2006-04-11 License: Artistic License Price:
1298 downloads
KPlaylistCreator 0.8

KPlaylistCreator 0.8


KPlaylistCreator is a jukebox for KDE. more>>
KPlaylistCreator is a jukebox for KDE.
Main features:
- Multi playlists edition, KDE "IDEAL" interface
- Scan for mp3 and Ogg Vorbis files, located in various directories
- Creates a unique tree view : Genre / Artist / Album / Song title
- User rates mechanism
- User playlists manager
- Wizzard playlist creator
- Edit tags for both mp3 (ID3 V2) and ogg vorbis files
- Check directories for new and missing files automatically
- Send playlists to a directory, to XMMS or to K3B (cd burner )
- Built in player
- Displays and set the album art of mp3 files
- Create playlists from a virtual library
- Popup windows to indicate a new played song to the user
Enhancements:
- The library TagLib is needed to compile the KPlaylistCreator source archive.
<<less
Download (0.92MB)
Added: 2005-08-18 License: GPL (GNU General Public License) Price:
1527 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5