ubuntu 安装ffmpeg , 用于将.flac文件转成.wav文件,进而用于deep speaker 网络训练使用

ubuntu 安装ffmpeg , 用于将.flac文件转成.wav文件,进而用于deep speaker 网络训练使用

第一步:添加源
sudo add-apt-repository ppa:kirillshkrogalev/ffmpeg-next

第二步:更新源
sudo apt-get update

第三步:下载安装
sudo apt-get install ffmpeg

第四步:查看是否安装成功
ffmpeg -version

第五步:给.sh文件添加x执行权限
chmod u+x convert_flac_2_wav.sh

第六步:进入.sh所在的目录,直接./运行就可以了
./convert_flac_2_wav.sh

# this is what convert_flac_2_wav.sh is .这就是convert_flac_2_wav.sh文件的内容
#!/bin/bash

folder=LibriSpeech

for file in $(find "$folder" -type f -iname "*.flac")
do
    name=$(basename "$file" .flac)
    dir=$(dirname "$file")
    echo ffmpeg -loglevel panic -y -i "$file" "$dir"/"$name".wav
    ffmpeg -loglevel panic -y -i $file $dir/$name.wav
done

# find $folder -name "*.flac" -exec rm -f {} \;

# https://unix.stackexchange.com/questions/341436/a-script-to-convert-flac-files-to-wav-is-not-working/341441
1.png

2.png
3.png

6.png
4.png

成功将.flac文件转成了.wav文件

5.png

你可能感兴趣的:(ubuntu 安装ffmpeg , 用于将.flac文件转成.wav文件,进而用于deep speaker 网络训练使用)