MacOS下用Homebrew安裝yt-dlp並配置yt-dlp.conf

sherlockk123發表於2024-11-26

MacOS下用Homebrew安裝yt-dlp影片下載器並配置.conf配置檔案

安裝yt-dlp

brew install yt-dlp

檢視是否安裝成功

yt-dlp --version
2024.11.18

給yt-dlp新增配置檔案

1、開啟訪達資料夾,到~根目錄下,通常是你的使用者名稱資料夾,裡面有圖片下載音樂等

2、按下command + shift + . (顯示隱藏檔案)

3、開啟 .config 資料夾,建立 yt-dlp 資料夾

4、建立 yt-dlp.conf 這個就是配置檔案

下面是我的配置,可以參考一下,配置檔案裡不要有中文,cookies的檔案也放在這個裡面

匯出瀏覽器cookie可以用這個擴充套件程式:Get cookies.txt LOCALLY

擴充套件程式:https://github.com/kairi003/Get-cookies.txt-Locally

yt-dlp官方配置檔案引數介紹:https://github.com/yt-dlp/yt-dlp#configuration

## cookies
--cookies 'cookies.txt'

##args 
--output %(uploader)s/%(title)s-%(resolution)s.%(ext)s

## Verbosity / Simulation Options
--console-title --progress-template "download-title:%(info.id)s-%(progress.eta)s"

## output path
--paths '/Users/yuto/Downloads/Video/Cut/'

## Video Format Options
##--merge-output-format mp4

## Subtitle Options
##--sub-langs all,-live_chat

## Post-Processing Options
##--embed-subs
##--embed-thumbnail
##--embed-metadata
##--convert-subs srt

## ffmpeg tools for macOS,You must modify the path
--ffmpeg-location /opt/homebrew/Cellar/ffmpeg/7.1_3/bin/ffmpeg

相關文章