fix previous

This commit is contained in:
HeshamTB 2023-09-14 19:36:50 +03:00
parent 2dee4917d0
commit 6e61c39f51

2
yt.go
View File

@ -10,12 +10,12 @@ import (
// yt-dlp flags and options for all links // yt-dlp flags and options for all links
var ytdlpParams []string = []string{ var ytdlpParams []string = []string{
"--get-url",
"--no-playlist", "--no-playlist",
} }
// yt-dlp flags and options only for youtube links // yt-dlp flags and options only for youtube links
var ytlinkParams []string = []string{ var ytlinkParams []string = []string{
"--get-url",
"-f 22", "-f 22",
} }