You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: