J2ME中利用MMAPI播放声音

本文提供了多个示例代码段,展示了如何利用J2ME的MMAPI进行多媒体应用开发,包括单音播放、媒体重放控制、视频播放等功能。
了解J2ME可选包MMAPI一文向读者介绍了MMAPI的基本知识,掌握MMAPI的灵活性应该是重点。本文将讲述如何在实际开发中使用MMAPI。

    本文的目的是为读者提供处理不同情况的代码,您可以参考MMAPI DOC。

  1. 播放单音
    try {
        Manager.playTone(ToneControl.C4, 5000 /* millisec */, 100 /* max vol */);
    } catch (MediaException e) { }
  2. 简单媒体重放功能实现
    try {
        Player p = Manager.createPlayer("http://webserver/music.mp3");
        p.setLoopCount(5);
        p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) { }
  3. 详细重放控制
    static final long SECS_TO_MICROSECS = 1000000L;
    Player p;
    VolumeControl vc;
    try {
        p = Manager.createPlayer("http://webserver/music.mp3");
        p.realize();
       // Set a listener.
       p.addPlayerListener(new Listener());
       // Grab volume control for the player.
       // Set Volume to max.
       vc = (VolumeControl)p.getControl("VolumeControl");
       if (vc != null)
          vc.setLevel(100);
       // Set a start time.
       p.setMediaTime(5 * SECS_TO_MICROSECS);
       // Guarantee that the player can start with the smallest latency.
       p.prefetch();
       // Non-blocking start
       p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) { }
    class Listener implements PlayerListener {
        public void playerUpdate(Player p, String event, Object eventData) {
            if (event == END_OF_MEDIA || event == STOP_AT_TIME) {
                System.out.println("Done processing");
                try {
                    p.setMediaTime(5 * SECS_TO_MICROSECS);
                    p.start();
                } catch (MediaException me) { }
                break;
            }
        }
    }
  4. 实现MIDI重放控制
    Player p;
    TempoControl tc;
    try {
    p = Manager.createPlayer("http://webserver/tune.mid");
    p.realize(); // Grab the tempo control.
    tc = (TempoControl)p.getControl("TempoControl");
    tc.setTempo(120000); // 120 beats/min
    p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    }
  5. 视频重放功能实现
    Player p;
    VideoControl vc;
    try {
    p = Manager.createPlayer("http://webserver/movie.mpg");
    p.realize(); // Grab the video control and set it to the current display.
    vc = (VideoControl)p.getControl("VideoControl");
    if (vc != null) {
    Form form = new Form("video");
    form.append((Item)vc.initDisplayMode(vc.USE_GUI_PRIMITIVE, null));
    Display.getDisplay(midlet).setCurrent(form);
    }
    p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    }
  6. 播放RMS内存储的数据
    RecordStore rs;
    int recordID; : // code to set up the record store.
    try {
    InputStream is = new ByteArrayInputStream(rs.getRecord(recordID));
    Player p = Manager.createPlayer(is, "audio/X-wav");
    p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    }
  7. 播放Jar文件中存储的媒体
    /** Notice that in MIDP 2.0, the wav format is mandatory only *//** in the case that the device supports sampled audio.       */
    try {
    InputStream is = getClass().getResourceAsStream("audio.wav");
    Player p = Manager.createPlayer(is, "audio/X-wav");
    p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    }
  8. 不同Player的同步
    Player p1, p2;
    try {
    p1 = Manager.createPlayer("http://webserver/tune.mid");
    p1.realize();
    p2 = Manager.createPlayer("http://webserver/movie.mpg");
    p2.realize();
    p2.setTimeBase(p1.getTimeBase());
    p1.prefetch();
    p2.prefetch();
    p1.start();
    p2.start();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    }
  9. 产生单音序列
    byte tempo = 30; // set tempo to 120 bpm
    byte d = 8;      // eighth-note

    byte C4 = ToneControl.C4;;
    byte D4 = (byte)(C4 + 2); // a whole step
    byte E4 = (byte)(C4 + 4); // a major third
    byte G4 = (byte)(C4 + 7); // a fifth
    byte rest = ToneControl.SILENCE; // rest

    byte[] mySequence = {
        ToneControl.VERSION, 1,   // version 1
        ToneControl.TEMPO, tempo, // set tempo
        ToneControl.BLOCK_START, 0,   // start define "A" section
        E4,d, D4,d, C4,d, E4,d,       // content of "A" section
        E4,d, E4,d, E4,d, rest,d,          
        ToneControl.BLOCK_END, 0,     // end define "A" section
        ToneControl.PLAY_BLOCK, 0,    // play "A" section
        D4,d, D4,d, D4,d, rest,d,     // play "B" section
        E4,d, G4,d, G4,d, rest,d,
        ToneControl.PLAY_BLOCK, 0,    // repeat "A" section
        D4,d, D4,d, E4,d, D4,d, C4,d  // play "C" section
    };

    try{
        Player p = Manager.createPlayer(Manager.TONE_DEVICE_LOCATOR);
        p.realize();
        ToneControl c = (ToneControl)p.getControl("ToneControl");
        c.setSequence(mySequence);
        p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) { }
  10. 语音捕获和录音功能的实现
    try {    // Create a DataSource that captures live audio.    
    Player p = Manager.createPlayer("capture://audio");
    p.realize(); // Get the RecordControl, set the record location, and
    // start the Player and record for 5 seconds.
    RecordControl rc = (RecordControl)p.getControl("RecordControl");
    rc.setRecordLocation("file:/tmp/audio.wav");
    rc.startRecord();
    p.start();
    Thread.currentThread().sleep(5000);
    p.stop();
    rc.stopRecord();
    rc.commit();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    } catch (InterruptedException e) {
    }
  11. 实现摄像功能
    Player p;
    VideoControl vc;// initialize camera
    try {
    p = Manager.createPlayer("capture://video");
    p.realize(); // Grab the video control and set it to the current display.
    vc = (VideoControl)p.getControl("VideoControl");
    if (vc != null) {
    Form form = new Form("video");
    form.append((Item)vc.initDisplayMode(vc.USE_GUI_PRIMITIVE, null));
    Display.getDisplay(midlet).setCurrent(form);
    }
    p.start();
    } catch (IOException ioe) {
    } catch (MediaException me) {
    }// now take a picturetry { byte[] pngImage = vc.getSnapshot(null);
    // do something with the image ...}
    catch (MediaException me) { }


    在后面的文章中我们将通过完整的实例演示如何使用MMAPI开发应用程序。  


