Skip to content

Commit

Permalink
* Fixing #296 low quality auto-crop due to high rounding, increasing …
Browse files Browse the repository at this point in the history
…accuracy from 16 to 2 pixels
  • Loading branch information
cdgriffith committed Feb 11, 2022
1 parent 88d33ab commit 2b7d3aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog

## Version 4.6.1
## Version 4.7.0

* Adding #163 audio matching in profiles
* Fixing #296 low quality auto-crop due to high rounding, increasing accuracy from 16 to 2 pixels
* Fixing concat builder behavior to work smoother
* Fixing thumbnail generation for concat images
* Fixing FFmpeg download to look for 5.x GPL build now that names have changed
Expand Down
2 changes: 1 addition & 1 deletion fastflix/flix.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def get_auto_crop(
"-map",
f"0:{input_track}",
"-vf",
"cropdetect",
"cropdetect=round=2",
"-vframes",
"10",
"-f",
Expand Down
2 changes: 1 addition & 1 deletion fastflix/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__version__ = "4.6.1"
__version__ = "4.7.0"
__author__ = "Chris Griffith"

0 comments on commit 2b7d3aa

Please sign in to comment.