Add files via upload

This commit is contained in:
None 2025-04-30 11:29:35 +02:00 committed by GitHub
parent 80056e37f1
commit 89e8ffb23c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

22
Test/Player/mixdrop.py Normal file
View File

@ -0,0 +1,22 @@
# 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.mixdrop import VideoSource
# Test
start_message()
logger = Logger()
video_source = VideoSource("https://cb01net.uno/pino-daniele-nero-a-meta-hd-2024/")
master_playlist = video_source.get_playlist()
print(master_playlist)