7865c573 by Gary Katsevman

Rename renditions back to playlists.

The spec calls stream-inf data playlists and video/audio track data
renditions
1 parent fc460bd2
...@@ -5,7 +5,7 @@ start ...@@ -5,7 +5,7 @@ start
5 choices = { 5 choices = {
6 segments: 1, 6 segments: 1,
7 comments: 1, 7 comments: 1,
8 renditions: 1 8 playlists: 1
9 }; 9 };
10 tags.forEach(function(tag) { 10 tags.forEach(function(tag) {
11 for (var p in tag) { 11 for (var p in tag) {
...@@ -96,7 +96,7 @@ mediaTag ...@@ -96,7 +96,7 @@ mediaTag
96 96
97 streamInfTag 97 streamInfTag
98 = tag:'#EXT-X-STREAM-INF' ":" attrs:streamInfAttrs _ url:mediaURL? { 98 = tag:'#EXT-X-STREAM-INF' ":" attrs:streamInfAttrs _ url:mediaURL? {
99 return {renditions: { 99 return {playlists: {
100 attributes: attrs, 100 attributes: attrs,
101 url: url 101 url: url
102 } 102 }
......