mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 12:05:35 +00:00
20 lines
267 B
Python
20 lines
267 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 MP4_downloader
|
|
|
|
|
|
# Test
|
|
MP4_downloader(
|
|
"",
|
|
".\Video\undefined.mp4"
|
|
)
|