index.jd revision 452e41f60754f9cd546e308e291ecda6f0f02090
1page.title=Multimedia and Camera
2@jd:body
3
4    <div id="qv-wrapper">
5    <div id="qv">
6
7<h2>Topics</h2>
8<ol>
9<li><a href="{@docRoot}guide/topics/media/mediaplayer.html">Media Playback</a></li>
10<li><a href="{@docRoot}guide/topics/media/jetplayer.html">JetPlayer</a></li>
11<li><a href="{@docRoot}guide/topics/media/camera.html">Camera</a></li>
12<li><a href="{@docRoot}guide/topics/media/audio-capture.html">Audio Capture</a></li>
13</ol>
14
15<h2>Key classes</h2>
16<ol>
17<li>{@link android.media.MediaPlayer}</li>
18<li>{@link android.media.JetPlayer}</li>
19<li>{@link android.hardware.Camera}</li>
20<li>{@link android.media.MediaRecorder}</li>
21<li>{@link android.media.AudioManager}</li>
22<li>{@link android.media.SoundPool}</li>
23</ol>
24
25<h2>See also</h2>
26<ol>
27<li></li>
28<li><a href="{@docRoot}guide/appendix/media-formats.html">Android Supported Media Formats</a></li>
29<li><a href="{@docRoot}guide/topics/media/jet/jetcreator_manual.html">JetCreator User
30Manual</a></li>
31</ol>
32
33</div>
34</div>
35
36<p>The Android multimedia framework includes support for capturing and playing audio, video and
37images in a variety of common media types, so that you can easily integrate them into your
38applications. You can play audio or video from media files stored in your application's resources,
39from standalone files in the file system, or from a data stream arriving over a
40network connection, all using the {@link android.media.MediaPlayer} or {@link
41android.media.JetPlayer} APIs. You can also record audio, video and take pictures using the {@link
42android.media.MediaRecorder} and {@link android.hardware.Camera} APIs if supported by the device
43hardware.</p>
44
45<p>The following topics show you how to use the Android framework to implement multimedia capture
46and playback.</p>
47
48<dl>
49  <dt><strong><a href="{@docRoot}guide/topics/media/mediaplayer.html">Media Playback</a></strong>
50  </dt>
51  <dd>How to play audio and video in your application.</dd>
52
53  <dt><strong><a href="{@docRoot}guide/topics/media/jetplayer.html">JetPlayer</a></strong></dt>
54  <dd>How to play interactive audio and video in your application using content created with
55JetCreator.</dd>
56
57  <dt><strong><a href="{@docRoot}guide/topics/media/camera.html">Camera</a></strong></dt>
58  <dd>How to use a device camera to take pictures or video in your application.</dd>
59
60  <dt><strong><a href="{@docRoot}guide/topics/media/audio-capture.html">Audio
61Capture</a></strong></dt>
62  <dd>How to record sound in your application.</dd>
63</dl>