Skip to content

Commit

Permalink
fix: Set ffmpeg video bitrate to 6000k (as requested by owncast user)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed Jun 16, 2023
1 parent 945271b commit 86ee9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sinks/ffmpeg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl FfmpegSink {
("r", self.fps.to_string().as_str()),
("g", (self.fps * 2).to_string().as_str()),
("ar", "44100"),
("b:v", "4500k"),
("b:v", "6000k"),
("b:a", "128k"),
("threads", "4"),
// ("f", "flv"),
Expand Down

0 comments on commit 86ee9cb

Please sign in to comment.