Compare commits

...

3 Commits

Author SHA1 Message Date
91582c67bd Have to use the shell argument for the subprocess 2024-04-06 22:30:51 -04:00
bd874d7245 Hell transfer2 2024-04-06 21:05:40 -04:00
fe61cdf07e Hell transfer 2024-04-06 21:04:41 -04:00

29
main.py
View File

@ -7,7 +7,6 @@ import sys
import time import time
from datetime import datetime from datetime import datetime
from pathlib import Path from pathlib import Path
import requests import requests
channel_list = [] channel_list = []
@ -54,32 +53,20 @@ def write_log(channel):
def download_stream(channel): def download_stream(channel):
"""Downloads a given channel name in its own subprocess""" """Downloads a given channel name in its own subprocess"""
# TODO: Just clean this up at somepoint
addtional_parms = "" addtional_parms = ""
if skip_ads: if skip_ads:
addtional_parms = "--twitch-proxy-playlist=https://lb-eu.cdn-perfprod.com,https://lb-eu2.cdn-perfprod.com,https://lb-na.cdn-perfprod.com,https://lb-as.cdn-perfprod.com,https://as.luminous.dev --twitch-disable-ads" addtional_parms = "--twitch-proxy-playlist=https://lb-eu.cdn-perfprod.com,https://lb-eu2.cdn-perfprod.com,https://lb-na.cdn-perfprod.com,https://lb-as.cdn-perfprod.com,https://as.luminous.dev --twitch-disable-ads"
file_name = f"{channel}_{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}.ts" file_name = f"{channel}_{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}.ts"
# cmd = [ cmd = f"{streamlink_location} --loglevel none --retry-max 10 {addtional_parms} -o {download_location}/{channel}/{file_name} twitch.tv/{channel} best"
# f"{streamlink_location}",
# "--loglevel none",
# "--retry-max 10",
# f"{addtional_parms}",
# f"-o {download_location}/{channel}/{file_name}",
# f"twitch.tv/{channel}",
# "best",
# ]
# print(cmd)
downloading[channel] = subprocess.Popen( downloading[channel] = subprocess.Popen(
[ [cmd],
f"{streamlink_location}", shell=True,
"--loglevel none", start_new_session=True,
"--retry-max 10", stdout=subprocess.PIPE,
f"{addtional_parms}", stderr=subprocess.STDOUT,
f"-o {download_location}/{channel}/{file_name}",
"twitch.tv/ActionButton",
"best",
]
) )
# write_log(channel) write_log(channel)
def check_system(): def check_system():