기타

ubuntu22.04 에 yt-dlp 설치

Jack Moon 2023. 2. 20. 11:57

- 배경

youtube-dl 을 사용하여 유투브 자막을 다운 받았는데

오늘 출근 후 실행 해 보니 Error 가 뜬다.

DownloadError: ERROR: Unable to extract uploader id; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see  https://yt-dl.org/update  on how to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.

- 구글 검색 해 보니 yt-dlp 라이브러리로 변경해서 작업했다는 글들이 있어, 급하게 깔아 테스트 해보았다. 자알 된다.^^

 

Install yt-dlp

1. GitHub 저장소에서 최신 버전의 yt-dlp 다운로드

wget -qO /usr/local/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp

2. 파일에 대한 읽기 및 실행 권한을 설정

chmod a+rx /usr/local/bin/yt-dlp

3. yt-dlp 버전 확인

yt-dlp --version