UNPKG

25.3 kBMarkdownView Raw
1CHANGELOG
2=========
3
4--------------------
5## 5.8.2 (2017-07-12)
6* fix: processing segments when mediaSource is closed [#1201](https://github.com/videojs/videojs-contrib-hls/pull/1201)
7
8--------------------
9## 5.8.1 (2017-07-12)
10* fix: audio only playlists with videojs-contrib-media-sources v4.4.7 [#1195](https://github.com/videojs/videojs-contrib-hls/pull/1195)
11
12--------------------
13## 5.8.0 (2017-07-06)
14* Abr Improvements [#1176](https://github.com/videojs/videojs-contrib-hls/pull/1176)
15 * Use a starting `bandwidth` value of `0.0625 MB/s` on Android devices
16 * Do not allow an up-switch in quality until a certain amount of forward buffer has been filled, `BUFFER_LOW_WATER_LINE`
17 * Dynamically increase the `BUFFER_LOW_WATER_LINE` and `GOAL_BUFFER_LENGTH` from `0 - > 30` and `30 -> 60` respectively during the first 30 seconds of playback
18 * Abort segment requests before completion if bandwidth reported by the XHR `progress` event shows that network conditions are not fast enough to complete the request without causing rebuffering
19
20--------------------
21## 5.7.0 (2017-06-27)
22* update mux.js to 4.1.5 and videojs-contrib-media-sources to 4.4.6 [#1180](https://github.com/videojs/videojs-contrib-hls/pull/1180)
23 * Only flush PES packets from TS parsing front end when they are complete
24 * Complete is defined as any time PES_packet_length matches the data’s length OR is a video packets
25 * Works around an issue with incomplete packets getting sent down the pipeline when the source has audio PES packets split between segments
26* Add hls usage tracking events [#1166](https://github.com/videojs/videojs-contrib-hls/pull/1166)
27 * Usage tracking events are fired when we detect a certain HLS feature, encoding setting, or API is used. Note that although these usage events are listed in the README, they may change at any time without a major version change.
28* Fix endOfStream for demuxed audio and video [#1175](https://github.com/videojs/videojs-contrib-hls/pull/1175)
29
30--------------------
31## 5.6.0 (2017-06-20)
32* Do not reset segmentloaders when switching media groups [#1155](https://github.com/videojs/videojs-contrib-hls/pull/1155)
33 * set loader state to ready on aborts even when loader is paused
34* don't crash when segment metadata cues can't be created [#1167](https://github.com/videojs/videojs-contrib-hls/pull/1167)
35* Allow overrideNative to be set as a player-level option [#1156](https://github.com/videojs/videojs-contrib-hls/pull/1156)
36* Create a moving-average playlist selector [#1125](https://github.com/videojs/videojs-contrib-hls/pull/1125)
37 * Define a variant of the standard playlist selector that calculates a moving average of bandwidth and uses that to select a playlist.
38* Trigger bandwidthupdate events on the tech [#1122](https://github.com/videojs/videojs-contrib-hls/pull/1122)
39
40--------------------
41## 5.5.3 (2017-05-16)
42* update mux.js to 4.1.4 and videojs-contrib-media-sources to 4.4.5 [#1117](https://github.com/videojs/videojs-contrib-hls/pull/1117)
43 * ts probe searches packets for first it can successfully parse
44 * Fixed an issue that could cause updateend events to fire more than once per append or remove under very specific conditions on firefox
45* Trigger error events when received empty response [#1072](https://github.com/videojs/videojs-contrib-hls/pull/1072)
46
47--------------------
48## 5.5.2 (2017-05-10)
49* Fix playback stalls when everything appears okay [#1100](https://github.com/videojs/videojs-contrib-hls/pull/1100)
50 * add playback watcher check for unknown player waiting
51 * do not do unknownwaiting check when the tech fires a native waiting event
52 * dont track current time waiting when at the end of the buffer
53 * call techWaiting_ when we detect a stall at the end of buffer
54
55--------------------
56## 5.5.1 (2017-05-04)
57* Use specified mediasequence for VOD expired sync instead of assuming 0 [#1097](https://github.com/videojs/videojs-contrib-hls/pull/1097)
58 * use synccontroller for expired
59* fix: CODEC to mime-type conversion now takes into account all possible scenarios [#1099](https://github.com/videojs/videojs-contrib-hls/pull/1099)
60
61--------------------
62## 5.5.0 (2017-04-25)
63* Update mux.js to 4.1.3 and media-sources to 4.4.4 [#1098](https://github.com/videojs/videojs-contrib-hls/pull/1098)
64* Trigger an event when a playlist is blacklisted or retried [#1080](https://github.com/videojs/videojs-contrib-hls/pull/1080)
65 * Triggers `blacklistplaylist` when a playlist is blacklisted
66 * Triggers `retryplaylist` when retrying to load an errored playlist
67* Add option to modify blacklist duration [#1076](https://github.com/videojs/videojs-contrib-hls/pull/1076)
68
69--------------------
70## 5.4.1 (2017-04-10)
71* update contrib-media-sources to 4.4.3 [#1077](https://github.com/videojs/videojs-contrib-hls/pull/1077)
72* Fix exceptions from calling endOfStream when the media source isn't ready [#1061](https://github.com/videojs/videojs-contrib-hls/pull/1061)
73* fix segment time mapping for fmp4 playback [#1067](https://github.com/videojs/videojs-contrib-hls/pull/1067)
74* If beforeRequest is set, reuse it on source changes [#983](https://github.com/videojs/videojs-contrib-hls/pull/983)
75 * Allow changing global xhr beforeRequest at runtime
76 * Always use latest beforeRequest instead of setting it when creating hls object
77
78--------------------
79## 5.4.0 (2017-04-03)
80* feature: support for in-manifest WebVTT [#1057](https://github.com/videojs/videojs-contrib-hls/pull/1057)
81* fix: minor SegmentLoader fixes [#1065](https://github.com/videojs/videojs-contrib-hls/pull/1065)
82* fix: enable fast quality change for alternate audio [#1046](https://github.com/videojs/videojs-contrib-hls/pull/1046)
83* feature: blacklist live playlists that have stopped being updated [#1039](https://github.com/videojs/videojs-contrib-hls/pull/1039)
84 * never blacklist final available final rendition
85* chore: refactor all the XHR handling code and related state out of SegmentLoader and into a single mediaSegmentRequest function [#1044](https://github.com/videojs/videojs-contrib-hls/pull/1044)
86* feature: add a segment-metadata TextTrack that contains cues for the segments currently in the buffer [#976](https://github.com/videojs/videojs-contrib-hls/pull/976)
87* feature: add support for description audio tracks in hls [#1019](https://github.com/videojs/videojs-contrib-hls/pull/1019)
88 * add support for description audio tracks (marked with characteristics of 'public.accessibility.describes-video')
89 * add test for correctly setting alternative audio kinds
90
91--------------------
92## 5.3.3 (2017-03-03)
93* update videojs-contrib-media-sources to v4.4.2 and mux.js to 4.1.1 [#1037](https://github.com/videojs/videojs-contrib-hls/pull/1037)
94 * Fix silence insertion to not insert extra frames when audio is offset [#143](https://github.com/videojs/mux.js/pull/143)
95 * Fixed metadata cue mapping so that it considers groups cues with the same startTime and remaps them collectively to the same endTime [#121](https://github.com/videojs/videojs-contrib-media-sources/pull/121)
96 * add fudge factor to flash tag trim target [#137](https://github.com/videojs/videojs-contrib-media-sources/pull/137)
97 * Feat/vjs6 compat [#130](https://github.com/videojs/videojs-contrib-media-sources/pull/130)
98 * Fix flash tag trimming for misaligned audio and video [#136](https://github.com/videojs/videojs-contrib-media-sources/pull/136)
99 * Revert "Revert flash transmuxing in a web worker (#133)" [#135](https://github.com/videojs/videojs-contrib-media-sources/pull/135)
100* fix: do not timeout segment requests for non-master playlist source [#1032](https://github.com/videojs/videojs-contrib-hls/pull/1032)
101
102--------------------
103## 5.3.2 (2017-02-23)
104* fix: Fix a bug with the combination of seek-to-live and resync-on-a-poor-guess behaviors [#1023](https://github.com/videojs/videojs-contrib-hls/pull/1023)
105
106--------------------
107## 5.3.1 (2017-02-22)
108* Locking url-toolkit to 1.0.9 to support relative urls [#1027](https://github.com/videojs/videojs-contrib-hls/pull/1027)
109* Resync on poor initial segment choice [#1016](https://github.com/videojs/videojs-contrib-hls/pull/1016)
110* Fix resuming live playback after long pauses [#1006](https://github.com/videojs/videojs-contrib-hls/pull/1006)
111
112--------------------
113## 5.3.0 (2017-02-16)
114* reset segment loaders on all flash seeks [#1008](https://github.com/videojs/videojs-contrib-hls/pull/1008)
115 * update mux.js to 4.1.0 update videojs-contrib-media-sources to 4.4.0
116* Reorganized the functions in SegmentLoader to better follow the flow of execution from top-down [#1015](https://github.com/videojs/videojs-contrib-hls/pull/1015)
117* Remove ad-hoc logging in favor of a config-enabled logging like playback-watcher [#1014](https://github.com/videojs/videojs-contrib-hls/pull/1014)
118* isLowestEnabledRendition worked with redundant streams [#1004](https://github.com/videojs/videojs-contrib-hls/pull/1004)
119* Rename Worker to DecrypterWorker [#1003](https://github.com/videojs/videojs-contrib-hls/pull/1003)
120
121--------------------
122## 5.2.1 (2017-02-09)
123* feature: Support for Akamai-style Redundant HLS [#990](https://github.com/videojs/videojs-contrib-hls/pull/990)
124 * stable sorting and always pick primary first
125* Fix routing of decrypter messages intended for audio segment loader [#1001](https://github.com/videojs/videojs-contrib-hls/pull/1001)
126
127--------------------
128## 5.2.0 (2017-02-08)
129* update deps for 4.3.0 mediasources [#998](https://github.com/videojs/videojs-contrib-hls/pull/998)
130* Remove HLS object events from README [#992](https://github.com/videojs/videojs-contrib-hls/pull/992)
131
132--------------------
133## 5.1.1 (2017-02-03)
134* fix: introduce videojs 6 forward compatibility while maintaining backward compatibilty [#975](https://github.com/videojs/videojs-contrib-hls/pull/975)
135 * fix: swap to use getTech and null-check flash tech
136 * Fix #968
137 * only registerComponent Hls in older vjs
138 * use registerPlugin if it exists
139 * addTrack cross-compat
140* Add events for underflow and live resync [#989](https://github.com/videojs/videojs-contrib-hls/pull/989)
141 * For QoS measurement purposes, it may be useful to know how often the playback watcher is activating. Add new events for when the player falls off the back of the live window or stalls due to a video buffer gap.
142
143--------------------
144## 5.1.0 (2017-01-31)
145* Updated videojs-contrib-media-sources to v4.2.0
146 * Added support for inserting silence when appending a new segment will introduce a gap in the audio SourceBuffer
147* Remove hls-audio-track.js as this file was no longer being used [#985](https://github.com/videojs/videojs-contrib-hls/pull/985)
148* Stop blacklisting audio codecs as there is now wide support for switching between audio codecs on-the-fly among all modern browsers [#981](https://github.com/videojs/videojs-contrib-hls/pull/981)
149* Fix qualityLevels setup for videos with a source element [#979](https://github.com/videojs/videojs-contrib-hls/pull/979)
150* Error early for misconfigured overrideNative [#980](https://github.com/videojs/videojs-contrib-hls/pull/980)
151
152--------------------
153## 5.0.0 (2017-01-25)
154* Update issue template to use unpkg for latest versions [#967](https://github.com/videojs/videojs-contrib-hls/pull/967)
155* Use a snapshot of the issue template JSBin to protect from changes by owner [#969](https://github.com/videojs/videojs-contrib-hls/pull/969)
156* Fix any possible fillBuffer_ race conditions by debouncing all fillBuffers_ [#959](https://github.com/videojs/videojs-contrib-hls/pull/959)
157 * Convert all calls to fillBuffer_ to calls to monitorBuffer_
158 * Rename monitorBuffer_ to monitorBufferTick_ which becomes the 500ms buffer check timer loop
159 * Make monitorBuffer_ schedule an immediate timer for monitorBufferTick_
160* Processing segment reachable even after playlist update removes it [#939](https://github.com/videojs/videojs-contrib-hls/pull/939)
161 * Change processing segment reference on playlist refresh
162 * Test for correct segment references on pending segments
163 * Fix unreachable segment tests after rebase on async monitor buffer change
164 * Update media index on playlist refreshes for all requests (including syncs)
165* Bubble progress events [#978](https://github.com/videojs/videojs-contrib-hls/pull/978)
166 * If the segment request triggers progress events (that is, XHR2 is supported), bubble those up to the tech. This makes it clearer that buffering is happening even on very slow connections.
167* run decryption in a webworker [#972](https://github.com/videojs/videojs-contrib-hls/pull/972)
168 * drop support for IE10
169* Fixed mediaIndex tracking so that it is consistent when the playlist updates during a live stream [#977](https://github.com/videojs/videojs-contrib-hls/pull/977)
170 * Fixed mediaIndex tracking so that it is consistent when the playlist updates during a live stream
171 * Removed any code in SegmentLoader#handleUpdateEnd_ that changed the mediaIndex
172 * Reordered SegmentLoader#playlist to make it easier to follow
173 * All changes to both mediaIndexes (SegmentLoader's and segmentInfo's) now happen in SegmentLoader#playlist
174 * Added tests for proper mediaIndex tracking with live playlists
175
176--------------------
177## 4.1.1 (2017-01-20)
178* Fixed the m3u8-parser to support ES3 [#965](https://github.com/videojs/videojs-contrib-hls/pull/965)
179
180--------------------
181## 4.1.0 (2017-01-13)
182* Representations and Quality Levels [#929](https://github.com/videojs/videojs-contrib-hls/pull/929)
183* Update m3u8-parser to 2.0.0 and videojs-contrib-media-sources to 4.1.4 [#958](https://github.com/videojs/videojs-contrib-hls/pull/958)
184
185--------------------
186## 4.0.3 (2016-12-23)
187* Fix a segment hop in live [#928](https://github.com/videojs/videojs-contrib-hls/pull/928)
188* Map legacy AVC codecs to their modern equivalents when excluding incompatible playlists [#940](https://github.com/videojs/videojs-contrib-hls/pull/940)
189* Update video.js to 5.15.1 [#941](https://github.com/videojs/videojs-contrib-hls/pull/941)
190
191--------------------
192## 4.0.2 (2016-11-29)
193* Fix excessive segment loads on seeks [#925](https://github.com/videojs/videojs-contrib-hls/pull/925)
194 * Fixed a few cases where seeking caused the player to load too many segments
195
196--------------------
197## 4.0.1 (2016-11-23)
198* Revert "Upgrade aes-decrypter to use webcrypto for HLSe decryption where available. (#777)" [#922](https://github.com/videojs/videojs-contrib-hls/pull/922)
199 * WebCrypto's subtle-crypto was failing to decrypt segments that worked previously with the JavaScript-only implementation
200
201--------------------
202## 4.0.0 (2016-11-21)
203* Simplified the algorithm at the heart of SegmentLoader as much as possible [#875](https://github.com/videojs/videojs-contrib-hls/pull/875)
204 * Introduced the concept of sync-points to help associate currentTime with segments across variants
205 * More information available at: https://www.brightcove.com/en/blog/2016/10/improving-hls-playback
206* Updated videojs-contrib-media-sources to 4.1.2
207 * Start using remote TextTracks because they can be properly removed [#118](https://github.com/videojs/videojs-contrib-media-sources/pull/118)
208 * Handle remove cues from track properly if cues is null [#112](https://github.com/videojs/videojs-contrib-media-sources/pull/112)
209* Updated mux.js to 3.0.3
210 * Stop applying the compositionTimestamp of the first frame to the baseMediaDecodeTime for the fragment [#108](https://github.com/videojs/mux.js/pull/108)
211 * Fix coalesce stream to account for missing audio data in pending tracks [#125](https://github.com/videojs/mux.js/pull/125)
212* Updated aes-decrypter to [2.0.0](https://github.com/videojs/aes-decrypter/blob/master/CHANGELOG.md#200-2016-11-15)
213 * Use webcrypto for aes-cbc segment decryption when supported [#4](https://github.com/videojs/aes-decrypter/pull/4)
214
215--------------------
216## 3.6.13 (2016-11-17)
217* Added the concept of systemBandwidth - a measure of the bandwidth (in mb/s) of the entire system from download through transmuxing and appending data to a flash or native media source
218 * Adaptive bitrate selection is now based on the performance of the entire system
219
220--------------------
221## 3.6.12 (2016-11-14)
222* Changed resolveUrl to use javascript only
223
224--------------------
225## 3.6.11 (2016-11-11)
226* Updated the reloadSourceOnErrors plugin:
227 * Don't try to set the source if getSource returns undefined or null
228* resolve-url.js now uses an iframe to contain the base and anchor elements used to resolve relateive urls
229
230--------------------
231## 3.6.10 (2016-11-10)
232* Updated the reloadSourceOnErrors plugin:
233 * Option to pass a `getSource` function that can be used to provide a new source to load on error
234 * Added the ability to override the default minimum time between errors in seconds
235 * Plugin now cleans up event bindings when initialized multiple times
236* Fix trimBuffer to compare correct segments and correctly trim in the live case
237
238--------------------
239## 3.6.9 (2016-11-09)
240* Add a plugin that can be used to automatically reload a source if an
241 error occurs
242* Fix an error when checking if the lowest quality level is currently
243 in use
244
245--------------------
246## 3.6.8 (2016-11-09)
247* Enhance gap skipper to seek back into the live window if playback
248 slips out of it. Renamed GapSkipper to PlaybackWatcher.
249
250--------------------
251## 3.6.7 (2016-11-03)
252* Update videojs-contrib-media-sources to 4.0.5
253 * Fix an issue with ID3 and 608 cue translation
254
255--------------------
256## 3.6.6 (2016-10-21)
257* Use setTimeout in gap skipper instead of relying on timeupdate events
258* Updated videojs-contrib-media-sources to 4.0.4
259 * Append init segment to video buffer for every segmentw
260
261--------------------
262## 3.6.4 (2016-10-18)
263* Fix 'ended' event not firing after replay
264* Updated videojs-contrib-media-sources to 4.0.2
265 * Only trim FLV tags when seeking to prevent triming I frames
266 * Updated Mux.js to 3.0.2
267 * Set h264Frame to null after we finish the frame
268
269--------------------
270## 3.6.3 (2016-10-18)
271* Update videojs-contrib-media-sources to 4.0.1
272 * Fix flash fallback
273
274--------------------
275## 3.6.2 (2016-10-17)
276* Update videojs-contrib-media-sources to 4.0.0
277 * Append init segment data on audio track changes
278 * Normalize ID3 behavior to follow Safari's implementation
279
280--------------------
281## 3.6.1 (2016-10-13)
282* Allow for initial bandwidth option of 0
283* Added support for MAAT in Firefox 49
284* Corrected deprecation warning for `player.hls`
285
286--------------------
287## 3.6.0 (2016-09-27)
288* Updated Mux.js to 2.5.0
289 * Added support for generating version 1 TFDT boxes
290 * Added TS inspector
291* Added bundle-collapser to create smaller dist files
292* Added fMP4 support
293* Fixed a bug that resulted in us loading the first segment on a live stream
294
295--------------------
296## 3.5.3 (2016-08-24)
297* Updated videojs-contrib-mediasources to 3.1.5
298 * Updated Mux.js to 2.4.2
299 * Fixed caption-packet sorting to be stable on Chromium
300
301--------------------
302## 3.5.2 (2016-08-17)
303* Changes to the underflow-detection in the gap-skipper to remove restrictions on the size of the gaps it is able to skip
304
305--------------------
306## 3.5.1 (2016-08-16)
307* Fixes an issue where playback can stall when going in/out of fullscreen
308
309--------------------
310## 3.5.0 (2016-08-15)
311* Updated support for #ext-x-cue-out, #ext-x-cue-in, and #ext-x-cue-out-cont to create a single cue spanning the range of time covered by the ad break
312* Updated to videojs-media-sources 3.1.4
313 * Increased the values of the FlashConstants to push more data into flash per chunk-interval
314
315--------------------
316## 3.4.0 (2016-07-29)
317* Added support for #ext-x-cue-out, #ext-x-cue-in, and #ext-x-cue-out-cont via a special TextTrack
318* Added the ability to skip gaps caused by video underflow behavior in Chrome
319
320--------------------
321## 3.3.0 (2016-07-25)
322* No longer timeout segment requests if there is only one playlist left or if we are on the lowest rendition available
323* Fixed a bug where sometimes the first segment was not fetched when it should have been
324
325--------------------
326## 3.2.0 (2016-07-15)
327* Added an algorithm to seek over gaps in the video element's buffer when they are created because of missing video or audio frames
328* Moved the AES decryption logic to it's [own project](https://github.com/videojs/aes-decrypter)
329
330--------------------
331## 3.1.0 (2016-06-09)
332* Added manual rendition selection API via the `representations()` function on each instance of the HlsHandler class
333* Pulled out and moved m3u8 parsing functionality into it's own project at https://github.com/videojs/m3u8-parser
334
335--------------------
336## 3.0.5 (2016-06-02)
337* Fixed a bug where the adaptive bitrate selection algorithm would not switch to media playlists that had already been fetched from the server previously
338
339--------------------
340## 3.0.4 (2016-05-31)
341* Added support for multiple alternate audio tracks
342* New class SegmentLoader contains all buffer maintenence and segment fetching logic
343* New class SourceUpdater tracks the state of asynchronous operations on a SourceBuffer and queues operations for future execution if the SoureBuffer is busy
344* New class MasterPlaylistController now encapsulates operations on the master playlist and coordinates media playlists and segment loaders
345* Bug fixes related to fetching and buffer maintenance
346
347--------------------
348
349## 2.0.1 (2016-03-11)
350* First release of the ES6 version of the SourceHandler
351* All new lint/build/test setup via the [generator-videojs-plugin](https://github.com/videojs/generator-videojs-plugin) project
352
353--------------------
354
355## 1.13.1 (2016-03-04)
356* Converted from a Tech to a SourceHandler for Video.js 5.x compatibility
357* Implemented a Media Source Extensions-based playback engine with a Flash-based fallback
358* Rewrote the Transmuxer and moved it into it's own project [mux.js](https://github.com/videojs/mux.js)
359* Added support for 608/708 captions
360
361--------------------
362
363## 0.17.6 (2015-07-29)
364* autoplay at the live point. fix live id3 cue insertion. ([view](https://github.com/videojs/videojs-contrib-hls/pull/353))
365
366## 0.17.5 (2015-07-14)
367* do not assume media sequence starts at zero ([view](https://github.com/videojs/videojs-contrib-hls/pull/346))
368* fix error with audio- or video-only streams ([view](https://github.com/videojs/videojs-contrib-hls/pull/348))
369
370## 0.17.4 (2015-07-12)
371* Fix seeks between segments. Improve duration calculation. ([view](https://github.com/videojs/videojs-contrib-hls/pull/339))
372
373## 0.17.3 (2015-06-29)
374* @dmlap improved video duration calculation. ([view](https://github.com/videojs/videojs-contrib-hls/pull/321))
375* Clamp seeks to the seekable range ([view](https://github.com/videojs/videojs-contrib-hls/pull/327))
376* Use getComputedStyle for player dimensions when filtering variants ([view](https://github.com/videojs/videojs-contrib-hls/pull/326))
377* Add a functional test that runs in SauceLabs ([view](https://github.com/videojs/videojs-contrib-hls/pull/323))
378
379## 0.17.2 (2015-06-15)
380* @dmlap fix seeking in live streams ([view](https://github.com/videojs/videojs-contrib-hls/pull/308))
381
382## 0.17.1 (2015-06-08)
383* @dmlap do not preload live videos ([view](https://github.com/videojs/videojs-contrib-hls/pull/299))
384
385## 0.17.0 (2015-06-05)
386* @dmlap implement seekable for live streams. Fix in-band metadata timing for live streams. ([view](https://github.com/videojs/videojs-contrib-hls/pull/295))
387
388## 0.16.1 (2015-05-29)
389* @ntadej Do not unnecessarily reset to the live point when refreshing playlists. Clean up playlist loader timeouts. ([view](https://github.com/videojs/videojs-contrib-hls/pull/274))
390* @gkatsev ensure segments without an initial IDR are not displayed in 4:3 initially ([view](https://github.com/videojs/videojs-contrib-hls/pull/272))
391* @mikrohard: wait for an SPS to inject metadata tags. ([view](https://github.com/videojs/videojs-contrib-hls/pull/280))
392* @mikrohard: Trim whitespace in playlist. ([view](https://github.com/videojs/videojs-contrib-hls/pull/282))
393* @mikrohard allow playback of TS files with NITs. Don't warn about PCR PIDs. ([view](https://github.com/videojs/videojs-contrib-hls/pull/284))
394* @dmlap quicker quality switches when bandwidth changes. ([view](https://github.com/videojs/videojs-contrib-hls/pull/285))
395* @dmlap fix temporary warped display after seeking. ([view](https://github.com/videojs/videojs-contrib-hls/pull/290))
396
397## 0.16.0
398* support preload=none
399
400## 0.15.0
401* expose all ID3 frames and handle tags larger than 188 bytes
402
403## 0.14.0
404* performance improvements for HLSe
405
406## 0.13.0
407* Improved audio/video synchronization
408* Fixes for live, HLSe, and discontinuities
409* Rename internal methods to clarify their intended visibility
410
411## 0.12.0
412* support for custom IVs with AES-128 encryption
413
414## 0.11.0
415* embedded ID3 tags are exposed as an in-band metadata track
416
417## 0.10.0
418* optimistic initial bitrate selection
419
420## 0.9.0
421* support segment level AES-128 encryption
422
423## 0.8.0
424* support for EXT-X-DISCONTINUITY
425
426## 0.7.0
427* convert the HLS plugin to a tech
428
429## 0.6.0
430* Refactor playlist loading
431* Add testing via karma
432
433## 0.5.0
434* cookie-based content protection support (see `withCredentials`)
435
436## 0.4.0
437* Live stream support
438
439## 0.3.0
440* Performance fixes for high-bitrate streams
441
442## 0.2.0
443* Basic playback and adaptive bitrate selection
444
445## 0.1.0
446* Initial release