Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffwilliams/wwwmp3
Linux mp3 player with web frontend
https://github.com/jeffwilliams/wwwmp3
Last synced: 11 days ago
JSON representation
Linux mp3 player with web frontend
- Host: GitHub
- URL: https://github.com/jeffwilliams/wwwmp3
- Owner: jeffwilliams
- License: mit
- Created: 2014-11-14T19:33:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-11-20T02:05:27.000Z (almost 5 years ago)
- Last Synced: 2024-06-21T09:45:07.925Z (5 months ago)
- Language: Go
- Homepage:
- Size: 367 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wwwmp3: A Web-based mp3 player
An mp3 player for Linux with a Web frontend. Written in [Go](https://golang.org/). It can also be used as a simple Go library for playing mp3s. See the API documentation on [godoc](http://godoc.org/github.com/jeffwilliams/wwwmp3).
## Dependencies
wwwmp3 contains a bit of C and C++ code for using existing libraries. To compile you'll need:
* libmpg123-dev
* libao-dev
* libasound-dev
* libid3-dev## Sample systemd service file
$ cat /etc/systemd/system/wwwmp3.service
[Unit]
Description=Web-based mp3 player[Service]
ExecStart=/home/jeffwilliams/src/go/bin/srv
User=jeffwilliams
WorkingDirectory=/home/jeffwilliams[Install]
WantedBy=multi-user.target
Alias=wwwmp3.service