Skip to main content

yt-dlp

介紹

yt-dlp

安裝

Global install

brew install yt-dlp

venv install

mkdir yt-dlp
cd yt-dlp
python3 -m venv yt-dlp-env
source yt-dlp-env/bin/activate
pip3 install xyz

使用

下載影片

  1. example
yt-dlp --output "%(title)s.%(ext)s" --embed-thumbnail --add-metadata --merge-output-format mp4 「影片網址」
  1. 顯示所有可用格式
yt-dlp -F 「影片網址」
  1. 私人影片下載指定格式 並從firefox 讀取cookie , 使用不常用的browser 並在下載後登出避免cookie被濫用 chrome and safari 容易有權限問題故使用firefox
yt-dlp --cookies-from-browser firefox 「影片網址」 -f 271+251
import yt_dlp

yt_opts = {
'format': 'bestvideo+bestaudio/best',
'outtmpl': '%(title)s.%(ext)s',
'embed_thumbnail': True,
'add_metadata': True,
'merge_output_format': 'mp4'
}

with yt_dlp.YoutubeDL(yt_opts) as ydl:
ydl.download(['影片網址'])

僅下載音訊

yt-dlp --output "%(title)s.%(ext)s" --embed-thumbnail --add-metadata --extract-audio --audio-format mp3 --audio-quality 320K 「影片網址」

直接下載不轉換

yt-dlp --cookies-from-browser firefox  "https://www.youtube.com/watch?v=xxxxxxxxxx" -f 599  

使用程式下載

import yt_dlp

yt_opts = {
'format': 'bestaudio/best',
'outtmpl': '%(title)s.%(ext)s',
'extract_audio': True,
'audio_format': 'mp3', # Ensure audio is converted to MP3
'audio_quality': '320K',
'postprocessors': [
{ # Extract and convert audio to mp3 using ffmpeg
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '320',
},
{ # Embed thumbnail in mp3 file
'key': 'FFmpegMetadata',
},
{ # Embed metadata in mp3 file
'key': 'EmbedThumbnail',
}
],
}

with yt_dlp.YoutubeDL(yt_opts) as ydl:
ydl.download(['影片網址'])

遭遇問題1

yt-dlp --cookies-from-browser firefox  "https://www.youtube.com/watch\?v\=xxxxxxxxxxxx" -F
[generic] Extracting URL: https://www.youtube.com/watch\?v\=xxxxxxxxxxxx
[generic] watch\?v\=xxxxxxxxxxxx: Downloading webpage
Extracting cookies from firefox
Extracted 1377 cookies from firefox
ERROR: [generic] Unable to download webpage: HTTP Error 404: Not Found (caused by <HTTPError 404: Not Found>)

原因

貼網址到Terminal時,網址中的「?」會被當成特殊字元,所以要用「\」跳脫, 導致yt-dlp無法正確解析網址

遭遇問題2

yt-dlp --cookies-from-browser firefox  "https://www.youtube.com/watch?v=xxxxxxxxxxx" -F
Extracting cookies from firefox
Extracted 1377 cookies from firefox
[youtube] Extracting URL: https://www.youtube.com/watch?v=xxxxxxxxxxx
[youtube] xxxxxxxxxxx: Downloading webpage
[youtube] xxxxxxxxxxx: Downloading ios player API JSON
WARNING: [youtube] YouTube said: ERROR - Request contains an invalid argument.
WARNING: [youtube] HTTP Error 400: Bad Request. Retrying (1/3)...
[youtube] xxxxxxxxxxx: Downloading ios player API JSON
WARNING: [youtube] YouTube said: ERROR - Request contains an invalid argument.
WARNING: [youtube] HTTP Error 400: Bad Request. Retrying (2/3)...
[youtube] xxxxxxxxxxx: Downloading ios player API JSON
WARNING: [youtube] YouTube said: ERROR - Request contains an invalid argument.
WARNING: [youtube] HTTP Error 400: Bad Request. Retrying (3/3)...
[youtube] xxxxxxxxxxx: Downloading ios player API JSON
WARNING: [youtube] YouTube said: ERROR - Request contains an invalid argument.
WARNING: [youtube] Unable to download API page: HTTP Error 400: Bad Request (caused by <HTTPError 400: Bad Request>)
[youtube] xxxxxxxxxxx: Downloading web creator player API JSON
[youtube] xxxxxxxxxxx: Downloading player f8f53e1a
WARNING: [youtube] Falling back to generic n function search
player = https://www.youtube.com/s/player/f8f53e1a/player_ias.vflset/en_US/base.js
WARNING: [youtube] xxxxxxxxxxx: nsig extraction failed: Some formats may be missing
n = GiU8lZDCBkefuJvf4OA ; player = https://www.youtube.com/s/player/f8f53e1a/player_ias.vflset/en_US/base.js
WARNING: [youtube] Falling back to generic n function search
player = https://www.youtube.com/s/player/f8f53e1a/player_ias.vflset/en_US/base.js
WARNING: [youtube] xxxxxxxxxxx: nsig extraction failed: Some formats may be missing
n = EksnNtN6jYvr3iyNE_Z ; player = https://www.youtube.com/s/player/f8f53e1a/player_ias.vflset/en_US/base.js
WARNING: Only images are available for download. use --list-formats to see them

原因

 YouTube's API or page structure has changed

解決方法

更新yt-dlp

pip3.11 install -U yt-dlp

參考資料