jackpot@lemmy.ml to Asklemmy@lemmy.ml · 7 months agois there any way to losslessly convert a whole recursive file directory of .m4a files to .opusmessage-squaremessage-square22fedilinkarrow-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 · 7 months agomessage-square22fedilinkfile-text
minus-squarezurohki@aussie.zonelinkfedilinkEnglisharrow-up5·7 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·7 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