
Welche FFmpeg-Einstellungen sollte ich verwenden, um Rohvideos aufzunehmen und x265
für 4K-UHD-Discs zu konvertieren? Dies ist ein 1-Pass-Beispiel.
Braucht es noch mehr -x265-params
?
Wird DTS in Bezug auf Audio -c:a dca -strict -2
mit 4K-Discs und -Playern kompatibel sein? Und wofür ist der Befehl „Lossless“ dca
?
Folgendes habe ich bisher:
ffmpeg -y
-i rawvideo
-c:v libx265
-preset slow -b:v 50M -maxrate 75M -bufsize 75M
-pix_fmt yuv420p10le
-r 60
-vf "scale=3840:-2"
-profile:v main10 -level 5.1 -sar 1:1 -x265-params "colorprim=bt2020:transfer=bt2020:colormatrix=bt2020"
-map 0:v:0?
-c:s mov_text
-map 0:s?
-c:a dca -strict -2
-b:a 1509k
-map 0:a?
-f mp4
-threads 0
output.mp4