Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Lightweight music player prototype  (Read 1944 times)

Eschar

  • Bay Watcher
  • hello
    • View Profile
Lightweight music player prototype
« on: July 03, 2019, 01:14:58 pm »

This is the prototype of an (at the moment) extremely minimal music player. All music must go in the music folder, which will be created when the program first runs. Due to an underlying restriction in pygame, some mp3 files can't be played.

LMP 0.0.0 (Github repo)

Spoiler: Screenshot (click to show/hide)
Logged

catacombs

  • Bay Watcher
    • View Profile
Re: Lightweight music player prototype
« Reply #1 on: July 08, 2019, 05:09:07 pm »

.
« Last Edit: May 21, 2023, 10:44:02 am by catacombs »
Logged

Mephisto

  • Bay Watcher
    • View Profile
Re: Lightweight music player prototype
« Reply #2 on: July 17, 2019, 12:23:17 pm »

Have you considered using something like VLC in place of Pygame? Pygame has a load of baggage associated with it that a console music player will never use.

Though in that case, you'd be basically reimplementing the console music player that's already in the VLC lib.
Logged

Eschar

  • Bay Watcher
  • hello
    • View Profile
Re: Lightweight music player prototype
« Reply #3 on: July 18, 2019, 08:58:25 am »

Have you considered using something like VLC in place of Pygame? Pygame has a load of baggage associated with it that a console music player will never use.

Though in that case, you'd be basically reimplementing the console music player that's already in the VLC lib.

Thanks, I wasn't aware of VLC python bindings. I'll look at them soon.
Logged