Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
hello2mao
/
Chinese_Audio_Resource
like
10
Tasks:
Text-to-Speech
Audio Classification
Audio-to-Audio
Modalities:
Audio
Formats:
soundfolder
Languages:
Chinese
Size:
< 1K
Libraries:
Datasets
Croissant
License:
openrail
Dataset card
Data Studio
Files
Files and versions
xet
Community
2
17a8b60
Chinese_Audio_Resource
/
tools
/
fix_wav_name.sh
hello2mao
update
4374767
over 2 years ago
raw
Copy download link
history
blame
198 Bytes
#!/bin/sh
oldsuffix=
"WAV"
newsuffix=
"wav"
dir
=$(
eval
pwd
)
for
file
in
$(
ls
$dir
| grep .
${oldsuffix}
)
do
name=$(
ls
${file}
|
cut
-d. -f1)
mv
$file
${name}
.
${newsuffix}
done