(Feb-11-2020, 11:14 AM)Larz60+ Wrote: the only thing I can advise would be to download the source of pytube and examine how they wrote the package. That will help you formulate your own package. Github source: https://github.com/hbmartin/pytube3
Thank you. But can we deal with blob objects (src="blob:https://www.youtube.com/f2e24726-595a-46d9-92af-9282412326b4">) in python?
(Feb-11-2020, 11:14 AM)Larz60+ Wrote: the only thing I can advise would be to download the source of pytube and examine how they wrote the package. That will help you formulate your own package. Github source: https://github.com/hbmartin/pytube3
from pytube import YouTube
yt = YouTube(url='https://www.youtube.com/watch?v=jH9Ln-LoneA')
print(yt.title)
After running this I am getting this error:
KeyError: 'url_encoded_fmt_stream_map'