StreamingCommunity/Test/Download_HLS.py
2024-11-14 11:50:23 +01:00

19 lines
283 B
Python

# 23.06.24
# Fix import
import sys
import os
src_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
sys.path.append(src_path)
# Import
from Src.Lib.Downloader import HLS_Downloader
# Test
HLS_Downloader(
output_filename="",
m3u8_playlist=""
).start()