Skip to content

BBC-Esq/Pyside6_PyQt6_video_audio_player

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

PySide6 and PyQt6 Video/Audio Player

Two simple, lightweight media players created with Pyside6 and PyQt6. Run standalone or incorporate into another program.

Installation

First, make sure you're running Python 3.10+ and have VLC Player installed.

Download the latest release, unzip it, and place the two .py files anywhere on your computer. Create a command prompt in the folder you put the files and create a virtual environment:

python -m venv .

Activate the virtual environment:

.\Scripts\activate

Upgrade pip

python -m pip install --upgrade pip

Install Player of Choice

  • Pyside6-based player
pip install PySide6==6.5.2
  • PyQt6-based player
pip install PyQt6==6.5.2

Install VLC Python Library

pip install python-vlc==3.0.18122

Run Program

Pyside6-based player

python media_player_pyside6.py

PyQt6-based player

python media_player_pyqt6.py

Please STAR if you found it useful so other people can find the repository easier!