Comment 4 for bug 180451

Revision history for this message
rogue_ronin (rogue-ronin) wrote :

id3tag works, as of Xubuntu 8.10.

But to get the metadata from ogg, you must change

314 artist_name=`ogginfo "$1" | grep artist | cut -d \= -f 2`
315 album_name=`ogginfo "$1" | grep album | cut -d \= -f 2`
316 song_name=`ogginfo "$1" | grep title | cut -d \= -f 2`
317 track_number=`ogginfo "$1" | grep tracknumber | cut -d \= -f 2`

to

314 artist_name=`ogginfo "$1" | grep ARTIST | cut -d \= -f 2`
315 album_name=`ogginfo "$1" | grep " ALBUM" | cut -d \= -f 2`
316 song_name=`ogginfo "$1" | grep TITLE | cut -d \= -f 2`
317 track_number=`ogginfo "$1" | grep TRACKNUMBER | cut -d \= -f 2`

where line 315 must have a tab preceding ALBUM. (Otherwise it grabs a bunch of replaygain data, too.)

m a r