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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ffmpeg-webworker-madvise

v1.3.1

Published

A WebWorker implementation that eases the use of ffmpeg library in the browser.

Downloads

6

Readme

ffmpeg-webworker-madvise

A WebWorker implementation that eases the use of ffmpeg library in the browser.

This fork contains fixed version of ffmep-all-codecs file (_madvise function issue). Terminate function added

This builds upon an existing work geniusly done by the folks at Ffmpeg.js and videoconverter.js

Demo

See it here (original version)

Installation

npm install --save ffmpeg-webworker

or:

yarn add ffmpeg-webworker

Usage

import { FFMPEGWebworkerClient } from 'ffmpeg-webworker';
import React from 'react';

const workerClient = new FFMPEGWebworkerClient();

class FFMPEG extends React.Component {
  constructor(props) {
    super(props);

    this.state = {
      stdOutputText: '',
      ffmpegReady: false,
    };

    this.updateStdOutputText = this.updateStdOutputText.bind(this);
    this.handleInputChange = this.handleInputChange.bind(this);
    this.handleListCodecs = this.handleListCodecs.bind(this);
  }

  componentWillMount() {
    workerClient.on('onReady', () => this.setState({ ffmpegReady: true }));
    workerClient.on('onStdout', (msg) => this.updateStdOutputText(msg));
    workerClient.on('onFileReceived', (msg) => this.updateStdOutputText(msg));
    workerClient.on('onDone', (data) => {
      this.updateStdOutputText('Command Completed, check the console');
      console.log(data);
    });
  }

  updateStdOutputText(text) {
    this.setState({
      stdOutputText: `${this.state.stdOutputText} \n\n ${text}`,
    });
  }

  handleInputChange(e) {
    this.setState({ stdOutputText: '' });

    const file = e.currentTarget.files[0];
    // Set the file for processing
    workerClient.inputFile = file;
    // Run a valid ffmpeg command
    workerClient.runCommand('-ss 00:00:05 -c copy -t 12 sliced-output.mp4');
  }

  Input({ onChange }) {
    return (
      <input
        type="file"
        accept="audio/*,video/*"
        onChange={(e) => onChange(e)}
      />
    );
  }

  StdOutput({ text, ffmpegReady }) {
    return (
      <pre>
        {ffmpegReady ? 'FFMPEG is ready' : 'Loading FFMPEG'}
        {text}
      </pre>
    );
  }

  handleListCodecs(e) {
    e.preventDefault();
    this.setState({ stdOutputText: '' });
    // Run a valid ffmpeg command
    workerClient.runCommand('-codecs');
  }

  render() {
    return (
      <div>
        {<this.Input onChange={this.handleInputChange} />}
        <button onClick={this.handleListCodecs}>List Codecs</button>
        <this.StdOutput
          text={this.state.stdOutputText}
          ffmpegReady={this.state.ffmpegReady}
        />
      </div>
    );
  }
}

<FFMPEG />;

Docs

The default export from the library is a standard NodeJS event emitter client would listen to and dispatch events based on interactions with an already loaded ffmpeg webworker Javascript library inside of a webworker.

It supports the following properties:

workerClient.on : void

Receives an event from the ffmpeg webworker. Below are the supported commands:

  • onReady: The webworker has loaded ffmpeg successfully.
  • onStdout: Listens to standard ffmpeg-js message outputs.
  • onStart: Command has been received and started.
  • onDone: Command has been completed. Receives the data from ffmpeg as the first parameter.
  • onFileReceived: Input file has been set on the client.

workerClient.inputFile : File

The file that ffmpeg-webworker would be working with on issue of command.

workerClient.worker : WebWorker

An instance of the web worker that has ffmpeg-js loaded in it.

workerClient.readFileAsBufferArray (file: File) : ArrayBuffer

Converts the passed file to a file buffer array.

workerClient.inputFileExists : boolean

Detects if the inputFile has been passed in correctly.

workerClient.convertInputFileToArrayBuffer (file: File) : ArrayBuffer

Converts already set input file in the library to Buffer Array for processing

workerClient.runCommand (command: String, totalMemory = 33554432: Number) : void

Accepts a valid ffmpeg command to be run against the input file

workerClient.log (message: String [, String []]) : void

Logs messages to standard console.

This is the default exported property of the module. It ease the interaction with the already initialized and loaded ffmpeg webworker Javascript library.

Other exported modules are:

FFMPEGWebworker

The official web worker implementation that makes easier the loading of ffmpeg-js and running command in a worker.

FFMPEGWebworkerClient

Official listener for FFMPEGWebworker.

import { FFMPEGWebworkerClient } from 'ffmpeg-webworker';

const webworkerClient = new FFMPEGWebworkerClient();

// The above is same as
// import webworkerClient from "ffmpeg-webworker";

webworkerClient.on('ready', () => {
  console.log('FFMPEG has been loaded, and can receive commands');
});

Credits

This library has been made possible with the awesome work by folks at Ffmpeg.js and ffmpeg-webworker