web-dev-qa-db-ja.com

AIFFをWAVにバッチ変換

WAVに変換する必要のあるAIFファイルが数十個あります。 Audacityで開いてWAVにエクスポートすることでいくつか変換しましたが、これは非常に遅いです。それらをすべてバッチで変換したいと思います。 OS Xでこれを行う方法はありますか?

9
Lily Hahn

シェルソリューションを利用したい場合は、ffmpegで実行できます。

  • オプション1: ffmpeg をダウンロードし、実行可能ファイルffmpegファイルを抽出します。実行可能パスにあるディレクトリにコピーします。例: /usr/bin

    Sudo cp ~/Downloads/ffmpeg /usr/bin/ffmpeg
    Sudo chmod +x /usr/bin/ffmpeg
    
  • オプション2:使用 Homebrew およびbrew install ffmpeg

次に、AIFファイルのあるフォルダーで次のコマンドを実行します。

for f in *.aiff; do ffmpeg -i "$f" "${f%.aiff}.wav"; done
12
slhck

自分で何かを手動で書く代わりに、iTunesを使用して2つのフォーマット間で変換できるはずです。

1.Open iTunes Preferences. 
Windows: Choose Edit > Preferences. 
Mac: Choose iTunes > Preferences.
2.Click the General button, then click the Importing Settings… button in the lower section of the window.
3.From the Import Using pop-up menu, choose the encoding format that you want to convert the song to, then click OK to save the settings.
4.Select one or more songs in your library, then from the File > Create New Version menu, choose one of the following (the menu item changes to show what's selected in your Importing preferences): 
Create MP3 version
Create AAC version
Create AIFF version
Create WAV version
Create Apple Lossless version

出典: http://support.Apple.com/kb/ht155

0
root