Skip to content

Commit

Permalink
Fix git processor
Browse files Browse the repository at this point in the history
  • Loading branch information
tienthanh1993 committed May 13, 2023
1 parent 7016129 commit 83acd4a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/src/formats/motion.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ class GifFormat extends MotionFormat {
}) {
return FFmpegRenderOperation([
"-y",
"-f", "rawvideo", // input format
"-pixel_format", "rgba", // input pixel format
"-s", "${width}x${height}", // input size
"-r", "$frameRate", // input frame rate
"-i", inputPath, // retrieve captures
transparency
? "-filter_complex??[0:v] setpts=N/($frameRate*TB),"
Expand Down

0 comments on commit 83acd4a

Please sign in to comment.