Última actividad 1741649047

download-youtube-videos.sh Sin formato
1#!/bin/bash
2path="/path/to/youtube"
3
4sudo chown -R user:user "${path}"
5
6yt-dlp --config-location "ytdlp-config.txt" -a "${path}/channels-1.txt"
7
8echo
9echo "Deleting JSON files"
10echo
11for file in "${path}"/*/*.json; do
12 if [ -f "$file" ]; then
13 sudo rm "$file"
14 fi
15done
16
17echo "Done"
18echo
19
20sudo chown -R jellyfin:jellyfin "${path}"
21
22
23
24# ytdlp-config.txt
25--progress
26--ignore-errors
27--check-formats
28--format "bestvideo[height<=1080][ext=mkv]+bestaudio[ext=m4a]/best[ext=mkv]/best"
29--merge-output mkv
30--write-info-json
31--write-annotations
32--write-thumbnail
33--convert-thumbnails jpg
34--embed-thumbnail
35--embed-chapters
36--embed-info-json
37--ignore-errors
38--add-metadata
39--restrict-filenames
40--concurrent-fragments 3
41--sponsorblock-mark all,-preview,-filler,-interaction
42--dateafter now-7days
43--playlist-end 10
44--no-playlist
45--cookies-from-browser firefox:vzh1hdbr.default-release
46--compat-options no-youtube-unavailable-videos
47--match-filter "!is_live & live_status!=is_upcoming & availability=public & title!*=WAN"
48--download-archive "/path/to/youtube/downloaded.txt"
49-o "/path/to/youtube/%(channel)s/%(upload_date>%Y-%m-%d)s - %(title)s [%(id)s].%(ext)s"