Infery.ai
← All tools

Concatenate audio

Audio

audio.concat

in: audioout: audio

Join multiple audio clips end-to-end.

Pricing

Price
6.25 cr / second

Prices in credits (1 credit = $0.01).

Concatenate Audio

Join two or more audio clips end-to-end into a single continuous output file.

When to use

  • Assemble a podcast — stitch intro, body segments, and outro together.
  • Merge split recordings — combine parts recorded in separate sessions.
  • Build playlists — produce a single deliverable file from ordered tracks.

Inputs & outputs

Input modalityAudio files (list of URLs)
Output modalityAudio file (GCS URL)
Min clips2
Max clips10
Max total size5 GB

Parameters

No operation-level parameters. All input URLs are supplied as audios in the input object.

ParamRequiredDescription
(none)Clips are joined in the order provided in audios.

Examples

Join two podcast segments

{
  "type": "audio.concat",
  "input": {
    "audios": [
      "gs://infery-prod-media/example/part1.mp3",
      "gs://infery-prod-media/example/part2.mp3"
    ]
  },
  "params": {}
}

Assemble three tracks in order

{
  "type": "audio.concat",
  "input": {
    "audios": [
      "gs://infery-prod-media/example/intro.mp3",
      "gs://infery-prod-media/example/main.mp3",
      "gs://infery-prod-media/example/outro.mp3"
    ]
  },
  "params": {}
}

Related capabilities

  • audio.trim — trim individual clips before concatenating
  • audio.transcode — re-encode the concatenated output
  • audio.pipeline — chain concat with other audio ops in one step
  • video.concat — equivalent operation for video files

Examples

Join two clips

{}