MediaRuntime 제품

오디오 처리

오디오 형식 변환, 비디오에서 오디오 추출, 음량 정규화, 앞뒤 무음 제거, 음성 처리용 WAV 및 자막 생성을 하나의 작업으로 수행합니다.

AAC/M4A, MP3, Opus 및 음성 WAV
비디오 소스에서 오디오 추출
SRT 및 WebVTT 자막
POST https://mediaruntime.com/v1/transcode

소스에서 결과물 전달까지

1

Provide video or audio

The audio output type accepts either an audio file or a video containing an audio stream.

2

Select delivery processing

Copy compatible audio, encode a predictable format, normalize to -16 LUFS, trim silence, or prepare 16 kHz mono WAV.

3

Add transcripts when needed

Attach subtitle settings to the audio output to produce SRT, WebVTT, or both alongside the audio artifact.

구축할 수 있는 기능

Format conversion

Deliver AAC in M4A, MP3, Opus, or copy a compatible source stream without re-encoding.

Video-to-audio

Submit a MOV, MP4, WebM, or other supported video and return only its selected audio format.

Podcast and speech cleanup

Normalize loudness, remove leading and trailing silence, or combine both operations before AAC delivery.

Transcription pipelines

Produce SRT and WebVTT transcripts or a 16 kHz mono PCM WAV prepared for downstream speech systems.

관련 프리셋

audio_copy_fastaudio_aac_128kaudio_mp3_128kaudio_opus_96kaudio_loudnorm_aac_128kaudio_trim_silence_aac_128kaudio_loudnorm_trim_aac_128kaudio_whisper_prep

작업 요청 예제

신뢰할 수 있는 서버에서 MediaRuntime API 키로 제출하세요. 소스는 작업 시간 동안 접근 가능한 HTTPS URL이면 되며 MediaRuntime 업로드는 선택 사항입니다.

{
  "file_url": "https://cdn.example.com/media/interview.mp4",
  "metadata": {
    "media_type": "video",
    "asset_id": "interview-0426"
  },
  "outputs": [
    {
      "type": "audio",
      "preset": "audio_aac_128k",
      "path_suffix": "audio-and-transcript",
      "subtitles": {
        "enabled": true,
        "languages": [
          "auto"
        ],
        "format": "both",
        "model": "ggml-base.bin",
        "translate_to_english": false
      }
    }
  ]
}