1

I want to merge multiple videos sequentially and get one video with mp4parser but can't start using it... I added in file gradle - implementation 'org.mp4parser:isoparser:1.9.27' and following the example, it is impossible to find

Movie()

then I realize that I need to add the plugin aspectj-rt.jar, but can't find up-to-date information on it

please help me with this problem. I see in the network that various developers successfully use this library to work with video files. But nowhere is there information on how to get started with mp4parser.

RusyaMed
  • 151
  • 2
  • 11

3 Answers3

6

If you want to use the latest version of mp4parser you have to add an additional library to it implementation 'org.mp4parser:muxer:1.9.41' to get all the missing classes Movie() and many other.

Please add the following:

implementation 'org.mp4parser:isoparser:1.9.41'  
implementation 'org.mp4parser:muxer:1.9.41'
Ali Noureddine
  • 324
  • 5
  • 20
1

implementation 'org.mp4parser:isoparser:1.9.41 ' try following dependcy and let me know

Edgar
  • 860
  • 1
  • 17
  • 38
0

it worked for me

implementation "com.googlecode.mp4parser:isoparser:1.1.22"
RusyaMed
  • 151
  • 2
  • 11