xuggle
xb_smart
“It’s the little details that are vital. Little things make big things happen.”
展开
-
xuggle学习-IContainer
IContainer可用于本地视频流或网络视频的读取。基本用法如官方:IContainer container = IContainer.make();if (container.open("myfile.flv", IContainer.Type.READ, null) <0) throw new RuntimeException("failed to open"); int n原创 2012-09-04 18:42:15 · 5208 阅读 · 0 评论 -
xuggle学习-IContainer2
通过IContainer主要可以获取视频/音频文件的相关信息以及音视频信息,如起始时间,时常,比特率等等。 public static void main(String[] args) { String filename = "c:/0824.flv"; // Create a Xuggler container object IContainer cont原创 2012-09-05 20:32:10 · 3007 阅读 · 2 评论 -
xuugle学习--安装
xuggle(www.xuggle.com/xuggler)是一个java开发库,主要用于与ffmpeg jni完成通信,实现视频文件的解码。1 下载xuggle.jar在myeclipse中新建maven项目,在pom.xml中加入以下内容 xuggle repo http://xuggle.googlecode.com/svn/trunk/repo/share/j原创 2012-08-27 21:41:35 · 8421 阅读 · 1 评论 -
xuggle学习-视频解码
//新建容器,以供容纳流 IContainer container = IContainer.make(); //开始读流 if (container.open(filename, IContainer.Type.READ, null) < 0) throw new IllegalArgumentException("could not open原创 2012-11-01 17:09:43 · 4781 阅读 · 12 评论