1.0.9 • Published 5 years ago

ff-util v1.0.9

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

FF Util

A set of useful utilities for running ffmpeg with node

Build Status npm version Coverage Status

Installation

First make sure you have the ffmpeg binary downloaded and globally accessible on your machine.

Next, install FF Util via NPM:

npm install ff-util

Usage

import { run } from 'ff-util';

const args = [
    '-i', './video.mov',
    './video.mp4'
]

run({args})
    .then(() => console.log('process complete!'))

With parsed progress:

import { run, parse } from 'ff-util';

const args = [
    '-i', './video.mov',
    './video.mp4'
]

const logger = (stdOut: string) => {
    const parsed = parse({ffProgressLine: stdOut})
    console.log({parsed})
}

run({args, logger})
    .then(() => console.log('process complete!'))

Planned features

FeatureStatus
Simple Runner
Progress Parser
Progress Percent & ETA
Pause/Resume process
Structured & typed ffmpeg args
Process splitter and restitcher for parallel encoding *

(*) Useful for blazing-fast transcoding in a distributed infrastructure like Kubernetes, AWS Lambda, etc.

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago