Not working
#3
by
MaulikMadhavi
- opened
Hi
Thank you for checking the app. Currently, YouTube seems to be blocking the requests to download audio.
So, please try this app in this colab notebook - https://colab.research.google.com/drive/1CTRog4BQJqeY8_-5sxAYzmc0c9z4xV6z?usp=sharing
just remove mp3=True
in
out_file = audio_stream.download(mp3=True)
I fixed with
import tempfile
...
temp_dir = tempfile.gettempdir()
out_file = audio_stream.download(output_path=temp_dir)