Dark1291 2f8d706b59
Remove constant (#261)
* Remove constant

* Remove constant /2

* Fix costant /3
2025-02-12 10:27:18 +01:00

22 lines
513 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.Util.message import start_message
from StreamingCommunity.Util.logger import Logger
from StreamingCommunity.Api.Player.supervideo import VideoSource
# Test
start_message()
logger = Logger()
video_source = VideoSource("https://supervideo.tv/78np7kfiyklu")
master_playlist = video_source.get_playlist()
print(master_playlist)