Browse Source

fix

master
Andreas Demmelbauer 4 years ago
parent
commit
6a0f2cf3d4
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      demotape.py

+ 7
- 7
demotape.py View File

@@ -82,7 +82,7 @@ def my_ytdl_hook(d):
def download_stream(channel):
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")

# create directory if it doesn't exist
@@ -149,16 +149,16 @@ def main():
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)

Loading…
Cancel
Save