Facebook
From Rodrigo, 1 Year ago, written in Python.
Embed
Download Paste or View Raw
Hits: 135
  1. from pytube import YouTube, Playlist
  2.  
  3. PLAYLIST_URL = input("Cole aqui a playlist que vocĂȘ deseja")
  4. playlist = Playlist(PLAYLIST_URL)
  5.  
  6. for url in playlist:
  7.     video = YouTube(url)
  8.     stream = video.streams.get_highest_resolution()
  9.     stream.download(output_path='playlist')

Replies to Pytube rss

Title Name Language When
Re: Pytube Sweet Peccary python 1 Year ago.