- 02 Oct, 2014 2 commits
-
-
If src() is called when a src is already loaded, make sure to abort any outstanding work and reset the state of the SourceBuffer. Switching sources after initial load occasionally caused weird audio and video artifacts because the underlying decoder was working from the old state.
David LaPalomento committed
- 29 Sep, 2014 1 commit
-
-
- 27 Sep, 2014 1 commit
-
-
Describe the goals of the adaptive switching algorithm, instead of the implementation details.
David LaPalomento committed
-
- 22 Sep, 2014 9 commits
-
- 17 Sep, 2014 1 commit
- 16 Sep, 2014 4 commits
-
- 09 Sep, 2014 2 commits
-
-
- 25 Aug, 2014 2 commits
- 22 Aug, 2014 16 commits
-
-
Bip bop is better for testing purposes than the encrypted trailer video.
David LaPalomento committed -
If an m3u8 was missing a trailing newline, the last line of input would remain buffered in the parser. This could cause VOD playlists to be misinterpreted as live or a final segment to be switched. Fixes #113.
David LaPalomento committed -
If the key is not the correct size, retry the request once. If the retry still fails, try moving on to find a playable segment.
David LaPalomento committed -
If you're testing your changes on other machines, it's handy to be able to use the connect task. Modified the config so connect will listen for non-local connections.
David LaPalomento committed -
If a key request was outstanding when the media playlist changed, the call to fetchKeys() for the new playlist would be ignored. This caused segments to get stuck in drainBuffer() waiting for their keys. Now, we abort key requests as soon as we change media and immediately try to fetch the keys for the new playlist.
David LaPalomento committed -
Used an adaptive, encrypted m3u8 on the example page and included hex dump utilities. Fixed formatting issues with the hex dump utility. Passed a 16-byte IV to the decrypter in drainBuffer(). Swapped byte order for the keys so they are not misintrepreted as little-endian. Added fields to the muxer test page to mux encrypted segments. Updated tests. Fixed docs on using openssl to test encryption and decryption.
Gary Katsevman committed -
-
-
Put decrypt() onto videojs.Hls to be more consistent with other "static" functions.
Gary Katsevman committed -
playistloaded kicks off the key fetching mechanism for the whole playlist. If keys cannot be downloaded after two retries, the segment is skipped. Keylime pie for everyone.
Gary Katsevman committed -
Enhance ParseStream to recognize and parse #EXT-X-KEY lines. Update Parser to track a currently active key and annotate each segment with the parsed key information. Added test cases and an example encrypted playlist.
David LaPalomento committed -
Generalize the decryption function to use the initialization vector and decrypt multiple four-word sequences using cipher block chaining. Add a utility function to convert ASCII bytes to strings to clean up the test cases a bit.
David LaPalomento committed -
Implement the block level AES decipher and include the routine to do PKCS#7 unpadding.
David LaPalomento committed -
Use the global command not a relative link to a checkout of the project.
David LaPalomento committed -
Make a document with an explanation of how to create test encrypted data from the command-line.
David LaPalomento committed
-
- 15 Aug, 2014 2 commits
-
-