Questions tagged [mp4parser]

Provides a Java API for parsing MP4 files.

Provides a Java API for parsing MP4 files.

The isoparser API can read and write the MP4 file structure. It is a low level tool dealing with the so called boxes but it is as well as dealing with structures like tracks and movies.

The Iso Viewer helps to visualize the MP4 box structure. It is available as a Java Webstart application and as well as download.

The project home is https://github.com/sannies/mp4parser

Typical tasks for the MP4 Parser are:

  • Muxing audio/video into an MP4 file
  • Append recordings that use same encode settings
  • Adding/Changing metadata
  • Shorten recordings by omitting frames
172 questions
0
votes
1 answer

Apache Tika MP4 metadata keys

I'm using Apache Tika v 1.4 to parse video files in the following way. Metadata metadata = new Metadata(); String content = new Tika().parseToString(file.getInputStream(), metadata); metadata.get(KEY) The problem is that I don't know which keys to…
0
votes
1 answer

How to write Apple meta-information to MP4 file with mp4parser

I'm using the mp4parser library to add iTunes compatible meta-information to some MP4 files. This example is simplified, because it does not check if boxes are available, but reproduces the issue. FileChannel fcr = new RandomAccessFile(srcFile,…
Thor
  • 6,607
  • 13
  • 62
  • 96
0
votes
1 answer

How to get avcC atom from an iTunes video using Mp4parser

Is there a way to access the avcC atom when reading a file that originated from iTunes with the mp4parser library for java? I've done this manually using the pasp atom in some custom code, but after switching to this library I lost access to the…
Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131
-1
votes
1 answer

NullPointerException on MovieCreator().build android unity plugin

I am using mp4parser in my app to merge audio and video which is working fine in android. But when I make .aar file and add the plugin in unity it throws a NullPointerException. Here is the log java.lang.NullPointerException: Attempt to invoke…
-1
votes
1 answer

Android mp4parser - create Track from Bitmap

How to have a video Track from an image (Bitmap) on Android? I need to add an image at end of my video.. for 5 seconds Thanks
Tiziano Munegato
  • 869
  • 1
  • 7
  • 21
-1
votes
1 answer

Merging multiple mp4 audio files - Android

I am trying to make an audio recorder feature for my app which supports pausing/resuming recording. At the end, when the user hits save, i only want 1 file. In android, mediarecorder doesn't support pause and write to a new file each time its…
-1
votes
1 answer

How do you convert a Hex value coming in a video container into a UTC timestamp?

My mp4 container contains a value of (0XC64322C1) for creation time, and the analyzer interprets as 2009/05/27 17:02:57; How is this conversion done.A C code implementation for the same would be of great help.
1 2 3
11
12