1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-23 07:13:25 +00:00

Podsync: cleaner config, remove clean script

This commit is contained in:
Phantop 2020-10-10 12:21:31 -04:00
parent 4c13adf750
commit aaa520990a
2 changed files with 12 additions and 18 deletions

View file

@ -1,6 +1,5 @@
[server] [server]
port = 2020 port = 2020
hostname = "aperture.local:2020"
data_dir = "/home/glados/Videos/YouTube" data_dir = "/home/glados/Videos/YouTube"
[tokens] [tokens]
@ -9,28 +8,28 @@ youtube = ""
[feeds] [feeds]
[feeds.Fullsauce] [feeds.Fullsauce]
url = "https://www.youtube.com/channel/UC2_IYqb1Tc_8Azh7rByedPA" url = "https://www.youtube.com/channel/UC2_IYqb1Tc_8Azh7rByedPA"
page_size = 8 # The number of episodes to query each update (keep in mind, that this might drain API token) page_size = 8
update_period = "10m" # How often query for updates, examples: "60m", "4h", "2h45m" update_period = "10m"
quality = "high" # or "low" quality = "high"
format = "video" # or "audio" format = "video"
max_height = 480 max_height = 480
clean = { keep_last = 6 } clean = { keep_last = 6 }
filters = { not_title = "Vinesauce Art Corner"} filters = { not_title = "Vinesauce Art Corner"}
[feeds.CrowVOD] [feeds.CrowVOD]
url = "https://www.youtube.com/channel/UCJDDY5VgK2jN5MFK3fHIMbA" url = "https://www.youtube.com/channel/UCJDDY5VgK2jN5MFK3fHIMbA"
page_size = 3 # The number of episodes to query each update (keep in mind, that this might drain API token) page_size = 3
update_period = "10m" # How often query for updates, examples: "60m", "4h", "2h45m" update_period = "10m"
quality = "high" # or "low" quality = "high"
format = "video" # or "audio" format = "video"
max_height = 480 max_height = 480
clean = { keep_last = 3 } clean = { keep_last = 3 }
[feeds.VargFull] [feeds.VargFull]
url = "https://www.youtube.com/channel/UCRNCUBq676nUhXyy8AJzD5w" url = "https://www.youtube.com/channel/UCRNCUBq676nUhXyy8AJzD5w"
page_size = 3 # The number of episodes to query each update (keep in mind, that this might drain API token) page_size = 3
update_period = "10m" # How often query for updates, examples: "60m", "4h", "2h45m" update_period = "10m"
quality = "high" # or "low" quality = "high"
format = "video" # or "audio" format = "video"
max_height = 480 max_height = 480
clean = { keep_last = 3 } clean = { keep_last = 3 }

View file

@ -1,8 +1,3 @@
#!/bin/bash #!/bin/bash
cd ~/Videos/YouTube/ cd ~/Videos/YouTube/
#for f in */*.mp4; do
# grep -q "$f" *.xml || rm "$f"
#done
tmux new -s 1 -d "podsync-bin --no-banner" tmux new -s 1 -d "podsync-bin --no-banner"