From b6efe5f4ea86f55dec84e8d9451a59a00eb8ee96 Mon Sep 17 00:00:00 2001 From: Lovi <62809003+Lovi-0@users.noreply.github.com> Date: Sun, 24 Nov 2024 17:10:33 +0100 Subject: [PATCH] Fix error HLS_Downloader --- StreamingCommunity/Src/Api/Site/streamingcommunity/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StreamingCommunity/Src/Api/Site/streamingcommunity/series.py b/StreamingCommunity/Src/Api/Site/streamingcommunity/series.py index 06c701f..46644e5 100644 --- a/StreamingCommunity/Src/Api/Site/streamingcommunity/series.py +++ b/StreamingCommunity/Src/Api/Site/streamingcommunity/series.py @@ -57,7 +57,7 @@ def download_video(tv_name: str, index_season_selected: int, index_episode_selec # Download the episode r_proc = HLS_Downloader( - master_playlist=master_playlist, + m3u8_playlist=master_playlist, output_filename=os.path.join(mp4_path, mp4_name) ).start()