728x90
반응형
1. pytube 설치하기
python3 -m pip install --upgrade "git+https://github.com/nficano/pytube.git"
2. 코드 실행하기
참고로 유튜브 링크는 원하는 유튜브 영상을 켠 뒤 주소 창에서 긁어오면 된다.
import os
import pytube # pip install pytube
from pytube.cli import on_progress
url = "유튜브 링크"
yt = pytube.YouTube(url, on_progress_callback=on_progress)
print(yt.streams)
save_dir = "./" # 저장경로
yt.streams.filter(progressive=True, file_extension="mp4")\
.order_by("resolution")\
.desc()\
.first()\
.download(save_dir)
728x90
반응형
'Programming > Python' 카테고리의 다른 글
[Python] Ubuntu 18.04 에서 Python3.5 빌드하여 설치하기 (2) | 2021.02.17 |
---|---|
[Python] argparse(Argument Parser) 에서 boolean 값 받기 (0) | 2021.01.14 |
[Python] GPU 지정하여 Python 코드 실행하기 (0) | 2020.11.20 |
[Python] 파일명 추출, 디렉토리 경로 추출 (3) | 2020.11.20 |
[Python] Python Schedule 모듈 이용하여 원하는 시간대에 프로그램 실행 시키기 (5) | 2020.11.02 |