Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fd71e38d
authored
Sep 02, 2020
by
olly
Committed by
Oliver Woodman
Sep 07, 2020
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix DASH/SS/HLS module readme files
PiperOrigin-RevId: 329751934
parent
fe2fc8b7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
7 deletions
library/dash/README.md
library/hls/README.md
library/smoothstreaming/README.md
library/dash/README.md
View file @
fd71e38d
# ExoPlayer DASH library module #
# ExoPlayer DASH library module #
Provides support for Dynamic Adaptive Streaming over HTTP (DASH) content. To
Provides support for Dynamic Adaptive Streaming over HTTP (DASH) content.
play DASH content, instantiate a
`DashMediaSource`
and pass it to
`ExoPlayer.prepare`
.
Adding a dependency to this module is all that's required to enable playback of
DASH
`MediaItem`
s added to an
`ExoPlayer`
or
`SimpleExoPlayer`
in their default
configurations. Internally,
`DefaultMediaSourceFactory`
will automatically
detect the presence of the module and convert DASH
`MediaItem`
s into
`DashMediaSource`
instances for playback.
Similarly, a
`DownloadManager`
in its default configuration will use
`DefaultDownloaderFactory`
, which will automatically detect the presence of
the module and build
`DashDownloader`
instances to download DASH content.
For advanced playback use cases, applications can build
`DashMediaSource`
instances and pass them directly to the player. For advanced download use cases,
`DashDownloader`
can be used directly.
## Links ##
## Links ##
...
...
library/hls/README.md
View file @
fd71e38d
# ExoPlayer HLS library module #
# ExoPlayer HLS library module #
Provides support for HTTP Live Streaming (HLS) content. To play HLS content,
Provides support for HTTP Live Streaming (HLS) content.
instantiate a
`HlsMediaSource`
and pass it to
`ExoPlayer.prepare`
.
Adding a dependency to this module is all that's required to enable playback of
HLS
`MediaItem`
s added to an
`ExoPlayer`
or
`SimpleExoPlayer`
in their default
configurations. Internally,
`DefaultMediaSourceFactory`
will automatically
detect the presence of the module and convert HLS
`MediaItem`
s into
`HlsMediaSource`
instances for playback.
Similarly, a
`DownloadManager`
in its default configuration will use
`DefaultDownloaderFactory`
, which will automatically detect the presence of
the module and build
`HlsDownloader`
instances to download HLS content.
For advanced playback use cases, applications can build
`HlsMediaSource`
instances and pass them directly to the player. For advanced download use cases,
`HlsDownloader`
can be used directly.
## Links ##
## Links ##
...
...
library/smoothstreaming/README.md
View file @
fd71e38d
# ExoPlayer SmoothStreaming library module #
# ExoPlayer SmoothStreaming library module #
Provides support for Smooth Streaming content. To play Smooth Streaming content,
Provides support for SmoothStreaming content.
instantiate a
`SsMediaSource`
and pass it to
`ExoPlayer.prepare`
.
Adding a dependency to this module is all that's required to enable playback of
SmoothStreaming
`MediaItem`
s added to an
`ExoPlayer`
or
`SimpleExoPlayer`
in
their default configurations. Internally,
`DefaultMediaSourceFactory`
will
automatically detect the presence of the module and convert SmoothStreaming
`MediaItem`
s into
`SsMediaSource`
instances for playback.
Similarly, a
`DownloadManager`
in its default configuration will use
`DefaultDownloaderFactory`
, which will automatically detect the presence of
the module and build
`SsDownloader`
instances to download SmoothStreaming
content.
For advanced playback use cases, applications can build
`SsMediaSource`
instances and pass them directly to the player. For advanced download use cases,
`SsDownloader`
can be used directly.
## Links ##
## Links ##
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment