1.1.6 • Published 7 years ago

ffmpeg-speed v1.1.6

Weekly downloads
2
License
ISC
Repository
github
Last release
7 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

7 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago