Changed to 30% frame in image convert

This commit is contained in:
Randall Lawrence
2019-09-25 13:31:56 +03:00
parent f5c008c1a7
commit ed4e34b808
+1 -1
View File
@@ -20,7 +20,7 @@ try:
def _tgs_to_png(animation: Animation, width: int = None,
height: int = None, frame: int = None) -> Tuple[bytes, Optional[bytes]]:
if not frame:
frame = int(animation.out_point * 0.9)
frame = int(animation.out_point * 0.3)
if not (width and height):
width = animation.width
height = animation.height