mp4parser icon indicating copy to clipboard operation
mp4parser copied to clipboard

No Movie class (no muxer package) in android using gradle

Open fmmarzoa opened this issue 6 years ago • 4 comments

Added this to my app's level build.gradle:

implementation 'org.mp4parser:isoparser:1.9.27'

The dependency is fine, but there seem to be missing parts on the library I'm getting from gradle.

Specifically the whole muxer package seems to be lost, so I have no Movie class to begin with.

image

Is there any problem with the repository files?

Thanks a lot in advance, Fran

fmmarzoa avatar Oct 30 '19 11:10 fmmarzoa

Well, I tried this just for the sake of it:

implementation 'org.mp4parser:muxer:1.9.27'

And it seems I've got the muxer... not sure if this is the right way to do this, though.

fmmarzoa avatar Oct 30 '19 11:10 fmmarzoa

It seems there was a but in version 1.9.27 due which I was getting out of memory crashes in Android, and I read here about a 1.9.39 version so I ended up with the following in my app's build.gradle file:

implementation 'org.mp4parser:isoparser:1.9.39'
implementation 'org.mp4parser:muxer:1.9.39'

I think this is fine, isn't it?

fmmarzoa avatar Oct 30 '19 13:10 fmmarzoa

You can use the following versions:

implementation 'org.mp4parser:isoparser:1.9.41'
implementation 'org.mp4parser:muxer:1.9.41'

The out of memory issue should be gone when using this release.

Please close the issue.

HBiSoft avatar Jan 27 '20 09:01 HBiSoft

I am also confused with missing instruction of append muxer library.. So I couldn't find associated classes. Please update README.md

mym0404 avatar Feb 14 '20 05:02 mym0404