상세 컨텐츠

본문 제목

유튜브 영상 저장하기

Mac

by mingoon.com 2025. 11. 5. 21:50

본문

반응형

꼭 봐야하는 유튜브 라이브가 있는데, 시간이 안맞아 찾아본... 유튜브 저장하는 방법

 

- ffmpeg 설치

brew install ffmpeg

 

- yt-dlp 설치

brew install yt-dlp

 

- 특정 유튜브 저장하기

yt-dlp -f "bv*+ba/b" --merge-output-format mp4 --restrict-filenames "https://www.youtube.com/watch?v=XXXXXX" -o "~/Movies/%(title)s.%(ext)s"

 

라이브도 실행하면 시작 시간까지 대기하다가 저장이 되긴 하는데, 문제는 그 사이 맥이 잠드는 것.

그래서 맥에 기본 설치되어 있는 caffeinate를 실행하면 해결

 

- 유튜브 라이브 저장하기

caffeinate -dimsu yt-dlp -f "bv*+ba/b" --merge-output-format mp4 --wait-for-video 300 --restrict-filenames -o "~/Movies/%(title)s.%(ext)s" "https://www.youtube.com/watch?v=XXXXXX"

댓글 영역