1.1.6 • Published 9 years ago

ffmpeg-speed v1.1.6

Weekly downloads
2
License
ISC
Repository
github
Last release
9 years ago

ffmpeg-speed

Speed up/slow down effect for ffmpeg.

npm install ffmpeg-speed --save

Options

  • input - full input directory to video file.
  • speed - 'x0.5' or 'x2'
  • output - full output directory to new video file.
  • unlink - boolean : delete input file after finishing.

Working example.

const ffmpegSpeed = require('ffmpeg-speed'),
	  path = require('path');

var config = {
	input: path.join(__dirname, 'input.mp4'),
	speed: 'x0.5',
	output: path.join(__dirname, 'output.mp4'),
	unlink: true
};


ffmpegSpeed(config, function(err) {
	if(err) {
		throw err;
	}

	// ...
});
1.1.6

9 years ago

1.1.5

10 years ago

1.1.4

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago