Help
Renaming
Revision as of 20:05, 11 December 2020 by Yug (talk | contribs) (→Renaming using the file name's fields)
Revision as of 20:05, 11 December 2020 by Yug (talk | contribs) (→Renaming using the file name's fields)
Renaming using the file name's fields
Given files names such as ./LL-{codesLang}-{speaker}-{word}.wav
such as ./LL-Q150_(fra)-Tsaag_Valren-zèbre.wav
:
mkdir -p ./new # create dir
for file in ./LL-*.wav;
do
isolang=$(basename "$file" | cut -d- -f2 | cut -d_ -f2 | tr -d "()"); # using "-" as split, select field 4 : "zèbre"
key=$(basename "$file" | cut -d- -f4 | tr -d ".wav"); # using "-" as split, select field 4 : "zèbre"
cp "$file" ./new/"$isolang"-"$key".wav; # ./new/cmn-zèbre.wav
done
Renaming using metadata
- IMPORTANT: This example process a SWAC Recorder's file. LinguaLibre's files metadata are in the cloud : on the audio's, speakers and languages pages.
Dependencies
- Warning :
avconv
have been removed from Ubuntu packages since 18.04. Use ffmpeg instead.
sudo apt-get install lame avconv # examine audio file's properties.
avconv's output
avconv -i ./cmn-jiāoliú.flac 2>&1 # print out metadata of $file, for some formats only
ffmpeg version 2.8.14-0ubuntu0.16.04.1 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.9) 20160609
[...]
Input #0, flac, from './cmn-jiāoliú.flac':
Metadata:
TITLE : 交流
LICENSE : Creative Commons BY-SA 3.0 U.S
COPYRIGHT : (c) 2009 Yue Tan
ARTIST : Tan
DATE : 2009-07-08
GENRE : Speech
SWAC_LANG : cmn
SWAC_TEXT : 交流
SWAC_ALPHAIDX : jiāoliú
SWAC_SPEAK_NAME : Tan
SWAC_SPEAK_GENDER: F
SWAC_SPEAK_BIRTH_YEAR: 1978
SWAC_SPEAK_LANG : zho
SWAC_SPEAK_LANG_REGION: Liaoning
SWAC_SPEAK_LIV_COUNTRY: FR
SWAC_SPEAK_LIV_TOWN: Caen
SWAC_PRON_PHON : jiāoliú
SWAC_COLL_SECTION: HSK niveau II
SWAC_COLL_LICENSE: Creative Commons BY-SA 3.0 U.S
SWAC_COLL_COPYRIGHT: (c) 2009 Yue Tan
SWAC_TECH_DATE : 2009-07-08
SWAC_TECH_SOFT : Shtooka Recorder/1.3
Duration: 00:00:01.40, start: 0.000000, bitrate: 447 kb/s
Stream #0:0: Audio: flac, 44100 Hz, mono, s16
Renaming
mkdir -p ./new # create dir
for file in ./cmn-*.flac;
do
key=$(avconv -i "$file" 2>&1 | sed -ne 's/.*SWAC_TEXT *: //p') # print metadata, assign SWAC_TEXT's value to variable.
cp "$file" ./cmn-$key.flac # ./cmn-交流.flac
done