Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pure java video endcoding/decoding libraries

Tags:

java

android

Does anyone know of any video encoding/decoding libraries written entirely in java? Bonus points if it works on Android.

I'm trying to write a video decoding application for android, where I have access to the frame level decoding functions (which is absent in the android API MediaPlayer class)

like image 200
Anand Avatar asked Nov 18 '10 00:11

Anand


1 Answers

jcodec is a pure java implementation of audio and video codecs and containers. Currently, it "only" decode H264 (MPEG-4) and MJPEG. More informations here.

like image 63
Ben Avatar answered Sep 22 '22 17:09

Ben