Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

Is there a way to copy all tags from one FLAC file to another seamlessly using a command-line tool?

share|improve this question
Why is it that so much official documentation misses out on so friggin' many things that users are so very likely to need? Good question. – killermist Jun 21 '12 at 23:04

1 Answer

up vote 5 down vote accepted
metaflac --export-tags-to=- input.flac | \
metaflac --remove-all-tags --import-tags-from=- output.flac

Possibly needs the --no-utf8-convert option, too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.