Hagen Brooks
Hagen Brooks
@salememd Did you resolve this issue?
@salememd Late reply... The problem I have is that I don't want to display the image on the surface, I would like to save the Surface as a Bitmap on...
Look at my issue #190, Using ExifInterface will not fix the issue on some Samsung devices, I can confirm this on my Samsung J7 Pro. I found a workaround.
I can confirm this.. When selecting a file with the following name `test#12%34.mp4`, for example, you will get the following crash: ```text Caused by java.lang.IllegalArgumentException: setDataSource failed: status = 0xFFFFFFFF...
In my case I wanted to calculate a videos timescale.. --- The problem is that `FFmpegMediaMetadataRetriever` doesn't return the exact/accurate frame rate. Instead of returning `23.976` it will return `23.98`...
Your problem is here: ```java for (int count=1; count
@ShwetaChauhan18 The proper way of doing what you want to do is using the `MediaCodec` API. You will have decode each frame, drop the frames you are not interested and...
@Cdik I tried your answer, but the problem is that FFmpeg updates the progress every 0.5 second. So, even when using milliseconds, the progress is still `33 - 66 -...
@Cdik Thank you for replying. Yes mine isn't that bad, I was maybe over exaggerating. But when saving short videos it does "jump" quite a bit. I was hoping to...
Gradle plugin >3.4.0 no longer uses ProGuard to perform compile-time code optimization. Instead, it works with R8. It seems like these warnings happen because R8 has more strict rules. You...