Code Monkey home page Code Monkey logo

stopmotion's Introduction

stopmotion Flattr this!experimental

Uses ffmpeg multiple image buffer frames into a video file. Note that you'll need it installed on your system to get this working.

Usage

stopmotion

video = require('stopmotion')([options])

Creates a video instance, which accepts the following options:

  • width: the final width of the video.
  • height: the final height of the video.
  • format: the output's container format, e.g. avi. Defaults to webm.
  • inCodec: the input image codec, e.g. png. Defaults to gif.
  • outCodec: the output video codec. Defaults to libvpx
  • crf: the constant rate factor. The lower this is, the better the output quality. Defaults to 23.

All of the above are optional.

video.frame()

Creates a writeable stream for you to pipe a single frame buffer to. Note that it should match the video's format option. Frames will be ordered by when you created their stream.

var video = require('stopmotion')()
var fs = require('fs')

fs.createReadStream('frame-001.gif')
  .pipe(video.frame())

video.ready()

Once you've created all of your frames, use this method to encode the final result and get it back as a readable stream.

var video = require('stopmotion')()
var fs = require('fs')

;['frame-001.gif'
, 'frame-002.gif'
, 'frame-003.gif'
, 'frame-004.gif'
, 'frame-005.gif'
, 'frame-006.gif'
].forEach(function(filename) {
  fs.createReadStream(filename)
    .pipe(video.frame())
})

video.ready().pipe(
  fs.createWriteStream('frames.webm')
)

License

MIT. See LICENSE.md for details.

stopmotion's People

Contributors

hughsk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

stopmotion's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.