Skip to content

Commit

Permalink
Make style check happy?
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmcmurtrie authored and benoit74 committed Feb 13, 2024
1 parent 7880364 commit 10cc0e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/zimscraperlib/video/presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ class VideoWebmLow(Config):
options: ClassVar[Dict[str, Optional[Union[str, bool, int]]]] = {
"-codec:v": "libvpx", # video codec
"-quality": "best", # codec preset
"-b:v": "128k", # Adjust quantizer within min/max to target this bitrate
"-qmin": "18", # Reduce the bitrate on very still videos once the quality is good enough.
"-qmax": "40", # Increase the bitrate on very busy videos once the quality degrades too much. Also reduce key shimmer bug.
"-b:v": "128k", # Adjust quantizer within min/max to target this bitrate
"-qmin": "18", # Reduce the bitrate on very still videos
"-qmax": "40", # Increase the bitrate on very busy videos
"-vf": "scale='480:trunc(ow/a/2)*2'", # frame size
"-codec:a": "libvorbis", # audio codec
"-ar": "44100", # audio sampling rate
Expand Down

0 comments on commit 10cc0e2

Please sign in to comment.