clovaai / voxceleb_trainer

In defence of metric learning for speaker recognition
MIT License
1.03k stars 273 forks source link

A bug in convert function path #165

Open griko opened 1 year ago

griko commented 1 year ago

There is a missing "*/" in line 138. Example of a '.mp4' path I get after running the extract: $ python dataprep.py --save_path ~/voxceleb_audio --extract ~/voxceleb_audio/voxceleb2/aac/id00016/rlCb70CV3YU/00138.m4a

Row 138 as it appears now: files = glob.glob('%s/voxceleb2/*/*/*.m4a'%args.save_path) Should be replaced with: files = glob.glob('%s/voxceleb2/*/*/*/*.m4a'%args.save_path)