Show the Location2Location class in action : 媒体 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 媒体屏幕截图 
Show the Location2Location class in action
Show the Location2Location class in action

/*

Java Media APIs: Cross-Platform Imaging, Media and Visualization
Alejandro Terrazas
Sams, Published November 2002, 
ISBN 0672320940
*/

import javax.media.*;
import javax.media.protocol.*;
import javax.media.format.*;

/*******************************************************************************
 * Simple example to show the Location2Location class in action. The
 * Location2Location class transfer media from one location to another
 * performing any requested tanscoding (format changes) at the same time.
 
 * The class is used twice. Once to transform a short wave audio file of an
 * electric guitar (guitar.wav) into MP3 format. The second example converts of
 * Quicktime version of the example video from chapter 7, encoded with the Indeo
 * 5.o codec and GSM audio into an AVI version with Cinepak codec for the video
 * and linear encoding for the audio.
 ******************************************************************************/
public class StaticTranscode {

  public static void main(String[] args) {
    String src;
    String dest;
    Format[] formats;
    ContentDescriptor container;
    int waited;
    Location2Location dupe;

    /////////////////////////////////////////////////////////////////
    // Transcode a wave audio file into an MP3 file, transferring it
    // to a new location (dest) at the same time.
    ////////////////////////////////////////////////////////////////
    src = "file://d:\\jmf\\book\\media\\guitar.wav";
    dest = "file://d:\\jmf\\book\\media\\guitar.mp3";
    formats = new Format[1];
    formats[0new AudioFormat(AudioFormat.MPEGLAYER3);
    container = new FileTypeDescriptor(FileTypeDescriptor.MPEG_AUDIO);

    dupe = new Location2Location(src, dest, formats, container);
    System.out.println("After creation, state = " + dupe.getStateName());
    waited = dupe.transfer(10000);
    System.out.println("Waited " + waited + " milliseconds. State is now "
        + dupe.getStateName());

    ///////////////////////////////////////////////////////////////////
    // Transcode a Quicktime version of a movie into an AVI version.
    // The video codec is altered from Indeo5.0 to Cinepak,the audio
    // track is transcoded from GSM to linear, and is result is saved
    // as a file "qaz.avi".
    //////////////////////////////////////////////////////////////////
    src = "file://d:\\jmf\\book\\media\\videoexample\\iv50_320x240.mov";
    dest = "file://d:\\jmf\\book\\media\\qaz.avi";
    formats = new Format[2];
    formats[0new VideoFormat(VideoFormat.CINEPAK);
    formats[1new AudioFormat(AudioFormat.LINEAR);
    container = new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO);
    dupe = new Location2Location(src, dest, formats, container, 5.0f);
    System.out.println("After creation, state = " + dupe.getStateName());
    waited = dupe.transfer(Location2Location.INDEFINITE);
    int state = dupe.getState();
    System.out.println("Waited " (waited / 1000)
        " seconds. State is now " + dupe.getStateName()
        ", rate was " + dupe.getRate());
    System.exit(0);
  }
}

           
       
Related examples in the same category
1. Java媒体:查找组件Java媒体:查找组件
2. 查询配置JMF查询配置JMF
3. 捕获音频或视频通过设备连接到PC
4. Choose the media they wish to playChoose the media they wish to play
5. 做音频捕捉
6. 统计信息跟踪构成一个媒体对象
7. 播放媒体对象
8. 播放器:播放媒体对象
9. 播放媒体对象3
10. 列出所有撷取装置目前已知的JMF列出所有撷取装置目前已知的JMF
11. 传输媒体从一个位置到另一个位置
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.