Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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