Lovi 47c12dbb15 mp4: Fix error 'set_alpn_protocols'
(cherry picked from commit ab094d0b1db21e74b8af4b5b995779dfd88ce3db)
2025-03-16 23:37:49 +01:00

26 lines
598 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 StreamingCommunity.Util.message import start_message
from StreamingCommunity.Util.os import os_summary
os_summary.get_system_summary()
from StreamingCommunity.Util.logger import Logger
from StreamingCommunity.Lib.Downloader import MP4_downloader
# Test
start_message()
logger = Logger()
print("Return: ", MP4_downloader(
url="https://148-251-75-109.top/Getintopc.com/IDA_Pro_2020.mp4",
path=r".\Video\undefined.mp4"
))