npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

flvee

v0.0.1

Published

Flash Video (FLV)

Downloads

15

Readme

FLV: Extreme Edition

Flash Video (FLV) parser and serialiser

Overview

This module consumes and produces Flash Video data with delicious streams.

Super Quickstart

var fs = require("fs"),
    flvee = require("flvee");

var parser = new flvee.Parser();

fs.createReadStream("in.flv").pipe(parser);

parser.on("readable", function() {
  var e;
  while (e = parser.read()) {
    console.log(e);
  }
});

Installation

Available via npm:

$ npm install flvee

Or via git:

$ git clone git://github.com/deoxxa/flvee.git node_modules/flvee

Usage

Both the parser and serialiser are streams. The parser expects buffers on input and outputs objects. The serialiser expects objects on input and outputs buffers. See the Node.JS stream docs for more on how to use streams.

FLVParser API

constructor

Constructs a new FLVParser object. options is an object that gets passed through to the stream.Transform constructor. strictMode is a boolean that controls whether the parser tries to validate footer values or not. If the parser is initialised with strictMode: true, it will throw an error when an invalid footer value is encountered.

new flvee.Parser(options, strictMode);
// basic instantiation
var parser = new flvee.Parser();

// instantiation with strict mode
var parser = new flvee.Parser(null, true);

// instantiation with some options to go through to stream.Transform
var parser = new flvee.Parser({highWaterMark: 10});

Arguments

  • options - an object that gets passed through to the stream.Transform constructor.
  • strictMode - a boolean that controls whether the parser tries to validate footer values or not.

FLVSerialiser API

constructor

Constructs a new FLVSerialiser object. Like in FLVParser, options is an object that gets passed through to the stream.Transform constructor. headerFields is an object that sets default values for some of the header fields. This information will be discarded if a header packet is written to the serialiser instance.

new flvee.Serialiser(options, headerFields);
// basic instantiation
var serialiser = new flvee.Serialiser();

// instantiation with header information set
var serialiser = new flvee.Serialiser(null, {
  version: 1,
  flags: {
    "0": true,
    "2": true,
  },
});

// instantiation with some options to go through to stream.Transform
var serialiser = new flvee.Serialiser({highWaterMark: 10});

Arguments

  • options - an object that gets passed through to the stream.Transform constructor.
  • headerFields - an object that sets default values for some of the header fields. The possible properties are version and flags. The version field is an integer and the flags field is an object that is used to populate a bitfield.

Example

Also see example.js.

#!/usr/bin/env node

// this script will dump out packet information

var flvee = require("flvee"),
    fs = require("fs"),
    stream = require("stream");

var parser = new flvee.Parser(),
    serialiser = new flvee.Serialiser();

parser.on("readable", function() {
  var e;
  while (e = parser.read()) {
    console.log(e);
  }
});

var nowhere = new stream.Writable();
nowhere._write = function _write(input, encoding, done) { return done(); };

fs.createReadStream(process.argv[2]).pipe(parser).pipe(serialiser).pipe(nowhere);

Output (example):

{ header: { version: 1, flags: { '0': true, '2': true }, headerSize: 9 } }
{ footer: 0 }
{ packet:
   { type: 18,
     length: 4064,
     time: 0,
     streamId: 0,
     data: <Buffer 02 00 0a 6f 6e 4d 65 74 61 44 61 74 61 08 00 00 00 1b 00 0c 61 75 64 69 6f 63 6f 64 65 63 69 64 00 40 24 00 00 00 00 00 00 00 0d 61 75 64 69 6f 64 61 74 ...>,
     parsed:
      [ audiocodecid: 10,
        audiodatarate: 96.80490091625826,
        audiosamplerate: 44100,
        audiosamplesize: 16,
        audiosize: 2271527,
        canSeekToEnd: true,
        datasize: 12038034,
        duration: 187.72,
        encoder: 'Lavf54.6.100',
        filesize: 12033955,
        framerate: 25.01598124866823,
        hasAudio: true,
        hasCuePoints: false,
        hasKeyframes: true,
        hasMetadata: true,
        hasVideo: true,
        height: 408,
        keyframes: [Object],
        lasttimestamp: 187.72,
        metadatacreator: 'flvtool++ (Facebook, Motion project, dweatherford)',
        metadatadate: Sun Apr 14 2013 03:31:25 GMT+1000 (EST),
        stereo: true,
        totalframes: 4696,
        videocodecid: 7,
        videodatarate: 407.65105476241206,
        videosize: 9565532,
        width: 544 ] } }
{ footer: 267059200 }
{ packet:
   { type: 18,
     length: 292,
     time: 0,
     streamId: 0,
     data: <Buffer 02 00 0a 6f 6e 4d 65 74 61 44 61 74 61 08 00 00 00 0d 00 08 64 75 72 61 74 69 6f 6e 00 40 67 a0 00 00 00 00 00 00 05 77 69 64 74 68 00 40 81 00 00 00 00 ...>,
     parsed:
      [ duration: 189,
        width: 544,
        height: 408,
        videodatarate: 390.625,
        framerate: 25,
        videocodecid: 7,
        audiodatarate: 93.75,
        audiosamplerate: 44100,
        audiosamplesize: 16,
        stereo: true,
        audiocodecid: 10,
        encoder: 'Lavf54.6.100',
        filesize: 12033955 ] } }
{ footer: 303 }
{ packet:
   { type: 9,
     length: 47,
     time: 0,
     streamId: 0,
     data: <Buffer 17 00 00 00 00 01 64 00 1e ff e1 00 1a 67 64 00 1e ac d9 80 88 35 f9 70 11 00 00 03 00 01 00 00 03 00 32 0f 16 2d 9a 01 00 05 68 e9 7b 3c 8f> } }
{ footer: 58 }
{ packet:
   { type: 8,
     length: 4,
     time: 0,
     streamId: 0,
     data: <Buffer af 00 12 10> } }
{ footer: 15 }

License

3-clause BSD. A copy is included with the source.

Contact