Conversão em lote de AIFF para WAV

7

Eu tenho algumas dezenas de arquivos AIF que eu preciso converter em WAV. Convertei alguns abrindo-os no Audacity e exportando-os para WAV, mas isso é muito lento. Eu gostaria de convertê-los todos em lote. Existe uma maneira de fazer isso no OS X?

    
por Lily Hahn 13.12.2013 / 14:34

2 respostas

9

Se você quiser uma solução shell, pode fazê-lo com ffmpeg .

  • Opção 1: faça o download de ffmpeg e extraia o arquivo executável ffmpeg . Copie-o para um diretório que esteja no caminho do seu executável, por exemplo, /usr/bin .

    sudo cp ~/Downloads/ffmpeg /usr/bin/ffmpeg
    sudo chmod +x /usr/bin/ffmpeg
    
  • Opção 2: use Homebrew e brew install ffmpeg .

Agora, na pasta com os arquivos AIF, execute isto:

for f in *.aiff; do ffmpeg -i "$f" "${f%.aiff}.wav"; done
    
por 13.12.2013 / 15:12
0

Você deve conseguir converter os dois formatos usando o iTunes em vez de escrever algo manualmente:

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

Fonte: link

    
por 13.12.2013 / 14:40

Tags