Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
github.com/paypal/accessible-html5-video-player
A lightweight HTML5 video player which includes support for captions and screen reader accessibility. For details, read the blog post Introducing an Accessible HTML5 Video Player on the PayPal Engineering blog (updated link). Also see 7 Lessons from Developing an Accessible HTML 5 Video Player.
Insert the CSS in the Head of your HTML document. You'll also need to upload the sprite image (or use your own) and adjust the path in the CSS file.
<link rel="stylesheet" href="/css/px-video.css" />
Insert the HTML5 video markup in the Body of your HTML document. Replace the video, poster, and caption URLs. Modify the sizes of video and fallback image as needed.
<div class="px-video-container" id="myvid">
<div class="px-video-img-captions-container">
<div class="px-video-captions hide" aria-hidden="true"></div>
<video width="640" height="360" poster="media/foo.jpg" controls>
<source src="foo.mp4" type="video/mp4" />
<source src="foo.webm" type="video/webm" />
<track kind="captions" label="English captions" src="media/foo.vtt" srclang="en" default />
<div>
<a href="foo.mp4">
<img src="media/foo.jpg" width="640" height="360" alt="download video" />
</a>
</div>
</video>
</div>
<div class="px-video-controls"></div>
</div>
Insert two JavaScript files right before the closing Body element of your HTML document. Add a Script element to initialize the video. Options are passed in JSON
format. The options are:
option | description | dataType | default | |
---|---|---|---|---|
videoId | the value of the ID of the widget container | string | required | |
captionsOnDefault | denotes whether to show or hide caption upon loading | boolean | optional | true |
seekInterval | the number of seconds to rewind and fast forward | number | optional | 10 |
videoTitle | short title of video; used for aria-label attribute on Play button to clarify to screen reader user what will be played | string | optional | Play |
debug | turn console logs on or off | boolean | optional | false |
<script src="js/strings.js"></script>
<script src="js/px-video.js"></script>
<script>
// Initialize
new InitPxVideo({
"videoId": "myvid",
"captionsOnDefault": true,
"seekInterval": 20,
"videoTitle": "clips of stand-up comedy",
"debug": true
});
</script>
The React version has been designed to be integrated into your react codebase easily. The video React component is named PXvideo
and has the below API:
<PXVideo
sources={[
'https://www.paypalobjects.com/webstatic/mktg/videos/PayPal_AustinSMB_baseline.mp4',
'https://www.paypalobjects.com/webstatic/mktg/videos/PayPal_AustinSMB_baseline.webm'
]}
caption={{
label: 'English captions',
source: 'media/captions_PayPal_Austin_en.vtt',
lang: 'EN',
default: true
}}
poster="media/poster_PayPal_Austin2.jpg"
width="640"
height="360"
controls={true}
id="myvid"
fallback={true}
seekInterval={20}
debug={true}
/>
A demo could be reached at: View Demo
npm install // install dependencies
npm run react // transpile .jsx into valid .js using Babel
If you experience any errors or if you have ideas for improvement, please feel free to open an issue or send a pull request.
You can also follow and contact the PayPal Accessibility team on Twitter: @PayPalInclusive No longer exists.
Copyright 2019, PayPal under the BSD license.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.