14
Bash脚本使用FFmpeg将所有* flac转换为* .mp3?
我想将所有* .flac转换为特定文件夹中的* .mp3。 这是我尝试过的,但不起作用: # change to the home directory cd ~/music # convert all *.flac files ffmpeg -i *.flac -acodec libmp3lame *.mp3 # (optional: check whether there are any errors printed on the terminal) sleep 60 如何达到目标?