Python PyTube로 YouTube 비디오 다운로드 Python에서 YouTube 비디오를 다운로드하는 방법.
여러분, 안녕하세요!
이 튜토리얼은 "파이썬에서 유튜브 비디오를 다운로드하는 방법.
_____________________________________________________
Pytube 라이브러리 다운로드
pip install pytube # python2
pip3 install pytube # python3
pip install pytube3 # if not work with pytube.
우선 Pytube 라이브러리를 가져와야 합니다.
import pytube
그런 다음 Youtube 비디오의 URL을 복사해야 합니다.
url = 'https://www.youtube.com/watch?v=4SFhwxzfXNc'
YouTube 기능에 URL 로드:
youtube = pytube.YouTube(url)
스트림 해상도 설정:
video = youtube.streams.first()
# or
video = youtube.streams.get_highest_resolution()
비디오 다운로드:
video.download() # In Same Folder
# or
video.download('/Downloads') # In Other Folder
비디오 정보 얻기:
video.title # Title
video.video_id # Id
video.age_restricted # Age
스트림 형식:
video.streams.all()
stream = video.streams.all()
for i in stream:
print(i)
예 1:
import pytube
url = 'https://www.youtube.com/watch?v=4SFhwxzfXNc'
youtube = pytube.YouTube(url)
video = youtube.streams.first()
video.download('../Video')
예 2:
import pytube
print("Give URL:")
url = input()
pytube.YouTube(url).streams.get_highest_resolution().download('../Video')
나는 당신이 그것을 좋아 바랍니다!
라이브러리 작성자: https://github.com/nficano/pytube
Reference
이 문제에 관하여(Python PyTube로 YouTube 비디오 다운로드 Python에서 YouTube 비디오를 다운로드하는 방법.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/seijind/how-to-download-youtube-videos-in-python-44od텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)