voxceleb_trainer icon indicating copy to clipboard operation
voxceleb_trainer copied to clipboard

A bug in convert function path

Open griko opened this issue 2 years ago • 0 comments

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)

griko avatar Dec 26 '22 10:12 griko