George Tsoumalis
George Tsoumalis
I am currently using an alternative for merging recorded videos. I use Mp4Parser (https://github.com/sannies/mp4parser), which merges multiple clips to one mp4 video almost instantly. Just be careful that all the...
I use the following code: ``` List inMovies = new LinkedList(); for(int i = 0; i < files.size(); i++) { if (!files.get(i).exists()) continue; Movie movie = MovieCreator.build(files.get(i).getAbsolutePath()); inMovies.add(movie); } List...
An update on this: using the static builds from the official ffmpeg site actually display CPU capabilities: ARMv7-neon (and ARMv8-neon for 64 bit) with some performance increase both in x264...
Maybe ffmpeg is built for armv7 but libx264 is not? Check the following for example (64 bit): https://stackoverflow.com/questions/31138836/how-to-build-libx264-64bit-library-for-android But even without libx264 I believe that ffmpeg built for armv7 and...
I managed to build FFmpeg with ARMv8 enhancement for 64 bit devices but the performance in video encoding/decoding has not been drastically improved. You can use the executables of my...
It sometimes happens on the very first fragment and sometimes after I have scrolled a lot of fragments. I have made sure to release the VideoView instance (by calling the...