ParsingLoadable.Parser
Artifact: androidx.media3:media3-exoplayer
public interface ParsingLoadable.Parser<T>
DashManifestParser |
A parser of media presentation description files. |
FilteringManifestParser |
A manifest parser that includes only the streams identified by the given stream keys. |
HlsPlaylistParser |
HLS playlists parsing logic. |
SsManifestParser |
Parses SmoothStreaming client manifests. |
Parses an object from loaded data.
Summary
Public methods |
|
|---|---|
abstract T |
parse(Uri uri, InputStream inputStream)Parses an object from a response. |
Public methods
parse
abstract T parse(Uri uri, InputStream inputStream)
Parses an object from a response.
| Parameters | |
|---|---|
Uri uri |
The source |
InputStream inputStream |
An |
| Returns | |
|---|---|
T |
The parsed object. |
| Throws | |
|---|---|
androidx.media3.common.ParserException |
If an error occurs parsing the data. |
java.io.IOException |
If an error occurs reading data from the stream. |