jackpot@lemmy.ml to Asklemmy@lemmy.ml · 9 months agois there any way to losslessly convert a whole recursive file directory of .m4a files to .opusmessage-squaremessage-square19fedilinkarrow-up133arrow-down14file-text
arrow-up129arrow-down1message-squareis there any way to losslessly convert a whole recursive file directory of .m4a files to .opusjackpot@lemmy.ml to Asklemmy@lemmy.ml · 9 months agomessage-square19fedilinkfile-text
minus-squarezurohki@aussie.zonelinkfedilinkEnglisharrow-up5·9 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
minus-squarerollingflower@lemmy.kde.sociallinkfedilinkarrow-up3·9 months agoThanks, learning is always good, changed it
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