mp4parser icon indicating copy to clipboard operation
mp4parser copied to clipboard

A Java API to read, write and create MP4 files

Results 122 mp4parser issues
Sort by recently updated
recently updated
newest added

We're consuming a library that uses `mp4parser` under the hood. Running `./gradlew -q app:dependencies` gives us this output for our `debugRuntimeClasspath`: ``` | | | +--- org.mp4parser:isoparser:1.9.41 | | |...

Seeing this issue on Android: ` java.lang.NoSuchMethodError: No virtual method limit(I)Ljava/nio/ByteBuffer; in class Ljava/nio/ByteBuffer; or its super classes (declaration of 'java.nio.ByteBuffer' appears in /system/framework/core-oj.jar) at org.mp4parser.AbstractBoxParser.parseBox(AbstractBoxParser.java:84) at org.mp4parser.BasicContainer.initContainer(BasicContainer.java:107) at org.mp4parser.IsoFile.(IsoFile.java:57)...

i have write this code to convert H264AnnexBTrack to FragmentedMp4Writer FileInputStream stream = new FileInputStream(new File("/media/ashraf/WorkSpace/IdeaProjects/streamer/m.h264")); H264AnnexBTrack h264AnnexBTrack = new H264AnnexBTrack(stream); WritableByteChannel channel = new FileOutputStream(new File("output.mp4")).getChannel(); FragmentedMp4Writer writer =...

There will be an exception when two videos with inconsistent key frames are combined

I use MediaRecoder to recode video, first, I use back camera to recode video1(MP4), and then use front camera to recode video2(Mp4). Finnally, I append video2 to video1 as video3,...

After upgrading from 1.1.7 to later versions, OutOfMemoryError happens on MovieCreator.build() I think it's related with removing deferred mapping. Log from 1.1.14 ``` Caused by: java.lang.OutOfMemoryError: Failed to allocate a...

RandomAccessFile not properly closed in MovieCreator: I am getting this strictmode warning: ``` at android.os.StrictMode$AndroidCloseGuardReporter.report(StrictMode.java:1883) at dalvik.system.CloseGuard.warnIfOpen(CloseGuard.java:286) at java.io.RandomAccessFile.finalize(RandomAccessFile.java:1238) at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:291) at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:278) at java.lang.Daemons$Daemon.run(Daemons.java:139) at java.lang.Thread.run(Thread.java:919) Caused by: java.lang.Throwable:...

I am trying to replace the audio of an mp4 video. I have a mp4 source file and a .aac audio file. Mp4 file I am recording from native android...