Summary
Add a new HTTP Live Streaming formats to Javadoc as supported media formats.
Problem
With JDK-8277309 we added a new HTTP Live Streaming formats and we need to add them to the list of supported media formats.
Solution
Add HTTP Live Streaming formats as supported media format to "Media Container / Encoding Types" tables in package summary of JavaFX Media API.
Specification
javafx/scene/media/package-summary.html
Following row will be added to "Media Container / Encoding Types Table" types:
| Container | Description | Video Encoding | Audio Encoding | MIME Type | File Extension |
| HLS | fMP4 HTTP Live Streaming (audiovisual) | H.264/AVC | AAC | application/vnd.apple.mpegurl, audio/mpegurl | .m3u8 |
| HLS | fMP4 HTTP Live Streaming (audiovisual) | H.265/HEVC | AAC | application/vnd.apple.mpegurl, audio/mpegurl | .m3u8 |
| HLS | fMP4 HTTP Live Streaming (audio-only) | N/A | AAC | application/vnd.apple.mpegurl, audio/mpegurl | .m3u8 |
| HLS | AAC HTTP Live Streaming (audio-only) | N/A | AAC | application/vnd.apple.mpegurl, audio/mpegurl | .m3u8 |
- csr of
-
JDK-8277309 Add support for H.265/HEVC to HTTP Live Streaming
- Resolved