https://github.com/zoomten/playah
Attempting to make a media player as exercise + study
https://github.com/zoomten/playah
Last synced: about 2 months ago
JSON representation
Attempting to make a media player as exercise + study
- Host: GitHub
- URL: https://github.com/zoomten/playah
- Owner: ZoomTen
- Created: 2020-07-08T11:36:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T15:39:46.000Z (almost 6 years ago)
- Last Synced: 2025-01-16T11:54:10.399Z (over 1 year ago)
- Language: C++
- Size: 241 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playah!
**Work in progress** media player written in Qt (and Ncurses for the CLI version), because I like jumping on bandwagons
**Todo**
- Album art display
- Playlist loading (m3u, etc.)
- Info handling
- idk what else
## Build
Create shadowbuild directory
`mkdir _build && cd _build`
Make the library first and let the system see it
`mkdir lib && cd lib`
`qmake ../../lib && make`
`export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH`
Make the rest of the project
`cd ..`
`qmake .. && make`
## Run
`cli/playah_cli` = ncurses cli version
`gui/playah` = qt gui version