MediaRuntime 제품

비디오 인코딩

하나의 비디오 소스를 비동기 작업으로 재생 파일, 적응형 스트림, 소셜 포맷, 포스터, GIF 미리보기, 프레임 시퀀스 및 편집 마스터로 변환합니다.

MP4, HLS, 소셜, GIF 및 프레임
H.264, HEVC, AV1 및 ProRes 워크플로
하나의 비동기 작업에서 여러 결과물 생성
POST https://mediaruntime.com/v1/transcode

소스에서 결과물 전달까지

1

Provide the source

Pass a public or time-limited HTTPS URL, or use the optional upload-target flow for local bytes.

2

Choose output recipes

Request one playback file, an HLS ladder, or several related artifacts in the same outputs array.

3

Receive completion

Handle the signed terminal webhook, then use the returned artifact manifest or bundle URL.

구축할 수 있는 기능

Web playback

Produce faststart H.264/AAC MP4, multi-rendition MP4 ladders, HEVC for Apple playback, or efficient AV1 outputs.

Adaptive streaming

Generate an HLS VOD package with a master playlist, 1080p and 720p variants, and related media segments.

Social delivery

Fit landscape or square media into a 1080×1920 vertical canvas with a blurred background and no subject crop.

Previews and extraction

Create poster frames, palette-optimized GIFs, and sampled JPG frame sequences for previews, indexing, or datasets.

관련 프리셋

mp4_720p_h264_aacmp4_ladder_v1hls_ladder_v1social_vertical_blurgif_hqposter_frame_v1extract_frames_1mp4_hevc_1080pmp4_av1_smartmov_prores_422

작업 요청 예제

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

{
  "file_url": "https://cdn.example.com/media/trailer.mp4",
  "metadata": {
    "media_type": "video",
    "asset_id": "trailer-0426"
  },
  "outputs": [
    {
      "type": "mp4",
      "preset": "mp4_720p_h264_aac",
      "path_suffix": "web",
      "poster_time_sec": 4,
      "poster_format": "jpg",
      "gif_preview": {
        "enabled": true,
        "start_sec": 2,
        "duration_sec": 4
      }
    },
    {
      "type": "hls",
      "preset": "hls_ladder_v1",
      "path_suffix": "stream"
    }
  ]
}