@[email protected] to [email protected] • 8 months agois there any way to losslessly convert a whole recursive file directory of .m4a files to .opusmessage-square13fedilinkarrow-up126arrow-down12file-text
arrow-up124arrow-down1message-squareis there any way to losslessly convert a whole recursive file directory of .m4a files to .opus@[email protected] to [email protected] • 8 months agomessage-square13fedilinkfile-text
minus-square@[email protected]linkfedilinkEnglish4•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