Switch the transcoding quality from 36M to 120M
This brings it significantly closer to the original quality of my Sony A7C. I will need to make sure those things work well with other input files too in the future.
This commit is contained in:
parent
1ef4481ace
commit
27150585f8
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ class Transcoder(GObject.GObject):
|
||||||
cmd = [
|
cmd = [
|
||||||
"ffmpeg", "-y", "-i", in_path,
|
"ffmpeg", "-y", "-i", in_path,
|
||||||
"-vcodec", "dnxhd", "-acodec", "pcm_s16le",
|
"-vcodec", "dnxhd", "-acodec", "pcm_s16le",
|
||||||
"-b:v", "36M", "-pix_fmt", "yuv422p", "-r", "30000/1001",
|
"-b:v", "120M", "-pix_fmt", "yuv422p",
|
||||||
"-f", "mov", "-map_metadata", "0"
|
"-f", "mov", "-map_metadata", "0"
|
||||||
]
|
]
|
||||||
if vf:
|
if vf:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue