| @@ -82,7 +82,7 @@ def my_ytdl_hook(d): | |||||
| def download_stream(channel): | def download_stream(channel): | ||||
| now = datetime.now() # current date and time | now = datetime.now() # current date and time | ||||
| dest_dir = DISTRICT_PATH + '/' + channel['name'] +'/' | |||||
| dest_dir = ROOT_PATH + '/' + channel['name'] +'/' | |||||
| dest_filename = now.strftime("%Y-%m-%d--%H.%M.%S") | dest_filename = now.strftime("%Y-%m-%d--%H.%M.%S") | ||||
| # create directory if it doesn't exist | # create directory if it doesn't exist | ||||
| @@ -149,16 +149,16 @@ def main(): | |||||
| print('end main (this shouldn\'t happen!)') | print('end main (this shouldn\'t happen!)') | ||||
| main() | |||||
| # main() | |||||
| #test_channel = { | |||||
| # 'name': 'Test Channel', | |||||
| # 'url': 'https://1000338copo-app2749759488.r53.cdn.tv1.eu/1000518lf/1000338copo/live/app2749759488/w2928771075/live247.smil/playlist.m3u8' | |||||
| # } | |||||
| test_channel = { | |||||
| 'name': 'Test Channel', | |||||
| 'url': 'https://1000338copo-app2749759488.r53.cdn.tv1.eu/1000518lf/1000338copo/live/app2749759488/w2928771075/live247.smil/playlist.m3u8' | |||||
| } | |||||
| #download_stream(test_channel) | |||||
| download_stream(test_channel) | |||||