-
Notifications
You must be signed in to change notification settings - Fork 60
chore: Add an application level player react component that uses hls.js directly and supports Mux Video DRM. #1168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
chore: Add an application level player react component that uses hls.js directly and supports Mux Video DRM. #1168
Conversation
…js directly and supports Mux Video DRM.
@cjpillsbury is attempting to deploy a commit to the Mux Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) |
@@ -0,0 +1,28 @@ | |||
-----BEGIN PRIVATE KEY----- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTE: These are locally created keys for testing https servers locally (a pre-requisite for some DRM test cases). No concerns with these being pushed to remote repo.
@@ -0,0 +1,153 @@ | |||
/* eslint-disable no-console */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a SimpleVideoPlayer that use hls.js and adds Mux Video DRM + playback token support.
@@ -0,0 +1,64 @@ | |||
import Head from 'next/head'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a test page for using the <SimpleVideoPlayer/>
component. Works similar to our <MuxPlayer/>
test page though not designed for similar robustness. Expect to have to apply parameters and then load the resultant URL for expected behavior.
No description provided.