怎么把ALAC转换成FLAC?


9

我有一些要转换为FLAC(.flac)的ALAC文件(.m4a )。我怎样才能做到这一点?


我尝试了SoundConverter,但即使安装了gstreamer0.10-plugins-bad,也无法转换。
NN 2012年

Answers:


10
  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


将命令转换为未压缩的flac文件将是什么命令?
markrich 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.