Having multiple transcoded mp3 versions, and keep it synced #6264
Unanswered
tomribbens
asked this question in
Q&A
Replies: 1 comment
|
The convert plugin can have multiple named formats even when they all use the plugins: convert
convert:
refresh: yes
formats:
mp3-320:
command: ffmpeg -i $source -y -vn -codec:a libmp3lame -b:a 320k $dest
extension: mp3
mp3-v0:
command: ffmpeg -i $source -y -vn -codec:a libmp3lame -q:a 0 $dest
extension: mp3
mp3-v2:
command: ffmpeg -i $source -y -vn -codec:a libmp3lame -q:a 2 $dest
extension: mp3Then export each tree separately: beet convert -f mp3-320 -d /music/mp3-320
beet convert -f mp3-v0 -d /music/mp3-v0
beet convert -f mp3-v2 -d /music/mp3-v2After I would keep the FLAC database as the canonical library and treat all three MP3 trees as reproducible exports; three separately managed beets libraries would make synchronization harder. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'd like to have the following setup, but can't seem to figure out how to achieve it:
I mainly have FLAC copies of my music. I'd like it to maintain three different mp3 copies of that music: 320kbps, V0 and V2, all in seperate trees.
When something gets updated on musicbrainz, and it gets propagated to my own library (through mbsync for example), I'd like the converted copies also to get their metadata updated.
I know of beets-alternatives, but unless I don't understand how to configure it and the convert plugin, it's only possible to have a single convert command for mp3, and so I can't get the three different versions easily?
All reactions