# Core API Fix Request: Video Range Requests Support ## Issue Video player in Studio cannot seek (跳轉) because Core API video endpoint does not support HTTP Range requests. ## Current Behavior ```bash $ curl -I "http://localhost:3002/api/v1/file/{uuid}/video?start_time=0&end_time=5" HTTP/1.1 200 OK content-type: video/mp4 content-length: 1918410 # Missing: Accept-Ranges header # Missing: 206 Partial Content support ``` ## Expected Behavior ```bash $ curl -I "http://localhost:3002/api/v1/file/{uuid}/video" -H "Range: bytes=0-1000" HTTP/1.1 206 Partial Content content-type: video/mp4 content-range: bytes 0-1000/1918410 accept-ranges: bytes content-length: 1001 ``` ## Why This Matters 1. **Browser seeking requires Range support** - HTML5 `