Java的Flv类库 JFLVLib
JFlvLib 是一个用来生成 Flv Flash视频的Java类库。 <pre class="brush:java; toolbar: true; auto-links: false;">示例: package edu.mit.star.flvexample; import java.awt.Dimension; import java.awt.image.BufferedImage; import java.io.IOException; import java.io.OutputStream; import edu.mit.star.flv.Capture; import edu.mit.star.flv.CaptureFactory; public class Main { public static void main(String[] args) { try { OutputStream os = new java.io.FileOutputStream( "z:\\temp\\test.flv" ); int xx = 256 ; int yy = 512 ; Capture c = CaptureFactory.getCapturer( os , new Dimension(xx , yy) ) ; int time = 0 ; while( time < 5000 ) { BufferedImage image = c.newFrame() ; image.getGraphics().drawOval(0, 0, xx*time/5000, yy*time/5000); image.flush(); c.writeFrame(image, time); time += 250; System.out.println( "Generating " + time + " ms frame."); } os.close(); } catch( IOException ex ) { ex.printStackTrace(); } } }</pre> <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1325770292953" target="_blank">http://www.open-open.com/lib/view/home/1325770292953</a></p>
本文由用户 fmms 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!