Results 49 comments of Sebastian Annies

Plz Send me example file. pranay [email protected] schrieb am So., 24. Mai 2015 20:51: > Has anyone figured this out ? > > — > Reply to this email directly...

Encoding could be an issue. But it's not very likely in my eyes. Did you compile my code on your own? If yes: Did you use the aspectJ compiler to...

Hmm - ok, then it's definitively the video. I don't want to chase ghosts - so please send me an example file! My ffmpeg might be a different revision than...

Hi Pranay, the video you sent me is already an MP4 that contains audio and video. So basically it's the result of the code you were psoting 8 hours ago....

Mp3 in MP4 containers doesn't work very well. Please try to use AAC instead. What is your actual problem. What did you already try? udit [email protected] schrieb am Do., 28....

Hi, MP3 in MP4 containers is not working well. Don't do it is my advice. You might want to send the mp3 through Android's MediaCodec to get an AAC. Grüße,...

Hi, the H264TrackImpl is used to read raw h264 files. If the h264 is already in a MP4 container you should use the MovieCreator class to build a Movie object.You...

Movie originalAudioAndVideo = MovieCreator.build("videoAndAudio.mp4"); Track nuAudio = new AACTrackImpl( new FileDataSourceImpl("nuAudio.aac")); List nuTracks = new ArrayList(); for (Track track : originalAudioAndVideo.getTracks() ) { if (track.getHandler().equals("vide")) { nuTracks.add(track); } } nuTracks.add(nuAudio);...

So there is a list of tracks and when you try to access the first element you get an IndexOutOfBoundsException. What does that tell you? Perhaps that the list doesn't...

You are using the old version, 1st thing you should do is to use the latest version 1.9.x But please be aware that this project is orphaned. I'm not maintaining,...