Use consistent movflags syntax for progressive MP4 downloads

- Change 'faststart' to '+faststart' for consistency with other movflags
- Ensures moov atom is at the start of file for better seeking
This commit is contained in:
mani
2026-01-08 01:24:38 +01:00
parent 60f8a22b26
commit 62db97a210

View File

@@ -7494,7 +7494,7 @@ namespace MediaBrowser.Controller.MediaEncoding
else
{
// Progressive download - use faststart for proper seeking and duration
format = " -f mp4 -movflags faststart";
format = " -f mp4 -movflags +faststart";
}
}