verbatone;241222 Wrote: > I have a library of flac files, and a transcoded set of ogg files. The > problem is if I change the flac file tags, which I'm constantly doing > cause my tagging is never perfect, I end up with inconsistent tagging > in my ogg library (compared to the flacs). > > Is there a utility for linux which can copy tags and apply them to > another set of files? I haven't been able to find anything yet. > > I do have a script which runs and converts any flac file that's newer > (or which doesn't exist) into an ogg file, but there are real negatives > to this approach. 1) It seems silly to re-encode when only the tags > have changed. 2) If I change the file name in the flac file, I get a > new and old version of the same file when I run my script again. My > script runs oggenc, but I don't see an option NOT to encode, but just > copy tags. > > Any ideas?
metaflac --export-tags-to=- a.flac | vorbiscomment -w -c - a.ogg should do the trick? -- tot Teemu ------------------------------------------------------------------------ tot's Profile: http://forums.slimdevices.com/member.php?userid=11843 View this thread: http://forums.slimdevices.com/showthread.php?t=40065 _______________________________________________ ripping mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/ripping
