Datasets:

Formats:
json
Libraries:
Datasets
pandas
License:
a43992899's picture
Add files using upload-large-folder tool
f14f466 verified
#!/bin/bash -
#title :conver_audio.sh
#description :This script will convert all audio files of the dataset from mp3 to wav.
#author :richard vogl ([email protected])
#date :2015 07 17
#version :0.1
#usage :bash conver_audio.sh
#notes :uses sox
#bash_version :3.2.57(1)-release
#==============================================================================
for file in ./audio/*.mp3; do
printf "Converting : ${file} ..."
sox $file ${file%mp3}wav rate 44100 gain -0.1 remix -;
printf " done!\n"
done;