Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
abfa2d7a
authored
2013-12-11 13:40:50 -0500
by
Gary Katsevman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add whitespace between byteRange & file for extinf
1 parent
c0c02539
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/m3u8/m3u8.pegjs
src/m3u8/m3u8.pegjs
View file @
abfa2d7
...
...
@@ -32,7 +32,7 @@ m3uTag
= tag:"#EXTM3U" { return {openTag: true}; }
extinfTag
= tag:'#EXTINF' ":" duration:number "," _ title:text? _ byteRange:byteRangeTag? file:mediaFile {
= tag:'#EXTINF' ":" duration:number "," _ title:text? _ byteRange:byteRangeTag?
_
file:mediaFile {
var fileObj = {};
fileObj[file] = {
byteRange: byteRange,
...
...
Please
register
or
sign in
to post a comment