1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/node_modules/ffmpeg/README.md

349 lines
10 KiB
Markdown
Raw Normal View History

2020-03-03 20:30:50 +00:00
node-ffmpeg
===========
[FFmpeg](http://ffmpeg.org/) module for [Node](http://nodejs.org/). This library provides a set of functions and utilities to abstract commands-line usage of ffmpeg. To use this library requires that ffmpeg is already installed (including all necessary encoding libraries like libmp3lame or libx264)
You can install this module using [npm](http://github.com/isaacs/npm):
npm install ffmpeg
## Usage
To start using this library, you must include it in your project and then you can either use the callback function or through the [promise](https://github.com/cujojs/when) library:
var ffmpeg = require('ffmpeg');
Use the callback function
try {
new ffmpeg('/path/to/your_movie.avi', function (err, video) {
if (!err) {
console.log('The video is ready to be processed');
} else {
console.log('Error: ' + err);
}
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}
Use the approach with the library promise
try {
var process = new ffmpeg('/path/to/your_movie.avi');
process.then(function (video) {
console.log('The video is ready to be processed');
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}
## The video object
Each time you create a new instance, this library provides a new object to retrieve the information of the video, the ffmpeg configuration and all methods to make the necessary conversions:
try {
var process = new ffmpeg('/path/to/your_movie.avi');
process.then(function (video) {
// Video metadata
console.log(video.metadata);
// FFmpeg configuration
console.log(video.info_configuration);
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}
## Preset functions
The video object contains a set of functions that allow you to perform specific operations independent of the settings for the conversion. In all the functions you can use the approach with the callback function or with the promise object
### *video.fnExtractSoundToMP3 (destionationFileName, callback)*
This function extracts the audio stream of a video into an mp3 file
Params:
* __destionationFileName__: Full path of the new file:
> /path/to/your_audio_file.mp3
* __callback__: *(optional)* If specified at the end of the process it will return the path of the new audio file:
> function (error, file)
Example:
try {
var process = new ffmpeg('/path/to/your_movie.avi');
process.then(function (video) {
// Callback mode
video.fnExtractSoundToMP3('/path/to/your_audio_file.mp3', function (error, file) {
if (!error)
console.log('Audio file: ' + file);
});
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}
### *video.fnExtractFrameToJPG(destinationFolder, settings, callback)*
This function takes care of extracting one or more frames from the video that is being developed. At the end of the operation will return an array containing the list of extracted images
Params:
* __destinationFolder__: Destination folder for the frames generated:
> /path/to/save_your_frames
* __settings__: *(optional)* Settings to change the default settings:
{
start_time : null // Start time to recording
, duration_time : null // Duration of recording
, frame_rate : null // Number of the frames to capture in one second
, size : null // Dimension each frame
, number : null // Total frame to capture
, every_n_frames : null // Frame to capture every N frames
, every_n_seconds : null // Frame to capture every N seconds
, every_n_percentage : null // Frame to capture every N percentage range
, keep_pixel_aspect_ratio : true // Mantain the original pixel video aspect ratio
, keep_aspect_ratio : true // Mantain the original aspect ratio
, padding_color : 'black' // Padding color
, file_name : null // File name
}
* __callback__: *(optional)* If specified at the end of the process will be returned list of paths of frames created:
> function (error, files)
Example:
try {
var process = new ffmpeg('/path/to/your_movie.avi');
process.then(function (video) {
// Callback mode
video.fnExtractFrameToJPG('/path/to/save_your_frames', {
frame_rate : 1,
number : 5,
file_name : 'my_frame_%t_%s'
}, function (error, files) {
if (!error)
console.log('Frames: ' + files);
});
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}
### *video.fnAddWatermark(watermarkPath, newFilepath, settings, callback)*
This function takes care of adding a watermark to the video that is being developed. You can specify the exact position in which position the image
Params:
* __watermarkPath__: The full path where the image is stored to add as watermark:
> /path/to/retrieve/watermark_file.png
* __newFilepath__: *(optional)* Name of the new video. If not specified will be created by the function:
> /path/to/save/your_file_video.mp4
* __settings__: *(optional)* Settings to change the default settings:
{
position : "SW" // Position: NE NC NW SE SC SW C CE CW
, margin_nord : null // Margin nord
, margin_sud : null // Margin sud
, margin_east : null // Margin east
, margin_west : null // Margin west
};
* __callback__: *(optional)* If specified at the end of the process it will return the path of the new video containing the watermark:
> function (error, files)
Example:
try {
var process = new ffmpeg('/path/to/your_movie.avi');
process.then(function (video) {
// Callback mode
video.fnAddWatermark('/path/to/retrieve/watermark_file.png', '/path/to/save/your_file_video.mp4', {
position : 'SE'
}, function (error, file) {
if (!error)
console.log('New video file: ' + file);
});
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}
## Custom settings
In addition to the possibility of using the preset, this library provides a variety of settings with which you can modify to your liking settings for converting video
* __video.setDisableAudio()__: Disables audio encoding
* __video.setDisableVideo()__: Disables video encoding
* __video.setVideoFormat(format)__: Sets the new video format. Example:
video.setVideoFormat('avi')
* __video.setVideoCodec(codec)__: Sets the new audio codec. Example:
video.setVideoCodec('mpeg4')
* __video.setVideoBitRate(bitrate)__: Sets the video bitrate in kb. Example:
video.setVideoBitRate(1024)
* __video.setVideoFrameRate(framerate)__: Sets the framerate of the video. Example:
video.setVideoFrameRate(25)
* __video.setVideoStartTime(time)__: Sets the start time. You can specify the value in seconds or in date time format. Example:
// Seconds
video.setVideoStartTime(13)
// Date time format
video.setVideoStartTime('00:00:13')
* __video.setVideoDuration(duration)__: Sets the duration. You can specify the value in seconds or in date time format. Example:
// Seconds
video.setVideoDuration(100)
// Date time format
video.setVideoDuration('00:01:40')
* __video.setVideoAspectRatio(aspect)__: Sets the new aspetc ratio. You can specify the value with a number or with a string in the format 'xx:xx'. Example:
// Value
video.setVideoAspectRatio(1.77)
// Format xx:xx
video.setVideoAspectRatio('16:9')
* __video.setVideoSize(size, keepPixelAspectRatio, keepAspectRatio, paddingColor)__: Set the size of the video. This library can handle automatic resizing of the video. You can also apply a padding automatically keeping the original aspect ratio
The following size formats are allowed to be passed to _size_:
> 640x480 _Fixed size (plain ffmpeg way)_
> 50% _Percental resizing_
> ?x480 _Fixed height, calculate width_
> 640x? _Fixed width, calculate height_
Example:
// In this example, the video will be automatically resized to 640 pixels wide and will apply a padding white
video.setVideoSize('640x?', true, true, '#fff')
// In this example, the video will be resized to 640x480 pixel, and if the aspect ratio is different the video will be stretched
video.setVideoSize('640x480', true, false)
* __video.setAudioCodec(codec)__: Sets the new audio codec. Example:
video.setAudioCodec('libfaac')
* __video.setAudioFrequency(frequency)__: Sets the audio sample frequency for audio outputs in kb. Example:
video.setAudioFrequency(48)
* __video.setAudioChannels(channel)__: Sets the number of audio channels. Example:
video.setAudioChannels(2)
* __video.setAudioBitRate(bitrate)__: Sets the audio bitrate in kb. Example:
video.setAudioBitRate(128)
* __video.setAudioQuality(quality)__: Sets the audio quality. Example:
video.setAudioQuality(128)
* __video.setWatermark(watermarkPath, settings)__: Sets the watermark. You must specify the path where the image is stored to be inserted as watermark
The possible settings (the values shown are the default):
* **position : "SW"**
Position: NE NC NW SE SC SW C CE CW
* **margin_nord : null**
Margin nord (specify in pixel)
* **margin_sud : null**
Margin sud (specify in pixel)
* **margin_east : null**
Margin east (specify in pixel)
* **margin_west : null**
Margin west (specify in pixel)
Example:
// In this example will be added the watermark at the bottom right of the video
video.setWatermark('/path/to/retrieve/watermark_file.png')
## Add custom options
If the ffmpeg parameters are not present in the list of available function you can add it manually through the following function
**video.addCommand(command, argument)**
Example:
// In this example will be changed the output to avi format
video.addCommand('-f', 'avi');
## Save the file
After setting the desired parameters have to start the conversion process. To do this you must call the function 'save'. This method takes as input the final destination of the file and optionally a callback function. If the function callback is not specified it's possible use the promise object.
**video.save(destionationFileName, callback)**
Example:
try {
var process = new ffmpeg('/path/to/your_movie.avi');
process.then(function (video) {
video
.setVideoSize('640x?', true, true, '#fff')
.setAudioCodec('libfaac')
.setAudioChannels(2)
.save('/path/to/save/your_movie.avi', function (error, file) {
if (!error)
console.log('Video file: ' + file);
});
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}