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
(1) what should I do to get the absolute URIs of all the segments?
(2) I think M3U8(builtins.object).files should return all the URIs of the segments , but why present the key uri along with them ? This makes the result difficult to use , for example if I want to use the returned result to download all the chunks, then I have to judge whether the first element is a key uri or not, so annoying! It would be better to create another method like M3U8(builtins.object).key_uri to specifically return the key uri .
The text was updated successfully, but these errors were encountered:
also, it seems file segments returned by M3U8(builtins.object).files doesn't in the order they appear in the whole video, any solution to correct this ?
I think it is a semantic problem, right? files gives the feel it has only real files (chunks)
If we remove the key_uri we would break the current API for those who depend on having the key_uri inside files
(1) what should I do to get the absolute URIs of all the segments?
(2) I think
M3U8(builtins.object).files
should return all the URIs of the segments , but why present the key uri along with them ? This makes the result difficult to use , for example if I want to use the returned result to download all the chunks, then I have to judge whether the first element is a key uri or not, so annoying! It would be better to create another method likeM3U8(builtins.object).key_uri
to specifically return the key uri .The text was updated successfully, but these errors were encountered: