Câu trả lời này sẽ không hoạt động trên các phiên bản cũ hơn của youtube-dl. Bạn cần cập nhật youtube-dl lên phiên bản mới nhất. Bạn có thể cài đặt phiên bản youtube-dl mới nhất cục bộ trong môi trường ảo Python ( virtualenv ) hoặc bạn có thể tải xuống phiên bản youtube-dl mới nhất và cài đặt nó với pip
( sudo apt remove youtube-dl && sudo apt install python-pip && pip install --user youtube-dl
). youtube-dl cũng là một gói snap. Để cài đặt nó, gõ:
sudo snap install youtube-dl
Mở terminal và gõ:
youtube-dl -f best -ciw -o "%(title)s.%(ext)s" -v <url-of-channel>
... Nơi <url-of-channel>
được thay thế bằng URL của kênh.
Lưu ý: Nếu bạn đang tải xuống nhiều video, bạn nên thay đổi thư mục thành thư mục nơi bạn muốn lưu video trước khi bắt đầu tải xuống.
Giải trình
-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
WARNING: --title is deprecated. Use -o "%(title)s-%(id)s.%(ext)s"
( nhưng lệnh của bạn đã hoạt động thành công bất chấp cảnh báo)