如何将 ALAC 转换为 FLAC?

如何将 ALAC 转换为 FLAC?

我有一些ALAC我想要转换为的文件(.m4a)弹性计算(.flac)。我该怎么做?

答案1

  1. 安装ffmpeg

    sudo apt-get install ffmpeg
    
  2. 可以通过命令将文件从 ALAC 转换为 FLAC ffmpeg -i audio.m4a -acodec flac audio.flac。要执行此操作,请转到文件目录(cd path)并发出以下命令:

    for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.flac"; done
    
  3. (选修的)

请参阅https://superuser.com/a/329278/87552http://ubuntuforums.org/showthread.php?t=1500430

相关内容