mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
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.
1.7 KiB
1.7 KiB
description, i18n_source_hash, i18n_provenance, i18n_output_hash
| description | i18n_source_hash | i18n_provenance | i18n_output_hash |
|---|---|---|---|
| 動画を早送りまたはスロー再生します。 | 98dfc75c0507 | human | 7c7d0e810878 |
Video Speed
音声のピッチを保持するオプション付きで、動画を早送りまたはスロー再生します。
API Endpoint
POST /api/v1/tools/video/video-speed
動画ファイルと JSON の settings フィールドを含む multipart フォームデータを受け付けます。
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| factor | number | No | 2 |
速度の倍率(0.25-4)。1 を超える値で早送り、1 未満でスロー再生になります |
| keepPitch | boolean | No | true |
速度変更時に音声のピッチを保持します |
Example Request
curl -X POST http://localhost:1349/api/v1/tools/video/video-speed \
-H "Authorization: Bearer si_your-api-key" \
-F "file=@clip.mp4" \
-F 'settings={"factor": 0.5, "keepPitch": true}'
Example Response
{
"jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/clip.mp4",
"originalSize": 12500000,
"processedSize": 24800000
}
Notes
- 倍率
2は再生速度を2倍にします(再生時間が半分)。倍率0.5は再生速度を半分にします(再生時間が2倍)。 keepPitchがtrueの場合、音声はタイムストレッチされ、声が自然に聞こえます。falseの場合、ピッチは速度に比例して変化します。- 有効な範囲は 0.25 倍から 4 倍です。