Thanks for the great repo! I've noticed an issue with the video download process: the extension seems to be hardcoded as .m4a when moving the downloaded video file. The line:
shutil.move(os.path.join(f'temps/id_{ids}', 'audio.m4a'), os.path.join(outpath, filename))
should be updated to use the correct file extension, which should be either .mp4 or another extension provided globally.
Thanks for the great repo! I've noticed an issue with the video download process: the extension seems to be hardcoded as .m4a when moving the downloaded video file. The line:
shutil.move(os.path.join(f'temps/id_{ids}', 'audio.m4a'), os.path.join(outpath, filename))should be updated to use the correct file extension, which should be either .mp4 or another extension provided globally.