Browse Source

Rename renditions back to playlists.

The spec calls stream-inf data playlists and video/audio track data
renditions
pull/80/head
Gary Katsevman 12 years ago
parent
commit
7865c57382
  1. 4
      src/m3u8/m3u8.pegjs

4
src/m3u8/m3u8.pegjs

@ -5,7 +5,7 @@ start
choices = {
segments: 1,
comments: 1,
renditions: 1
playlists: 1
};
tags.forEach(function(tag) {
for (var p in tag) {
@ -96,7 +96,7 @@ mediaTag
streamInfTag
= tag:'#EXT-X-STREAM-INF' ":" attrs:streamInfAttrs _ url:mediaURL? {
return {renditions: {
return {playlists: {
attributes: attrs,
url: url
}

Loading…
Cancel
Save