Hagen Brooks

Results 95 comments of Hagen Brooks

@alexcohn I was able to get it working on mobile-ffmpeg using the pipe protocol. What suggestions do you have if we want to achieve the same using this library?

@alexcohn I tested it with this library and it didn't work. Even if it does, it's not the solution. This library will either have to be rebuild in a way...

@alexcohn I tested with pipe -> ```java String safUriToFFmpegPath(final Uri uri) { try { ParcelFileDescriptor parcelFileDescriptor = getContentResolver().openFileDescriptor(uri, "r"); return String.format(Locale.getDefault(), "pipe:%d", parcelFileDescriptor.getFd()); } catch (FileNotFoundException e) { return "";...

@alexcohn Thank you for your reply. I have tested the above and I get `/proc/4759/fd/70: Permission denied` when selecting from the SD Card. I see you mentioned this: >Work around...

You can exclude both at build time by adding the following in you app level `build.gradle`: ```java android { ... aaptOptions { ignoreAssetsPattern "!*ffprobe" ignoreAssetsPattern "!x86" } } ```

@panjianghao Yes, you are right, well spotted. @kartikj07 This issue can be closed.

Do you have `1` issue? :satisfied:

I read that it's because you are useing the newer version of isoparser

Are you setting a max file size (`HBRecorder.setMaxFileSize(long)`)?

If there is no frame to retrieve at the given time stamp, it will get the closest frame to the time you provided. Your issue is, you think you are...