I was trying to download videos from YouTube the below code. But it gives me .3gpp file format which is very low resolution. How can I make it mp4 or the best resolution?
Code:
from pytube import Playlist
p = Playlist('https://www.youtube.com/watch?v=cSKGa_7XJkg&list=PLoGtT1rYE-El8eTpyXUzeFHbRUDUJN1Ag')
print(f'Downloading: {p.title}')
for video in p.videos:
video.streams.first().download()