node-icy

Node.js module for parsing and/or injecting ICY metadata

  • Owner: TooTallNate/node-icy
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

node-icy

Node.js module for parsing and/or injecting ICY metadata

Build Status

This module offers a Reader class for retrieving the raw audio data and
parsing the metadata from an ICY stream (commonly SHOUTcast or
Icecast broadcasts).

There's also a Writer class that allows you to inject your own metadata into a
data stream, which can then be displayed by another ICY client (like VLC).

But you'll probably be most interested in the Client class that builds off of
node's core http module, except this version works with servers that return
an ICY HTTP version, and automatically sends an "Icy-MetaData: 1" HTTP header
to notify the server that we want metadata, and finally it returns a Reader
instance in the "response" event, therefore the "res" object also emits "metadata"
events. See the example below to see how it works.

A good use case for this module is for HTML5 web apps that host to radio streams;
the <audio> tag doesn't know how to deal with the extra metadata and it is
impossible to extract (on the client-side). But a WebSocket connection could be
used in conjunction with this module to provide those metadata events to a
web browser, for instance.

Installation

Install with npm:

$ npm install icy

Example

Here's a basic example of using the HTTP Client to connect to a remote ICY
stream, pipe the clean audio data to stdout, and print the HTTP response headers
and metadata events to stderr:

var icy = require('icy');
var lame = require('lame');
var Speaker = require('speaker');

// URL to a known ICY stream
var url = 'http://firewall.pulsradio.com';

// connect to the remote stream
icy.get(url, function (res) {

  // log the HTTP response headers
  console.error(res.headers);

  // log any "metadata" events that happen
  res.on('metadata', function (metadata) {
    var parsed = icy.parse(metadata);
    console.error(parsed);
  });

  // Let's play the music (assuming MP3 data).
  // lame decodes and Speaker sends to speakers!
  res.pipe(new lame.Decoder())
     .pipe(new Speaker());
});

You are also able to add custom headers to your request:

var url = require('url');

// URL to a known ICY stream
var opts = url.parse('http://yourstreamurl.tld/');

// add custom headers
opts.headers = { 'User-Agent': 'Your awesome useragent' };

// connect to the remote stream
icy.get(opts, callback);

API

Client()

The Client class is a subclass of the http.ClientRequest object.

It adds a stream preprocessor to make "ICY" responses work. This is only needed
because of the strictness of node's HTTP parser. I'll volley for ICY to be
supported (or at least configurable) in the http header for the JavaScript
HTTP rewrite (v0.12 of node?).

The other big difference is that it passes an icy.Reader instance
instead of a http.ClientResponse instance to the "response" event callback,
so that the "metadata" events are automatically parsed and the raw audio stream
it output without the ICY bytes.

Also see the request() and get() convenience functions.

request()

request() convenience function. Similar to node core's
http.request(),
except it returns an icy.Client instance.

get()

get() convenience function. Similar to node core's
http.get(),
except it returns an icy.Client instance with .end() called on it and
no request body written to it (the most common scenario).

Reader()

ICY stream reader. This is a duplex stream that emits "metadata" events in
addition to stripping out the metadata itself from the output data. The result
is clean (audio and/or video) data coming out of the stream.

Writer()

The Writer class is a duplex stream that accepts raw audio/video data and
passes it through untouched. It also has a queue() function that will
queue the Writer to inject the metadata into the stream at the next "metaint"
interval.

Writer#queue(metadata)

Queues a piece of metadata to be sent along with the stream.
metadata may be a String and be any title (up to 4066 chars),
or may be an Object containing at least a "StreamTitle" key, with a String
value. The serialized metadata payload must be <= 4080 bytes.

parse()

Parses a Buffer (or String) containing ICY metadata into an Object.

stringify()

Takes an Object and converts it into an ICY metadata string.

Main metrics

Overview
Name With OwnerTooTallNate/node-icy
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 1)
Platform
License:MIT License
所有者活动
Created At2010-09-09 21:08:13
Pushed At2023-02-27 00:13:01
Last Commit At2017-11-19 23:32:24
Release Count15
Last Release Name2.1.0 (Posted on 2015-12-30 13:58:23)
First Release Namev0.0.1 (Posted on )
用户参与
Stargazers Count288
Watchers Count14
Fork Count39
Commits Count201
Has Issues Enabled
Issues Count36
Issue Open Count13
Pull Requests Count3
Pull Requests Open Count0
Pull Requests Close Count5
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private