WMA and OGG -Tag Writer + DELPHI

Started by Chris, 29 Sep '03 - 23:54

Chris

Hi i have a lot searching but til now I have not found any Comps to WRITE Tags to a WMA or OGG-File.
Please have anybody seen any Comp for DElphi or a dll what can do that ??
Greets Chris

Sebastian_Mares

http://sourceforge.net/projects/mac/

Download the source code and unpack it (using a program capabile of handling RAR files). You will find some files there and two of them are used for Ogg Vorbis (reading and writing tags, as well as detecting various information) and WMA (reading tags and advanced information - no writing supported).

Sebastian_Mares

There was a command line utility from Microsoft for editing WMA tags, but I can't find it anymore. I will post the link once I have it again. :)


Sebastian_Mares

OK, I have uploaded that command line tool to my server: http://www.maresweb.net/wmainfo.exe

Here is the usage:
wmainfo.exe "Some File.wma" "Album" "Genre" "Copyright" "Author" "Track Number" "Track Name" "Year" "Description" "MCDI"
Let us say you want to tag the file "Hey You.wma" with following information:
Album = The Wall (Disc 2)
Genre = Progressive
Copyright =
Author = Pink Floyd
Track Number = 1
Track Name = Hey You
Year = 1979
Description =
MCDI =
You would use the following line:
wmainfo.exe "Hey You.wma" "The Wall (Disc 2)" "Progressive" "" "Pink Floyd" "1" "Hey You" "1979" "" ""You could also use * to skip a field name (or preserve the actual value).

If you want to view the tag of "Hey You.wma", you would use:
wmainfo.exe "Hey You.wma" show
PS: I don't know if the program supports UNICODE characters, such as é, î, ü...

ohadsc

#5
For the benefit of future Googlers (since the above tool is no longer available)...
I wrote a simple command-line tagger based on TagLib#
It supports wma/asf among other formats

Tagger#
https://sourceforge.net/projects/taggersharp/

Wishmaster

AudioGenie is a fast Library with many functions to analyze audiofiles (like Bitrate, Samplerate, Frames, Duration, Version-Number, etc) and for tagging. This DLL can read and modify audio tags like id3v1, id3v2, ape, lyrics and mp4, ogg, flac & more.

http://sourceforge.net/projects/audiogenie/

Silhwan

If you want to use Delphi native code, please search "TWMAFile2" for WMA Tag writer, and "TOggVorbis" for OGG Tag Writer at Torry's Delphi pages (http://www.torry.net/).
Those are written in Delphi code and do not require any external library.
You can get various information of WMA file and can save tag data, picture & lyrics data with "TWMAFile2", which is written by me.