mirror of
https://github.com/samsonjs/media.git
synced 2026-04-16 13:05:46 +00:00
Don't require comma in EXTINF tags
This commit is contained in:
parent
d3ce56f9bc
commit
039cddd6c0
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ public final class HlsPlaylistParser implements UriLoadable.Parser<HlsPlaylist>
|
|||
private static final Pattern RESOLUTION_ATTR_REGEX =
|
||||
Pattern.compile(RESOLUTION_ATTR + "=(\\d+x\\d+)");
|
||||
private static final Pattern MEDIA_DURATION_REGEX =
|
||||
Pattern.compile(MEDIA_DURATION_TAG + ":([\\d.]+),");
|
||||
Pattern.compile(MEDIA_DURATION_TAG + ":([\\d.]+)\\b");
|
||||
private static final Pattern MEDIA_SEQUENCE_REGEX =
|
||||
Pattern.compile(MEDIA_SEQUENCE_TAG + ":(\\d+)\\b");
|
||||
private static final Pattern TARGET_DURATION_REGEX =
|
||||
|
|
|
|||
Loading…
Reference in a new issue