All this talk about vorbis comments has made me think. Would it be possible to create backups of the Vorbis comments for my vorbis collection (currently about 1850 files) ? Instead of having to make sure I enter the correct details into CDex (saving in to cdplayer.ini & backing up that), or if I have comments in the Vorbis files that aren't stored in cdplayer.ini, such as the tags discussed in the current "Vorbis comment question" thread, I was thinking that it would be usefull to have such a tool that reads through the collection, backsup the comments, so if I lose them through system fkukup (I am using win98 after all :-P), through viral attack, or because I simply re-encode the collection with a newer version of the Vorbis codec. Any thoughts ? <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Hello Martin, Saturday, March 1, 2003, 8:05:10 AM, you wrote: MB> All this talk about vorbis comments has made me think. MB> Would it be possible to create backups of the Vorbis comments for my vorbis collection (currently about 1850 files) ? MB> Instead of having to make sure I enter the correct details into CDex (saving in to cdplayer.ini & backing up that), or if I have comments in the Vorbis files that aren't stored in cdplayer.ini, MB> such as the tags discussed in the current "Vorbis comment question" thread, I was thinking that it would be usefull to have such a tool that reads through the collection, backsup the comments, so MB> if I lose them through system fkukup (I am using win98 after all :-P), through viral attack, or because I simply re-encode the collection with a newer version of the Vorbis codec. MB> Any thoughts ? Pretty good idea, I like it. I donĀ“t think any tools for this exist. Probably one would have to be written for the job. I may be wrong, though. Does anyone know of any program that does this? -- Best regards, Alex mailto:ogg@iribarren.com --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
> Would it be possible to create backups of the Vorbis comments for my vorbis > collection (currently about 1850 files) ? > > Any thoughts ?In Python this thing would be quite easy to do. Yesterday I found an ID3 thing, which supposedly supports both MP3 and Ogg Vorbis tags: http://id3-py.sf.net/. What would be even cooler is if it were possible to do auto post-tagging. Using cddb-py (http://cddb-py.sf.net/) it might be quite possible... bye, Kasper <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
> Would it be possible to create backups of the Vorbis comments for my vorbis > collection (currently about 1850 files) ? > > Any thoughts ?In Python this thing would be quite easy to do. Yesterday I found an ID3 thing, which supposedly supports both MP3 and Ogg Vorbis tags: http://id3-py.sf.net/. What would be even cooler is if it were possible to do auto post-tagging. Using cddb-py (http://cddb-py.sf.net/) it might be quite possible... bye, Kasper <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
K>Yesterday I found an ID3 thing, which supposedly supports both MP3 and Ogg K>Vorbis tags: http://id3-py.sf.net/. quote from site "This module allows one to read and manipulate so-called ID3 informational tags on MP3 files through an object-oriented Python interface" only mention of Vorbis is "dictionary style" thing "compatible with ogg.vorbis module". I presume this is only for Vorbis, and i don't have the time to try it out myself. K>What would be even cooler is if it were possible to do auto post-tagging. K>Using cddb-py (http://cddb-py.sf.net/) it might be quite possible... how? to quote the site: "This is actually a set of three modules to access the CDDB online database of audio CD track titles and information" <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Martin Blackwell (djdij@handbags.freeserve.co.uk) wrote:> Would it be possible to create backups of the Vorbis comments for my vorbis > collection (currently about 1850 files) ?find . -name '*.ogg' -print | while read ogg; do echo "== $ogg" vorbiscomment -l "$ogg" done > some.file That will, of course, break if you have newlines in your filenames.> (I am using win98 after allUh... well... there's always Cygwin.... -- Greg Wooledge | "Truth belongs to everybody." greg@wooledge.org | - The Red Hot Chili Peppers http://wooledge.org/~greg/ | -------------- next part -------------- A non-text attachment was scrubbed... Name: part Type: application/pgp-signature Size: 188 bytes Desc: not available Url : http://lists.xiph.org/pipermail/vorbis/attachments/20030301/f2b7a714/part-0001.pgp
On Sat, Mar 01, 2003 at 07:05:10AM -0000, Martin Blackwell wrote:> All this talk about vorbis comments has made me think. > Would it be possible to create backups of the Vorbis comments for my > vorbis collection (currently about 1850 files) ? > Instead of having to make sure I enter the correct details into CDex > (saving in to cdplayer.ini & backing up that), or if I have comments in > the Vorbis files that aren't stored in cdplayer.ini, such as the tags > discussed in the current "Vorbis comment question" thread, I was thinking > that it would be usefull to have such a tool that reads through the > collection, backsup the comments, so if I lose them through system fkukup > (I am using win98 after all :-P), through viral attack, or because I > simply re-encode the collection with a newer version of the Vorbis codec.I've been considering making a CDDB alternative that handles the Ogg Tag Recommendations natively; would this fit your needs? I am working fairly heavily on Xouvert, but this shouldn't take more than a week. All contents would be under the GFDL of course, so there'd be no Gracenote scenarios. Jonathan -- It's not true unless it makes you laugh, but you don't understand it until it makes you weep. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Geek House Productions, Ltd. Providing Unix & Internet Contracting and Consulting, QA Testing, Technical Documentation, Systems Design & Implementation, General Programming, E-commerce, Web & Mail Services since 1998 Phone: 604-435-1205 Email: djw@reactor-core.org Webpage: http://reactor-core.org Address: 2459 E 41st Ave, Vancouver, BC V5R2W2 -------------- next part -------------- A non-text attachment was scrubbed... Name: part Type: application/pgp-signature Size: 308 bytes Desc: not available Url : http://lists.xiph.org/pipermail/vorbis/attachments/20030703/99a18d52/part-0001.pgp