Trackback: http://tb.blog.youkuaiyun.com/TrackBack.aspx?PostId=540073

 
内容概要:文章以“智能网页数据标注工具”为例,深入探讨了谷歌浏览器扩展在毕业设计中的实战应用。通过开发具备实体识别、情感分类等功能的浏览器扩展,学生能够融合前端开发、自然语言处理(NLP)、本地存储与模型推理等技术,实现高效的网页数据标注系统。文中详细解析了扩展的技术架构,涵盖Manifest V3配置、内容脚本与Service Worker协作、TensorFlow.js模型在浏览器端的轻量化部署与推理流程,并提供了核心代码实现,包括文本选择、标注工具栏动态生成、高亮显示及模型预测功能。同时展望了多模态标注、主动学习与边缘计算协同等未来发展方向。; 适合人群:具备前端开发基础、熟悉JavaScript和浏览器机制,有一定AI模型应用经验的计算机相关专业本科生或研究生,尤其适合将浏览器扩展与人工智能结合进行毕业设计的学生。; 使用场景及目标:①掌握浏览器扩展开发全流程,理解内容脚本、Service Worker与弹出页的通信机制;②实现在浏览器端运行轻量级AI模型(如NER、情感分析)的技术方案;③构建可用于真实场景的数据标注工具,提升标注效率并探索主动学习、协同标注等智能化功能。; 阅读建议:建议结合代码实例搭建开发环境,逐步实现标注功能并集成本地模型推理。重点关注模型轻量化、内存管理与DOM操作的稳定性,在实践中理解浏览器扩展的安全机制与性能优化策略。
基于Gin+GORM+Casbin+Vue.js的权限管理系统是一个采用前后端分离架构的企业级权限管理解决方案,专为软件工程和计算机科学专业的毕业设计项目开发。该系统基于Go语言构建后端服务,结合Vue.js前端框架,实现了完整的权限控制和管理功能,适用于各类需要精细化权限管理的应用场景。 系统后端采用Gin作为Web框架,提供高性能的HTTP服务;使用GORM作为ORM框架,简化数据库操作;集成Casbin实现灵活的权限控制模型。前端基于vue-element-admin模板开发,提供现代化的用户界面和交互体验。系统采用分层架构和模块化设计,确保代码的可维护性和可扩展性。 主要功能包括用户管理、角色管理、权限管理、菜单管理、操作日志等核心模块。用户管理模块支持用户信息的增删改查和状态管理;角色管理模块允许定义不同角色并分配相应权限;权限管理模块基于Casbin实现细粒度的访问控制;菜单管理模块动态生成前端导航菜单;操作日志模块记录系统关键操作,便于审计和追踪。 技术栈方面,后端使用Go语言开发,结合Gin、GORM、Casbin等成熟框架;前端使用Vue.js、Element UI等现代前端技术;数据库支持MySQL、PostgreSQL等主流关系型数据库;采用RESTful API设计规范,确保前后端通信的标准化。系统还应用了单例模式、工厂模式、依赖注入等设计模式,提升代码质量和可测试性。 该权限管理系统适用于企业管理系统、内部办公平台、多租户SaaS应用等需要复杂权限控制的场景。作为毕业设计项目,它提供了完整的源码和论文文档,帮助学生深入理解前后端分离架构、权限控制原理、现代Web开发技术等关键知识点。系统设计规范,代码结构清晰,注释完整,非常适合作为计算机相关专业的毕业设计参考或实际项目开发的基础框架。 资源包含完整的系统源码、数据库设计文档、部署说明和毕
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值