-
Notifications
You must be signed in to change notification settings - Fork 0
Bump ex_m3u8 to v0.15.4. Properly handle absolute URIs for variant pl… #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump ex_m3u8 to v0.15.4. Properly handle absolute URIs for variant pl… #11
Conversation
…aylists and segments. Fallback to MPEG-TS demuxer
| _other -> | ||
| Logger.warning(""" | ||
| Unsupported segment URI extension: #{segment_uri |> inspect()} | ||
| Falling back to recognizing segment as MPEG-TS container file. | ||
| You can force recognizing segment as CMAF container file | ||
| by providing `segment_format: :cmaf` to `ExHLS.Client/2`. | ||
| """) | ||
| end | ||
| end | ||
|
|
||
| def resolve_demuxing_engine_impl(_segment_uri, :ts), do: DemuxingEngine.MPEGTS | ||
| def resolve_demuxing_engine_impl(_segment_uri, :cmaf), do: DemuxingEngine.CMAF |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to our discussion, let's use the value from the option only if segment doesn't have extension, instead of letting the option override segment extension containter
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to our discussion, we can move it to another PR 😉
…aylists and segments. Fallback to MPEG-TS demuxer