@jackpot@lemmy.ml to Asklemmy@lemmy.ml • 8 months agois there any way to losslessly convert a whole recursive file directory of .m4a files to .opusmessage-square20fedilinkarrow-up133arrow-down14file-text
arrow-up129arrow-down1message-squareis there any way to losslessly convert a whole recursive file directory of .m4a files to .opus@jackpot@lemmy.ml to Asklemmy@lemmy.ml • 8 months agomessage-square20fedilinkfile-text
minus-square@zurohki@aussie.zonelinkfedilinkEnglish5•8 months agoGNU Parallel works well for this kind of thing. A lot of audio stuff is single threaded, so unlike video transcoding running multiple conversions simultaneously is a useful thing to do. The command is simpler, too: parallel ffmpeg -i {} {.}.opus ::: *.m4a
GNU Parallel works well for this kind of thing. A lot of audio stuff is single threaded, so unlike video transcoding running multiple conversions simultaneously is a useful thing to do. The command is simpler, too:
Thanks, learning is always good, changed it