parent
d8314968ca
commit
522524f59d
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
scriptVersion="1.5"
|
scriptVersion="1.6"
|
||||||
arrEventType="$sonarr_eventtype"
|
arrEventType="$sonarr_eventtype"
|
||||||
arrItemId=$sonarr_series_id
|
arrItemId=$sonarr_series_id
|
||||||
tmdbApiKey="3b7751e3179f796565d88fdb2fcdf426"
|
tmdbApiKey="3b7751e3179f796565d88fdb2fcdf426"
|
||||||
|
@ -138,9 +138,11 @@ DownloadExtras () {
|
||||||
|
|
||||||
log "$itemTitle :: $i of $tmdbVideosListDataIdsCount :: $tmdbExtraType :: $tmdbExtraTitle ($tmdbExtraKey) :: Downloading (yt-dlp :: $videoFormat)..."
|
log "$itemTitle :: $i of $tmdbVideosListDataIdsCount :: $tmdbExtraType :: $tmdbExtraTitle ($tmdbExtraKey) :: Downloading (yt-dlp :: $videoFormat)..."
|
||||||
if [ ! -z "$cookiesFile" ]; then
|
if [ ! -z "$cookiesFile" ]; then
|
||||||
yt-dlp -f "$videoFormat" --no-video-multistreams --cookies "$cookiesFile" -o "$finalPath/$finalFileName" --write-sub --sub-lang $videoLanguages --embed-subs --merge-output-format mkv --no-mtime --geo-bypass $ytdlpExtraOpts "https://www.youtube.com/watch?v=$tmdbExtraKey" &>/dev/null
|
yt-dlp -f "$videoFormat" --no-video-multistreams --cookies "$cookiesFile" -o "$finalPath/$finalFileName" --write-sub --sub-lang $videoLanguages --embed-subs --merge-output-format mkv --no-mtime --geo-bypass $ytdlpExtraOpts "https://www.youtube.com/watch?v=$tmdbExtraKey" 2>&1 | tee -a /config/logs/$scriptName.txt
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
yt-dlp -f "$videoFormat" --no-video-multistreams -o "$finalPath/$finalFileName" --write-sub --sub-lang $videoLanguages --embed-subs --merge-output-format mkv --no-mtime --geo-bypass $ytdlpExtraOpts "https://www.youtube.com/watch?v=$tmdbExtraKey" &>/dev/null
|
yt-dlp -f "$videoFormat" --no-video-multistreams -o "$finalPath/$finalFileName" --write-sub --sub-lang $videoLanguages --embed-subs --merge-output-format mkv --no-mtime --geo-bypass $ytdlpExtraOpts "https://www.youtube.com/watch?v=$tmdbExtraKey" 2>&1 | tee -a /config/logs/$scriptName.txt
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
if [ -f "$finalPath/$finalFileName.mkv" ]; then
|
if [ -f "$finalPath/$finalFileName.mkv" ]; then
|
||||||
log "$itemTitle :: $i of $tmdbVideosListDataIdsCount :: $tmdbExtraType :: $tmdbExtraTitle ($tmdbExtraKey) :: Compete"
|
log "$itemTitle :: $i of $tmdbVideosListDataIdsCount :: $tmdbExtraType :: $tmdbExtraTitle ($tmdbExtraKey) :: Compete"
|
||||||
|
|
Loading…
Reference in a new issue