AbedElazizShe / LightCompressor

A powerful and easy-to-use video compression library for android uses MediaCodec API.
Apache License 2.0
539 stars 116 forks source link

Video FPS minimum limit at 21 FPS #116

Closed Korbpw closed 2 years ago

Korbpw commented 2 years ago
configureWith = Configuration(
    quality = VideoQuality.VERY_LOW,
    isMinBitrateCheckEnabled = true,
    videoWidth = 480.0,
    videoHeight = 320.0,
    frameRate = 12
)

Even do my framerate is at 12 on the config it always renders out at 21 FPS and no lower than that ( i counted it on After Effects too )

image

AbedElazizShe commented 2 years ago

Hi @Korbpw. If i am not mistaken, the value could be reset by the device itself for some cases. And modifying it could require lots of manual work to supply the frames.

I want to remove the support for this until I do some research to determine the best way to implement it. I hope it won't affect your work.

thank you.