- 浏览: 577005 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (338)
- 已过时文章(留念用) (39)
- Android学习笔记 (30)
- Android开发指引自译 (100)
- Android NDK文档自译 (23)
- Android设计指引自译 (2)
- xp(ペケピー)&linux(理奈、铃)酱~ (4)
- ui酱&歌词自译~ (9)
- lua酱~ (9)
- 自我反省 (1)
- 羽game计划 (1)
- XSL酱 (2)
- java酱 (3)
- 设计的领悟 (58)
- 涂鸦作品(pixiv) (1)
- ruby酱 (2)
- Objective-C编程语言自译 (2)
- Android开发月报 (6)
- objc酱 (2)
- photoshop (3)
- js酱 (6)
- cpp酱 (8)
- antlr酱 (7)
- Lua 5.1参考手册自译 (11)
- 收藏品 (3)
- 待宵草计划 (4)
- 体验版截图 (1)
最新评论
-
naruto60:
太给力了!!!!我这网打不开Intel官网,多亏楼主贴了连接, ...
使用HAXM加速的Android x86模拟器(和一些问题) -
yangyile2011:
谢谢博主,翻译得很好哦
【翻译】(4)片段 -
ggwang:
牙痛的彼岸:痹!
牙痛的彼岸 -
ggwang:
总结得很简练清晰啊,学习了!
ANTLR学习笔记一:概念理解 -
leisurelife1990:
mk sdd
用git下载Android自带app的源代码
【翻译】(84)JetPlayer
see
http://developer.android.com/guide/topics/media/jetplayer.html
原文见
http://developer.android.com/guide/topics/media/jetplayer.html
-------------------------------
JetPlayer
JetPlayer
-------------------------------
In this document
本文目录
* Playing JET content 播放JET内容
Key classes
关键类
JetPlayer
Related Samples
相关示例
JetBoy
See also
另见
JetCreator User Manual JetCreator用户手册
Android Supported Media Formats Android支持的媒体格式
Data Storage 数据存储
MediaPlayer MediaPlayer
-------------------------------
The Android platform includes a JET engine that lets you add interactive playback of JET audio content in your applications. You can create JET content for interactive playback using the JetCreator authoring application that ships with the SDK. To play and manage JET content from your application, use the JetPlayer class.
Android平台包含一个JET引擎,它让你在你的应用程序中添加JET音频内容的交互式回放。你可以使用停靠于SDK的JetCreator创作应用程序为交互式回放创建JET内容。为了从你的应用程序中播放和管理JET内容,请使用JetPlayer类。
-------------------------------
Playing JET content
播放JET内容
This section shows you how to write, set up and play JET content. For a description of JET concepts and instructions on how to use the JetCreator authoring tool, see the JetCreator User Manual. The tool is available on Windows, OS X, and Linux platforms (Linux does not support auditioning of imported assets like with the Windows and OS X versions).
这个章节向你展示如何编写,配置和播放JET内容。想获得JET概念的描述和如何使用JetCreator创作工具的指示,参见JetCreator用户手册。该工具在Windows,OS X和Linux平台上可用(Linux不支持像Windows和OS X版本那样试听导入的资源)(注:audition,试听,试音)。
Here's an example of how to set up JET playback from a .jet file stored on the SD card:
这里有一个如何从一个保存在SD卡上的.jet文件中配置JET回放的示例。
-------------------------------
JetPlayer jetPlayer = JetPlayer.getJetPlayer();
jetPlayer.loadJetFile("/sdcard/level1.jet");
byte segmentId = 0;
// queue segment 5, repeat once, use General MIDI, transpose by -1 octave
// 队列进节5,重复一次,使用通用MIDI,变换(注:待考)-1个八度
jetPlayer.queueJetSegment(5, -1, 1, -1, 0, segmentId++);
// queue segment 2
// 队列进节2
jetPlayer.queueJetSegment(2, -1, 0, 0, 0, segmentId++);
jetPlayer.play();
-------------------------------
The SDK includes an example application — JetBoy — that shows how to use JetPlayer to create an interactive music soundtrack in your game. It also illustrates how to use JET events to synchronize music and game logic. The application is located at JetBoy.
SDK包含一个示例应用程序——JetBoy——展示如何在你的游戏中使用JetPlayer创建一个交互式音乐音轨。它还展示如何使用JET事件来同步音乐和游戏逻辑。该应用程序位于JetBoy示例上。
Except as noted, this content is licensed under Apache 2.0. For details and restrictions, see the Content License.
除特别说明外,本文在Apache 2.0下许可。细节和限制请参考内容许可证。
Android 4.0 r1 - 16 Apr 2012 17:06
-------------------------------
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
此页部分内容,是基于Android开源项目所创建和共享的工作,并且根据知识共享2.5署名许可证描述的条款来使用的修改版。
(本人翻译质量欠佳,请以官方最新内容为准,或者参考其它翻译版本:
* ソフトウェア技術ドキュメントを勝手に翻訳
http://www.techdoctranslator.com/android
* Ley's Blog
http://leybreeze.com/blog/
* 农民伯伯
http://www.cnblogs.com/over140/
* Android中文翻译组
http://androidbox.sinaapp.com/
)
发表评论
-
【翻译】(9-补丁2)电话簿提供者
2012-07-18 12:54 2391【翻译】(9-补丁2)电话簿提供者 see h ... -
【翻译】(8-补丁1)Android接口定义语言(AIDL)
2012-07-02 05:55 2916【翻译】(8-补丁1)Andro ... -
【翻译】(0)应用组件
2012-06-30 23:50 820【翻译】(0)应用组件 see http:// ... -
【翻译】(88)传感器
2012-05-21 21:25 1071【翻译】(88)传感器 ... -
【翻译】(87)复制与粘贴
2012-05-20 14:48 1918【翻译】(87)复制与粘贴 see http: ... -
【翻译】(86)音频捕捉
2012-05-16 15:14 1095【翻译】(86)音频捕捉 ... -
【翻译】(85)照相机
2012-05-13 15:09 3783【翻译】(85)照相机 see http:// ... -
【翻译】(83)媒体回放
2012-04-21 16:00 1853【翻译】(83)媒体回放 see http:/ ... -
【翻译】(82)多媒体与照相机
2012-04-18 23:05 948【翻译】(82)多媒体与照相机 see htt ... -
【翻译】(23-补丁3)构建无障碍服务
2012-04-18 21:57 1621【翻译】(23-补丁3)构 ... -
【翻译】(23-补丁2)使应用程序无障碍
2012-04-16 13:08 2090【翻译】(23-补丁2)使应用程序无障碍 see ... -
【翻译】(23-补丁1)无障碍
2012-04-11 22:38 907【翻译】(23-补丁1)无 ... -
【翻译】(81)Renderscript之运行时API参考手册
2012-04-11 22:13 1408【翻译】(81)Renderscript之运行时API参 ... -
【翻译】(80)Renderscript之计算
2012-04-09 14:09 1438【翻译】(80)Renderscript之计算 ... -
【翻译】(79)Renderscript之图形
2012-04-08 13:59 2859【翻译】(79)Renderscript之图形 ... -
【翻译】(78)Renderscript
2012-04-04 15:35 1431【翻译】(78)Renderscript see ... -
【翻译】(77)可绘画对象动画
2012-03-18 10:52 704【翻译】(77)可绘画对象动画 see htt ... -
【翻译】(76)视图动画
2012-03-18 10:04 798【翻译】(76)视图动画 see http:/ ... -
【翻译】(75)属性动画
2012-03-17 18:24 2503【翻译】(75)属性动画 see http:/ ... -
【翻译】(74)动画
2012-03-10 14:22 1017【翻译】(74)动画 ...
相关推荐
【Android测试程序——JetPlayer API详解】 在Android应用开发中,多媒体播放是一个常见的需求,而JetPlayer作为Android系统的一部分,提供了强大的音频和视频播放功能。本教程将带你深入理解如何在Android应用程序...
这个"android_media_JetPlayer.rar_android"资源很可能包含了JetPlayer的源代码实现,特别是"android_media_JetPlayer.cpp"文件,它是用C++编写的,因为Android的NDK(Native Development Kit)允许开发者使用原生...
JetPlayer 还配备了均衡器和各种预设,让用户可以根据个人口味调整声音效果。此外,它还具备歌词同步显示功能,使得卡拉OK式唱歌更加方便。 在选择合适的播放器时,用户应考虑其需求和偏好。如果经常观看高分辨率...
该示例展示了如何使用 `SurfaceView` 来处理复杂的图形效果,并且特别介绍了如何利用 `JetPlayer` 类来实现游戏音效。 - **技术要点**: - 使用 `SurfaceView` 和 `JetPlayer` 类。 - 游戏音效的设计与集成。 - ...
A game that demonstrates the SONiVOX JET interactive music technology, with JetPlayer. Live Wallpaper An application that demonstrates how to create a live wallpaper and bundle it in an application ...
- **JetPlayer**:JET(Java Enhanced Technology)内容的播放和控制。 - **MediaPlayer**:核心音频和视频播放接口,可以播放本地或网络上的音频和视频文件。 - **MediaRecorder**:用于录制音频和视频,支持多种...
- 对于背景音乐或长音频的播放,可以考虑使用`MediaPlayer`或`JetPlayer`,它们更适合处理连续的音频流。 总之,`SoundPool`是Android中处理短促音效的强大工具,它提供了高效、低延迟的音频播放功能,特别适用于...