Converter tudo encontrado m4a para mp3

3

Eu estou tentando converter todos os m4a para mp3 meu código se parece com isso:

find . -name '*.m4a' -print0 | while read -d '' -r file; do
  ffmpeg -i "$file" -n -acodec libmp3lame -ab 128k "${file%.m4a}.mp3";
done

mas só funciona para o primeiro arquivo mp3 para o próximo erro de exibição:

Parse error, at least 3 arguments were expected, only 1 given in string '<All files in one line>'

Enter command: <target>|all <time>|-1 <command>[ <argument>]

Os arquivos contêm espaços comerciais e parênteses.

    
por jcubic 20.04.2018 / 14:28

3 respostas

4

When reading a file line by line, if a command inside the loop also reads stdin, it can exhaust the input file.

Continue lendo aqui: Bash FAQ 89

O código deve ficar assim:

find . -name '*.m4a' -print0 | while read -d '' -r file; do
  ffmpeg -i "$file" -n -acodec libmp3lame -ab 128k "${file%.m4a}.mp3" < /dev/null
done
    
por 20.04.2018 / 16:00
0

Sua pergunta é feita sobre a conversão de m4a para mp3.

Este é um script bash que tenho usado por um tempo.

Ajuste o comando avconv para atender às suas necessidades.

#!/bin/bash
## jc 2016
## convert [m4a mp3 wma] to mp3 128k
## [-vn] disable video recording
##
## avconv with lame mp3 plugin
## [-acodec libmp3lame]
##
## 192 k constant bitrate
## [-ab 192k]
## [-ab 128k]
##
## 44.1kHz sampling rate
## [-ar 44100]
##
## 2 channel audio
## [-ac 2]
##

##  force the shell to do a case insensitive comparison
shopt -s nocasematch

working_directory="./mp3_converted"
# check if dir exist
if [ ! -d "$working_directory" ];
then
  # dir does not exist
      echo "convert directory does not exist $working_directory..."
  'mkdir -p "$working_directory"'
       echo "convert directory created $working_directory..."
fi

COUNT=0

for i in *; do

  case $i in
    *.mp3)
      avconv -analyzeduration 999999999 -map_metadata 0 -i "$i" -vn -acodec libmp3lame -ac 2 -ab 128k -ar 44100 "$working_directory/'basename "$i" .mp3'.mp3"
      echo $i
      ;;
    *.m4a)
      ##avconv -analyzeduration 999999999 -map_metadata 0 -i "$i" -vn -acodec libmp3lame -ac 2 -ab 128k -ar 44100 "$working_directory/'basename "$i" .m4a'.mp3"
      # adjusted for ffmpeg to test. 
      ffmpeg -i "$i" -n -acodec libmp3lame -ab 128k "$working_directory/'basename "$i" .m4a'.mp3" 
      echo $i
      ;;
    *.wma)
      avconv -analyzeduration 999999999 -map_metadata 0 -i "$i" -vn -acodec libmp3lame -ac 2 -ab 128k -ar 44100 "$working_directory/'basename "$i" .wma'.mp3"
      echo $i
      ;;
    *)
      echo "other"
      ;;
  esac

done

## back to normal comparison
shopt -u nocasematch
exit 0
    
por 20.04.2018 / 18:03
0

Por que não usar apenas o argumento -exec de find ? Então, find -iname '*.m4a' -exec ffmpeg -i {} -n -acodec libmp3lame -ab 128k {}.mp3 \; e executar um comando rename depois?

    
por 21.04.2018 / 13:16

Tags