Skip to content

Pure Java implementation of H264 decoder to replace Xuggler

Notifications You must be signed in to change notification settings

ubivent-seuffert/h264j

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

This is an H264 Java port to replace Xuggler in ARDrone video processing. It is also a general purpose H264 decoder. This fork adds stream processing and callbacks with raw video frames, whcih is how the ARDrone video is implemented. There is a standalone player that reads files, another for streams, and a headless version with the callbacks with each AVFrame. Stream example: H264StreamPlayer hsd = new H264StreamPlayer(is); // where is is the inputstream from ARDrone video hsd.playStream(); Listener example: H264StreamCallback hsc = new H264StreamCallback(is, listener); // where listener is RGBListener receiving AVFrames hsc.playStream(); File example: H264Player hp = new H264Player("file.mp4");

About

Pure Java implementation of H264 decoder to replace Xuggler

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%