Nixes / GoMediaServer

Simple web app created to learn golang
3 stars 0 forks source link

Music Streaming Interface Features #3

Open Nixes opened 8 years ago

Nixes commented 8 years ago

List of features needed for music streaming:

Nixes commented 8 years ago

I'll try to add some libraries that I think will be relevant in comments to follow. After I have a few good candidates I'll get started on some of them.

Nixes commented 7 years ago

Database: https://github.com/mattn/go-sqlite3

Nixes commented 7 years ago

ID3 Tag parsing: https://github.com/ascherkus/go-id3 seems abandoned, might still work

Nixes commented 7 years ago

ID3 Tag parsing: https://github.com/dhowden/tag This looks a little more active

Nixes commented 7 years ago

Playlist parser: https://github.com/jamesnetherton/m3u Good start, can use as a reference for own playlist reader / writer lib

Nixes commented 7 years ago

Recursive folder scanning: https://rosettacode.org/wiki/Walk_a_directory/Recursively#Go Hmm this got easier recently