Actions11
- Filters and Effect Actions
- Metadata Actions
- RTMP Restreaming Actions
- Transcoding Actions
- Video Processing Actions
Overview
This node provides video processing capabilities using ffmpeg, specifically including an operation to extract audio from a video file ("Video To Audio"). It is useful when you want to convert video content into audio format for purposes such as podcast creation, transcription, or audio analysis. For example, you can input a video URL or binary video data and output the extracted audio in a specified format with customizable codec, bitrate, and channel options.
Properties
| Name | Meaning |
|---|---|
| Video Input | A valid video URL or the name of the input binary field containing the video to process. |
| Audio Output Name | The name of the output binary field where the extracted audio file will be stored. |
| Video Processing Options | Collection of optional settings: • Audio Codec (string) — specify the audio codec to use. • Audio Bitrate (number) — set the audio bitrate in kbps (default 128). • Audio Channels (number) — number of audio channels (default 1). |
Output
The node outputs the extracted audio as binary data under the specified output binary field name. The json output contains metadata about the processed file, while the binary output holds the actual audio file extracted from the input video.
Dependencies
- Requires an API key credential for accessing the underlying ffmpeg service.
- The node depends on ffmpeg functionality exposed via an external API or service configured in n8n.
- No additional environment variables are explicitly required beyond the API authentication.
Troubleshooting
- Invalid video input: Ensure the video URL is accessible or the binary input field name is correct and contains valid video data.
- Unsupported audio codec: If specifying an audio codec, verify it is supported by the ffmpeg service.
- Incorrect output field name: The output binary field name must be unique and not conflict with existing fields.
- API authentication errors: Confirm that the API key credential is correctly configured and has necessary permissions.
- Audio extraction failure: Check if the input video actually contains an audio stream; otherwise, extraction will fail.