If you have the SEO metatags enabled in Vidyard, you can parse the ld+json that has been injected into the head of the webpage where your payer is embedded and use the data outside of the player. You might, for instance, display transcription info on the page using dl links.
The sample below will log the transcription to the browser console, but only works for one ld+json blob at a time (based upon this external stackoverflow thread)
<html> <head> </head> <body> <script type="text/javascript" id="vidyard_embed_code_xwNEyRUPfXa2MszwiEtgTf" src="//play.vidyard.com/xwNEyRUPfXa2MszwiEtgTf.js?v=3.1.1&type=inline"></script> <script> var jsonld = JSON.parse(document.querySelector('script[type="application/ld+json"]').innerText); console.log(jsonld.transcript)</script> </body> </html>
Check out this video: https://share.vidyard.com/watch/KLgisokwQRpqmcbiCgBose