Tips
youtube-dl로 youtube에 로그인해서 다운로드 하기
codens
2020. 10. 25. 14:44
- 유튜브에서 구입한 영화나 나이 제한등의 이유로 다운받지 못하는 동영상 다운 받는 방법
- youtube-dl이 브라우저의 로그인 정보 이용하기
* EditThisCookie 확장프로그램 설치
- Chrome, Opera 브라우저 지원
* EditThisCookie 설정
- 옵션 : 쿠키를 내보낼 때 원하는 형식 -> Netscape HTTP Cookie File
* Youtube 로그인
* EditThisCookie 쿠키 내보내기 (기능 선택)
- 붙혀넣기로 파일로 저장 : 예) cookie1.txt
* curl로 쿠키 파일 형식 변경
curl -b cookie1.txt --cookie-jar cookie2.txt "https://youtube.com"
* youtube-dl로 다운로드
youtube-dl --cookies=cookie2.txt https://youtu.be/주소
//--------------
// 참고
https://daveparrish.net/posts/2018-06-22-How-to-download-private-YouTube-videos-with-youtube-dl.html
반응형