Adding (currently useless) options to yt-dlp

This commit is contained in:
Logan G 2025-01-03 18:30:40 -07:00
parent f62e8232d6
commit 5e569df5ab
Signed by: logan
GPG key ID: E328528C921E7A7A

View file

@ -43,7 +43,11 @@ func downloadVideo(url string, path string, group GroupConfig) (err error) {
log.Debugf("URL \"%s\" exists.", url) log.Debugf("URL \"%s\" exists.", url)
video, err := goutubedl.New(context.Background(), url, goutubedl.Options{}) video, err := goutubedl.New(context.Background(), url, goutubedl.Options{
MergeOutputFormat: "",
DownloadSubtitles: group.DownloadSubtitles,
DownloadThumbnail: group.DownloadThumbnails,
})
if err != nil { if err != nil {
return err return err
} }