답변:
이 답변은 이전 버전의 youtube-dl에서는 작동하지 않습니다. youtube-dl을 최신 버전으로 업데이트해야합니다. Python 가상 환경 ( virtualenv ) 내부에 최신 버전의 youtube-dl을 로컬로 설치하거나 최신 버전의 youtube-dl 을 다운로드하여 pip
(sudo apt remove youtube-dl && sudo apt install python-pip && pip install --user youtube-dl
)로 있습니다. youtube-dl도 스냅 패키지입니다. 설치하려면 다음을 입력하십시오.
sudo snap install youtube-dl
터미널을 열고 다음을 입력하십시오.
youtube-dl -f best -ciw -o "%(title)s.%(ext)s" -v <url-of-channel>
...어디 <url-of-channel>
채널의 URL로 대체됩니다.
노트 : 많은 비디오를 다운로드하는 경우 비디오를 다운로드하기 전에 비디오를 저장하려는 디렉토리로 디렉토리를 변경해야합니다.
-f, --format FORMAT
video format code. The special name "best" will pick the best quality.
-c, --continue
force resume of partially downloaded files
-i, --ignore-errors
continue on download errors, for example to skip unavailable videos in a channel
-w, --no-overwrites
do not overwrite files
-o, --output
Output filename template, this example functions similarly to the old --title option
-v, --verbose
print various debugging information
youtube
Web Applications Q & A에서 태그 된 질문에 대한 최고 답변자입니다 .
--download-archive downloaded.txt
다운로드를 다시 시작하려면 추가해야합니다. 기존 파일을 건너 뜁니다.
WARNING: --title is deprecated. Use -o "%(title)s-%(id)s.%(ext)s"
( 그러나 경고에도 불구하고 명령이 성공적으로 작동했습니다)