var script = document.createElement('script')
script.setAttribute("type", "text/javascript")
script.setAttribute("async", "async")
script.setAttribute("src", "//cdnjs.cloudflare.com/ajax/libs/shaka-player/1.4.0/shaka-player.compiled.js")
script.onload = () => bootstrapPlayback()
document.head.appendChild(script)
To view this discussion on the web visit https://groups.google.com/d/msgid/shaka-player-users/02e1b221-d818-4059-bec6-b86fa4ab2ced%40googlegroups.com.--
You received this message because you are subscribed to the Google Groups "Shaka Player Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shaka-player-us...@googlegroups.com.
To post to this group, send email to shaka-pla...@googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "Shaka Player Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/shaka-player-users/WIia9KpWfIc/unsubscribe.
To unsubscribe from this group and all its topics, send an email to shaka-player-us...@googlegroups.com.
To post to this group, send email to shaka-pla...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shaka-player-users/bce5f933-12e3-4450-a94d-31fe16d72023%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Shaka Player Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shaka-player-us...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shaka-player-users/9ebbf409-0d13-43f4-aec6-de5879175b89%40googlegroups.com.
packager input=LynyrdSkynyrdFreebird.mp4,stream=audio,output=LynyrdSkynyrdFreebirdAudio.mp4 input=LynyrdSkynyrdFreebird.mp4,stream=video,output=LynyrdSkynyrdFreebirdVideo.mp4 --profile on-demand --enable_widevine_encryption --key_server_url "https://license.uat.widevine.com/cenc/getcontentkey/widevine_test" --content_id "3031323334353637" --signer "widevine_test" --aes_signing_key "1ae8ccd0e7985cc0b6203a55855a1034afc252980e970ca90e5202689f947ab9" --aes_signing_iv "d58ce954203b7c9a9a9d467f59839249" --mpd_output example-av.mpd
Here i saw that it's necessary to configure the player in the following way:
player.configure({ drm: { servers: { 'com.widevine.alpha': '//widevine-proxy.appspot.com/proxy' } } });
But how to merge the two things? I hope you could help me. Thanks in advance.