Refactor: Move SettingsWindow to settings_screen.py and use system VLC for video playback

This commit is contained in:
2025-08-22 21:58:18 +03:00
parent 41ff96065b
commit 47d9ec5779
10 changed files with 323 additions and 39 deletions

View File

@@ -5,7 +5,6 @@ This file acts as the main executable for launching the tkinter player.
"""
import os
import sys
import cv2 # Import OpenCV to confirm it's available
# Add the current directory to the path so we can import our modules
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
@@ -14,7 +13,6 @@ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from tkinter_simple_player import SimpleMediaPlayerApp
if __name__ == "__main__":
print(f"Using OpenCV version: {cv2.__version__}")
# Create and run the player
player = SimpleMediaPlayerApp()
player.run()