
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
ffmpeg-template-assembly
Advanced tools
`ffmpeg-template-assembly` is a tool designed to streamline the process of video compilation using FFmpeg. It allows for dynamic template generation and video rendering, making it an ideal solution for creating personalized videos programmatically.
ffmpeg-template-assembly is a tool designed to streamline the process of video compilation using FFmpeg. It allows for dynamic template generation and video rendering, making it an ideal solution for creating personalized videos programmatically.
This project leverages FFmpeg for video processing, providing an interface to compile videos based on a template descriptor and project configuration. It simplifies the process of generating custom videos by handling complex FFmpeg commands and configurations internally.
Ensure you have the following prerequisites installed:
Install the project dependencies using npm, yarn or pnpm:
pnpm add ffmpeg-template-assembly
Clone the repository and install the dependencies:
git clone https://github.com/heristop/ffmpeg-template-assembly.git
cd ffmpeg-template-assembly
pnpm i
Create a JSON file (e.g., sample.json in the src/shared/templates directory) with your template descriptor.
To use the ffmpeg-template-assembly, you can run the compile command with the path to your template JSON file as an argument:
pnpm compile src/shared/templates/sample.json
This will generate a video named sample_output.mp4 in the build directory.
Import the compile function from the package and provide a project configuration object:
import { compile, loadConfig } from 'ffmpeg-template-assembly';
// Project Configuration
const projectConfig = {
assetsDir: './assets',
currentLocale: 'en',
fields: {
form_1_firstname: 'Firsname',
form_1_lastname: 'Lastname',
},
};
You might provide a template descriptor to the compile function to generate a video:
compile(projectConfig, {
global: {
variables: {
videoDemo: 'https://github.com/heristop/ffmpeg-template-assembly/raw/develop/src/shared/assets/videos/earth.mp4',
colorsList: ['#FFFFFF', '#000000'],
},
music: {
name: 'default',
url: 'https://github.com/heristop/ffmpeg-template-assembly/raw/develop/src/shared/assets/musics/point_being_-_go_by_ocean___ryan_mccaffrey.mp3',
},
orientation: 'landscape',
musicEnabled: true,
transitionDuration: 0.5,
},
sections: [
{
name: 'intertitle_1',
type: 'color_background',
visibility: ['video_segment'],
options: {
backgroundColor: '{{ color2 }}@0.1',
videoUrl: '{{ videoDemo }}',
duration: 3,
musicVolumeLevel: 0.4,
},
filters: [
{
type: 'drawbox',
values: {
x: 0,
y: 0,
w: 1280,
h: 360,
c: '{{ color1 }}@1',
t: 'fill',
},
},
{
type: 'drawtext',
values: {
text: {
en: '{{ form_1_firstname }} {{ form_1_lastname }}',
},
fontcolor: '{{ color1 }}',
fontsize: 40,
x: '(w-text_w)/2',
y: '(h-text_h)/1.4',
fontfile: 'Quicksand.ttf',
alpha: "'if(lt(t,0.5),0,if(lt(t,1.5),(t-0.5)/1,if(lt(t,5),1,if(lt(t,7),(1-(t-6))/1,0))))'",
},
},
],
},
{
name: 'video_1',
type: 'video',
visibility: ['video_segment'],
options: {
videoUrl: '{{ videoDemo }}',
duration: 4,
musicVolumeLevel: 1,
},
filters: [
{
type: 'fadein',
values: {
color: '{{ color2 }}',
},
},
{
type: 'fadeout',
values: {
color: '{{ color2 }}',
},
},
],
},
],
});
Or you might provide a path to the template descriptor JSON file:
await compile(projectConfig, await loadConfig('./src/shared/templates/sample.json'));
To run tests, use the following command:
pnpm test
Contributions are welcome! For major changes, please open an issue first to discuss what you would like to change. Ensure to update tests as appropriate.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
`ffmpeg-template-assembly` is a tool designed to streamline the process of video compilation using FFmpeg. It allows for dynamic template generation and video rendering, making it an ideal solution for creating personalized videos programmatically.
We found that ffmpeg-template-assembly demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.