diff options
author | Rigel Kent <par@rigelk.eu> | 2018-11-12 15:43:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 15:43:51 +0100 |
commit | 408f50ebc7cc3c0887d1e77a5c04508517dc151e (patch) | |
tree | e4d5178ed3ccc46da35184127ab8200b9609e76b /server/helpers/ffmpeg-utils.ts | |
parent | e2266e4f822a2dd91c1247829b96b881ccb63e0b (diff) | |
download | PeerTube-408f50ebc7cc3c0887d1e77a5c04508517dc151e.tar.gz PeerTube-408f50ebc7cc3c0887d1e77a5c04508517dc151e.tar.zst PeerTube-408f50ebc7cc3c0887d1e77a5c04508517dc151e.zip |
(ffmpeg) force pixel format yuv420p (#1394)
Diffstat (limited to 'server/helpers/ffmpeg-utils.ts')
-rw-r--r-- | server/helpers/ffmpeg-utils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/helpers/ffmpeg-utils.ts b/server/helpers/ffmpeg-utils.ts index a108d46a0..8b9045038 100644 --- a/server/helpers/ffmpeg-utils.ts +++ b/server/helpers/ffmpeg-utils.ts | |||
@@ -310,6 +310,7 @@ async function presetH264 (command: ffmpeg.FfmpegCommand, resolution: VideoResol | |||
310 | .outputOption('-level 3.1') // 3.1 is the minimal ressource allocation for our highest supported resolution | 310 | .outputOption('-level 3.1') // 3.1 is the minimal ressource allocation for our highest supported resolution |
311 | .outputOption('-b_strategy 1') // NOTE: b-strategy 1 - heuristic algorythm, 16 is optimal B-frames for it | 311 | .outputOption('-b_strategy 1') // NOTE: b-strategy 1 - heuristic algorythm, 16 is optimal B-frames for it |
312 | .outputOption('-bf 16') // NOTE: Why 16: https://github.com/Chocobozzz/PeerTube/pull/774. b-strategy 2 -> B-frames<16 | 312 | .outputOption('-bf 16') // NOTE: Why 16: https://github.com/Chocobozzz/PeerTube/pull/774. b-strategy 2 -> B-frames<16 |
313 | .outputOption('-pix_fmt yuv420p') // allows import of source material with incompatible pixel formats (e.g. MJPEG video) | ||
313 | .outputOption('-map_metadata -1') // strip all metadata | 314 | .outputOption('-map_metadata -1') // strip all metadata |
314 | .outputOption('-movflags faststart') | 315 | .outputOption('-movflags faststart') |
315 | 316 | ||