You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like when this gets rendered it's missing the #EXT-X-PROGRAM-DATE-TIME, only rendering the time. I'm not sure if this was an intentional design decision or a bug? It looks like it's been in there for 5 years if it is a bug, so wanted to make sure before working on a PR.
the latter seems to cause players to try and request "2020-11-25 14:27:00 -0600" as a fragment url.
I worked around the issue for the timebeing by passing the "#EXT-X-PROGRAM-DATE-TIME: #{Time.now}", as the program_date_time attribute, which feels a little clunky unless I'm missing the reasoning for it being this way. Thoughts?
The text was updated successfully, but these errors were encountered:
m3u8/lib/m3u8/segment_item.rb
Line 14 in 6e2a54b
It looks like when this gets rendered it's missing the
#EXT-X-PROGRAM-DATE-TIME
, only rendering the time. I'm not sure if this was an intentional design decision or a bug? It looks like it's been in there for 5 years if it is a bug, so wanted to make sure before working on a PR.Details:
Expected:
Actual:
the latter seems to cause players to try and request "2020-11-25 14:27:00 -0600" as a fragment url.
I worked around the issue for the timebeing by passing the
"#EXT-X-PROGRAM-DATE-TIME: #{Time.now}",
as theprogram_date_time
attribute, which feels a little clunky unless I'm missing the reasoning for it being this way. Thoughts?The text was updated successfully, but these errors were encountered: