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

-- 
nautilus-script-audio-convert fails to pass metadata tag to/from mp3 files
https://bugs.launchpad.net/bugs/180451
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to