AbedElazizShe / LightCompressor_iOS

A powerful and easy-to-use video compression swift package for iOS.
MIT License
97 stars 18 forks source link

Ask a question #2

Closed Jayxiang closed 3 years ago

Jayxiang commented 3 years ago

Why choose very_high bitrate to use Int(bitrate * 0.5) instead of Int(bitrate * 0.8). When I change it to Int(bitrate * 0.8) or other higher coefficients in the project, the compressed video will not play normally. So I want to know why you use Int(bitrate * 0.5).

AbedElazizShe commented 3 years ago

@Jayxiang thank you for opening this issue. To be honest, I haven't tried to get that high. The videos have reasonable resolution when I tested 0.5 including the Android library so I decided to use that value. I will spend sometime to try different values and will let you know of the findings.

Jayxiang commented 3 years ago

@AbedElazizShe Did you find anything?