1.0.7 • Published 6 years ago

stream-title v1.0.7

Weekly downloads
9
License
MIT
Repository
github
Last release
6 years ago

StreamTitle

Simple library to retrieve song title from SHOUTcast v1 or v2 and Icecast server.

Build Status Coverage Status

Installation

npm install stream-title --save

Example

SHOUTcast v1

var streamTitle = require('stream-title');

streamTitle({
    url: 'http://shoutcastserver:port',
    type: 'shoutcast'
}).then(function (title) {
    console.log(title);
}).catch(function (err) {
    console.log(err);
});

SHOUTcast v2

var streamTitle = require('stream-title');

streamTitle({
    url: 'http://shoutcastserver:port',
    type: 'shoutcast2',
    sid: 1
}).then(function (title) {
    console.log(title);
}).catch(function (err) {
    console.log(err);
});

Icecast v2.4.x

var streamTitle = require('stream-title');

streamTitle({
    url: 'http://icecastserver:port',
    type: 'icecast',
    mount: 'mymount'
}).then(function (title) {
    console.log(title);
}).catch(function (err) {
    console.log(err);
});

Options

NameTypeDescription
typestringrequired, server type that can be "shoutcast", "shoutcast2" or "icecast"
urlstringrequired, server url
sidintegerrequired for shoutcast2, stream id
mountstringrequired for incecast, mount name
timeoutintegerrequest timeout in ms, default: 1500

License

StreamTitle is open-sourced software licensed under the MIT license

Author

Fabio Ricali