WAVに変換する必要のあるAIFファイルが数十個あります。 Audacityで開いてWAVにエクスポートすることでいくつか変換しましたが、これは非常に遅いです。それらをすべてバッチで変換したいと思います。 OS Xでこれを行う方法はありますか?
シェルソリューションを利用したい場合は、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
自分で何かを手動で書く代わりに、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