Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python youtube video downloader

from pytube import YouTube

#where to save
SAVE_PATH = "d:/" #to_do

#link of the video to be downloaded
link=["https://www.youtube.com/watch?v=xWOoBJUqlbI",
	"https://www.youtube.com/watch?v=xWOoBJUqlbI"
	]

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: #python #youtube #video #downloader
ADD COMMENT
Topic
Name
1+7 =