voxceleb_trainer
voxceleb_trainer copied to clipboard
A bug in convert function path
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)