diff options
author | Scott Rowe <scottrowe@google.com> | 2015-04-24 17:49:13 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-04-24 17:49:16 +0000 |
commit | 02e4f2fbe6e0511789d42d5942548158d2dd154f (patch) | |
tree | bcbc2deb8eaa0b081c1bdf8782318e1d84ddfe32 | |
parent | 5b3152cffcd90441ca4cacdf5596e9bb3428af08 (diff) | |
parent | f769caa8c15f9983188597e2436b011d23ff2561 (diff) | |
download | frameworks_base-02e4f2fbe6e0511789d42d5942548158d2dd154f.zip frameworks_base-02e4f2fbe6e0511789d42d5942548158d2dd154f.tar.gz frameworks_base-02e4f2fbe6e0511789d42d5942548158d2dd154f.tar.bz2 |
Merge "docs: Supported media protocols, codecs, formats for Android TV" into lmp-docs
-rw-r--r-- | docs/html/guide/appendix/media-formats.jd | 32 | ||||
-rw-r--r-- | docs/html/training/tv/start/start.jd | 23 |
2 files changed, 51 insertions, 4 deletions
diff --git a/docs/html/guide/appendix/media-formats.jd b/docs/html/guide/appendix/media-formats.jd index 19f510a..2a908ba 100644 --- a/docs/html/guide/appendix/media-formats.jd +++ b/docs/html/guide/appendix/media-formats.jd @@ -71,7 +71,7 @@ page.tags=video,audio,mpeg,mp4,m4a,mp3,3gp,3gpp,flac,wave,wav </tr> <tr> -<td rowspan="11">Audio</td> +<td rowspan="12">Audio</td> <td>AAC LC</td> <td style="text-align: center;"><big>•</big></td> <td style="text-align: center;"><big>•</big></td> @@ -180,6 +180,15 @@ rates for raw PCM recordings at 8000, 16000 and 44100 Hz.</td> </tr> <tr> +<td>Opus</td> +<td style="text-align: center;"></td> +<td style="text-align: center;"><big>•</big><br><small>(Android 5.0+)</small></td> +<td></td> +<td> + Matroska (.mkv)</td> +</tr> + +<tr> <td rowspan="5">Image</td> <td>JPEG</td> <td style="text-align: center;"><big>•</big></td> @@ -235,7 +244,7 @@ rates for raw PCM recordings at 8000, 16000 and 44100 Hz.</td> <tr> -<td rowspan="4">Video</td> +<td rowspan="6">Video</td> <td>H.263</td> <td style="text-align: center;"><big>•</big></td> <td style="text-align: center;"><big>•</big></td> @@ -257,6 +266,15 @@ rates for raw PCM recordings at 8000, 16000 and 44100 Hz.</td> </tr> <tr> +<td>H.265 HEVC</td> +<td style="text-align: center;" nowrap></td> +<td style="text-align: center;" nowrap><big>•</big><br><small>(Android 5.0+)</small></td> +<td>Main Profile Level 3 for mobile devices and Main Profile Level 4.1 for Android TV</td> +<td> + • MPEG-4 (.mp4)<br> +</tr> + +<tr> <td>MPEG-4 SP</td> <td> </td> <td style="text-align: center;"><big>•</big></td> @@ -275,6 +293,16 @@ rates for raw PCM recordings at 8000, 16000 and 44100 Hz.</td> • Matroska (.mkv, Android 4.0+)</td> </tr> +<tr> +<td>VP9</td> +<td style="text-align: center;" nowrap></td> +<td style="text-align: center;" nowrap><big>•</big><br><small>(Android 4.4+)</small></td> +<td></td> +<td> + • <a href="http://www.webmproject.org/">WebM</a> (.webm)<br> + • Matroska (.mkv, Android 4.0+)</td> +</tr> + </tbody></table> diff --git a/docs/html/training/tv/start/start.jd b/docs/html/training/tv/start/start.jd index 2766e90..0f5871f 100644 --- a/docs/html/training/tv/start/start.jd +++ b/docs/html/training/tv/start/start.jd @@ -1,4 +1,4 @@ -page.title=Get Started with TV Apps +page.title=Getting Started with TV Apps page.tags="leanback","recyclerview","launcher" trainingnavtop=true @@ -10,6 +10,7 @@ startpage=true <div id="tb"> <h2>This lesson teaches you how to</h2> <ol> + <li><a href="#media">Determine Media Format Support</a></li> <li><a href="#dev-project">Setup a TV Project</a></li> <li><a href="#tv-libraries">Add TV Support Libraries</a></li> <li><a href="#build-it">Build TV Apps</a></li> @@ -42,6 +43,18 @@ startpage=true minimum required changes to enable an app to run on TV devices. </p> +<h2 id="media">Determine Media Format Support</h2> + +<p>See the following documentation for information about the codecs, protocols, and formats +supported by Android TV.</p> + +<ul> + <li><a href="{@docRoot}guide/appendix/media-formats.html">Supported Media Formats</a></li> + <li><a class="external-link" href="https://source.android.com/devices/drm.html">DRM</a></li> + <li><code><a href="{@docRoot}reference/android/drm/package-summary.html">android.drm</a></code></li> + <li><a href="{@docRoot}guide/topics/media/exoplayer.html">ExoPlayer</a></li> + <li>{@link android.media.MediaPlayer android.media.MediaPlayer}</li> +</ul> <h2 id="dev-project">Set up a TV Project</h2> @@ -284,9 +297,15 @@ startpage=true TV devices. </li> <li> - <a href="{@docRoot}training/tv/games/index.html">Games for TV</a> - TV devices are a great + <a href="{@docRoot}training/tv/games/index.html">Building TV Games</a> - TV devices are a great platform for games. See this topic for information on building great game experiences for TV. </li> + <li> + <a href="{@docRoot}training/tv/tif/index.html">Building Live TV Apps</a> - Present your video + content in a linear, "broadcast TV" style with channels and programs that your users can access + through a program guide as well as the channel up/down buttons. + </li> + </ul> |