Skip to content

ffmpeg.merge_audio

Operation: ffmpeg.merge_audio
Category: media
Tags: ffmpeg, audio, video

Merge an audio track into a video file

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
video_urlAssetYesVideo file URL/path
audio_urlAssetNoAudio file URL/path (optional)
NameTypeDescription
urlAssetOutput video URL
pathStringLocal file path
has_audioBooleanWhether audio was merged
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("ffmpeg-merge-audio", "tool", (n) =>
n.config({
operation: "ffmpeg.merge_audio",
// ... node-specific config
})
)
.build();