mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix RTSP docs and add a missing release note
* Add release note for `RtspMediaSource.Factory.setTimeoutMs()`
* Remove mention of what we don't support (any such list is necessarily non-exhaustive)
* Remove markdown quote character ('>')
PiperOrigin-RevId: 385143574
This commit is contained in:
parent
9cd6b50595
commit
0ae71e22f7
3 changed files with 5 additions and 5 deletions
|
|
@ -69,6 +69,8 @@
|
||||||
([#9014](https://github.com/google/ExoPlayer/issues/9014)).
|
([#9014](https://github.com/google/ExoPlayer/issues/9014)).
|
||||||
* Allow using absolute URI in the control attribute in a media description
|
* Allow using absolute URI in the control attribute in a media description
|
||||||
([#9183](https://github.com/google/ExoPlayer/issues/9183)).
|
([#9183](https://github.com/google/ExoPlayer/issues/9183)).
|
||||||
|
* Allow the timeout to be customised via
|
||||||
|
`RtspMediaSource.Factory.setTimeoutMs`.
|
||||||
|
|
||||||
### 2.14.1 (2021-06-11)
|
### 2.14.1 (2021-06-11)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ types are listed below.
|
||||||
**Supported network types**
|
**Supported network types**
|
||||||
* RTP over UDP unicast (multicast is not supported).
|
* RTP over UDP unicast (multicast is not supported).
|
||||||
* Interleaved RTSP, RTP over RTSP using TCP.
|
* Interleaved RTSP, RTP over RTSP using TCP.
|
||||||
|
|
||||||
> Playback of RTP streams is not supported.
|
|
||||||
|
|
|
||||||
|
|
@ -68,10 +68,10 @@ The timeout for retrying with TCP can be customized by calling the method
|
||||||
four seconds, the player will retry with TCP after four seconds of UDP
|
four seconds, the player will retry with TCP after four seconds of UDP
|
||||||
inactivity.
|
inactivity.
|
||||||
|
|
||||||
> Setting the timeout also affects the end-of-stream detection logic. That is,
|
Setting the timeout also affects the end-of-stream detection logic. That is,
|
||||||
ExoPlayer will report the playback has ended if nothing is received for the
|
ExoPlayer will report the playback has ended if nothing is received for the
|
||||||
duration of the set timeout. Setting this value too small may lead to pre-mature
|
duration of the set timeout. Setting this value too small may lead to an early
|
||||||
stream ending under poor network conditions.
|
end-of-stream signal under poor network conditions.
|
||||||
|
|
||||||
### Force using RTP/TCP ###
|
### Force using RTP/TCP ###
|
||||||
ExoPlayer can also be configured to play with RTP/TCP by default. To do so,
|
ExoPlayer can also be configured to play with RTP/TCP by default. To do so,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue