Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

download youtube video

from pytube import YouTube 
  
# where to save 
SAVE_PATH = "E:/" #to_do 
  
# link of the video to be downloaded 
# opening the file 
link=open('links_file.txt','r') 
  
for i in link: 
    try: 
          
        # object creation using YouTube
        # which was imported in the beginning 
        yt = YouTube(i) 
    except: 
          
        #to handle exception
        print("Connection Error")  
      
    #filters out all the files with "mp4" extension 
    mp4files = yt.filter('mp4') 
      
    # get the video with the extension and
    # resolution passed in the get() function 
    d_video = yt.get(mp4files[-1].extension,mp4files[-1].resolution) 
    try: 
          
        # downloading the video 
        d_video.download(SAVE_PATH) 
    except: 
        print("Some Error!") 
print('Task Completed!')
Source by # #
 
PREVIOUS NEXT
Tagged: #download #youtube #video
ADD COMMENT
Topic
Name
8+4 =