This repository has been archived on 2026-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2023-03-15 12:16:21 +09:00

10 lines
164 B
Bash
Executable File

dl_dir=/DB/LibriSpeech_tar/vox
for dest in "test-clean"; do
for spk in $dl_dir/$dest/*; do
spk_id=${spk#*$dest\/}
echo $spk_id
./test.sh $spk_id
done
done