radio-song
v0.1.8
Published
This lib allows to grab/parse song titles from the radio (shoutcast/icecast) stream.
Downloads
17
Readme
Radio Song
This lib allows to grab/parse song titles from the radio (shoutcast/icecast) stream.
Installation & Usage
npm install radio-song
var Reader = require('radio-song');
var reader = new Reader('<stream-url>')
reader.on('metadata', function(songName) {
...
});
reader.on('error', function(e){
...
});