mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat(server): add faststart to ffmpeg options (#2138)
This commit is contained in:
parent
c011b06bea
commit
009b6e3ca5
1 changed files with 4 additions and 0 deletions
|
|
@ -136,6 +136,10 @@ export class VideoTranscodeProcessor {
|
||||||
`-vcodec ${config.ffmpeg.targetVideoCodec}`,
|
`-vcodec ${config.ffmpeg.targetVideoCodec}`,
|
||||||
`-acodec ${config.ffmpeg.targetAudioCodec}`,
|
`-acodec ${config.ffmpeg.targetAudioCodec}`,
|
||||||
`-vf scale=${config.ffmpeg.targetScaling}`,
|
`-vf scale=${config.ffmpeg.targetScaling}`,
|
||||||
|
|
||||||
|
// Makes a second pass moving the moov atom to the beginning of
|
||||||
|
// the file for improved playback speed.
|
||||||
|
`-movflags faststart`,
|
||||||
])
|
])
|
||||||
.output(savedEncodedPath)
|
.output(savedEncodedPath)
|
||||||
.on('start', () => {
|
.on('start', () => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue