Finalize: working player, automatic playlist version check, server URL fix, and robust playlist update logic
This commit is contained in:
@@ -9,10 +9,12 @@ import sys
|
||||
# Add the current directory to the path so we can import our modules
|
||||
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
||||
|
||||
# Import the player module
|
||||
from tkinter_simple_player import SimpleMediaPlayerApp
|
||||
|
||||
# Import the player module from player_app.py
|
||||
from player_app import SimpleMediaPlayerApp
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Create and run the player
|
||||
player = SimpleMediaPlayerApp()
|
||||
import tkinter as tk
|
||||
root = tk.Tk()
|
||||
player = SimpleMediaPlayerApp(root)
|
||||
player.run()
|
||||
Reference in New Issue
Block a user