Files
SnapOtter/apps/docs/ko/tools/video/change-fps.md
T
SnapOtterandGitHub 4963ab3bbd feat(docs-i18n): translate all documentation into 20 languages
All 181 docs markdown files translated into 20 languages (apps/docs/<locale>/**). Companion to the i18n code PR; admin-merged because the file count exceeds GitHub's per-PR CI trigger limit. Validated by pnpm i18n:check (all surfaces, 0 stale/missing) and a clean all-locale docs build.
2026-07-11 13:52:47 +08:00

1.5 KiB

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
비디오의 프레임 레이트를 변경합니다. 2bffbd04a1cb human 7257b5e1c7f2

Change FPS

비디오의 프레임 레이트를 1에서 120 fps 사이의 목표 값으로 변경합니다.

API Endpoint

POST /api/v1/tools/video/change-fps

비디오 파일과 JSON settings 필드가 담긴 multipart form data를 받습니다.

Parameters

Parameter Type Required Default Description
fps number No 30 목표 프레임 레이트(1-120)

Example Request

curl -X POST http://localhost:1349/api/v1/tools/video/change-fps \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@clip.mp4" \
  -F 'settings={"fps": 24}'

Example Response

{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/clip.mp4",
  "originalSize": 12500000,
  "processedSize": 10200000
}

Notes

  • 프레임 레이트를 낮추면 프레임이 삭제되어 파일 크기가 줄어듭니다. 높이면 빈 공간을 채우기 위해 프레임이 복제되지만 실제 모션 디테일이 추가되지는 않습니다.
  • 일반적인 목표 값: 24(영화), 30(웹/방송), 60(부드러운 재생).
  • 오디오 트랙은 원래 샘플 레이트로 유지됩니다.