1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

feat(server): add faststart to ffmpeg options (#2138)

This commit is contained in:
Michel Heusschen 2023-03-31 16:34:54 +02:00 committed by GitHub
parent c011b06bea
commit 009b6e3ca5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,6 +136,10 @@ export class VideoTranscodeProcessor {
`-vcodec ${config.ffmpeg.targetVideoCodec}`,
`-acodec ${config.ffmpeg.targetAudioCodec}`,
`-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)
.on('start', () => {