mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 20:15:24 +00:00
23 lines
552 B
Python
23 lines
552 B
Python
# 23.11.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.Src.Util.message import start_message
|
|
from StreamingCommunity.Src.Util.logger import Logger
|
|
from StreamingCommunity.Src.Api.Player.maxstream import VideoSource
|
|
|
|
|
|
# Test
|
|
start_message()
|
|
logger = Logger()
|
|
video_source = VideoSource("https://cb01new.biz/what-the-waters-left-behind-scars-hd-2023")
|
|
master_playlist = video_source.get_playlist()
|
|
print(master_playlist)
|