2018-08-16 00:35:22 +00:00
|
|
|
Using Widevine Key Server
|
|
|
|
=========================
|
2017-09-20 02:35:05 +00:00
|
|
|
|
2018-08-16 00:35:22 +00:00
|
|
|
The easiest way to generate Widevine protected content is to use Widevine Cloud
|
|
|
|
Service.
|
2017-09-20 02:35:05 +00:00
|
|
|
|
2018-08-16 00:35:22 +00:00
|
|
|
Shaka Packager can talk to Widevine Cloud Service or any key server that
|
|
|
|
implements `Common Encryption API for Widevine DRM <http://bit.ly/2vTG4oo>`_ to
|
|
|
|
fetch encryption keys.
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
Synopsis
|
|
|
|
--------
|
|
|
|
|
2018-08-16 00:35:22 +00:00
|
|
|
Widevine Common Encryption API supports request validation using either AES or
|
|
|
|
RSA.
|
|
|
|
|
2017-09-20 02:35:05 +00:00
|
|
|
AES signing::
|
|
|
|
|
2018-05-23 23:12:00 +00:00
|
|
|
$ packager <stream_descriptor> ... \
|
2017-09-20 02:35:05 +00:00
|
|
|
--enable_widevine_encryption \
|
|
|
|
--key_server_url <key_server_url> \
|
|
|
|
--content_id <content_id> \
|
|
|
|
--signer <signer> --aes_signing_key <aes_signing_key> \
|
|
|
|
--aes_signing_iv <aes_signing_iv> \
|
|
|
|
[Other options, e.g. DASH options, HLS options]
|
|
|
|
|
|
|
|
RSA signing::
|
|
|
|
|
2018-05-23 23:12:00 +00:00
|
|
|
$ packager <stream_descriptor> ... \
|
2017-09-20 02:35:05 +00:00
|
|
|
--enable_widevine_encryption \
|
|
|
|
--key_server_url <key_server_url> \
|
|
|
|
--content_id <content_id> \
|
|
|
|
--signer <signer> --rsa_signing_key_path <rsa_signing_key_path> \
|
|
|
|
[Other options, e.g. DASH options, HLS options]
|
|
|
|
|
|
|
|
Examples
|
|
|
|
--------
|
|
|
|
|
2018-08-16 00:35:22 +00:00
|
|
|
The examples below use the H264 streams created in :doc:`encoding`.
|
2017-09-20 02:35:05 +00:00
|
|
|
|
2018-08-16 00:35:22 +00:00
|
|
|
* Example with both DASH and HLS output::
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
$ packager \
|
|
|
|
in=h264_baseline_360p_600.mp4,stream=audio,output=audio.mp4 \
|
|
|
|
in=h264_baseline_360p_600.mp4,stream=video,output=h264_360p.mp4 \
|
|
|
|
in=h264_main_480p_1000.mp4,stream=video,output=h264_480p.mp4 \
|
|
|
|
in=h264_main_720p_3000.mp4,stream=video,output=h264_720p.mp4 \
|
|
|
|
in=h264_high_1080p_6000.mp4,stream=video,output=h264_1080p.mp4 \
|
2018-02-10 23:37:42 +00:00
|
|
|
--enable_widevine_encryption \
|
|
|
|
--key_server_url https://license.uat.widevine.com/cenc/getcontentkey/widevine_test \
|
|
|
|
--content_id 7465737420636f6e74656e74206964 \
|
|
|
|
--signer widevine_test \
|
|
|
|
--aes_signing_key 1ae8ccd0e7985cc0b6203a55855a1034afc252980e970ca90e5202689f947ab9 \
|
2018-08-16 00:35:22 +00:00
|
|
|
--aes_signing_iv d58ce954203b7c9a9a9d467f59839249 \
|
|
|
|
--mpd_output h264.mpd \
|
|
|
|
--hls_master_playlist_output h264_master.m3u8
|
2018-02-10 23:37:42 +00:00
|
|
|
|
|
|
|
* Another example using 'cbcs' protection scheme::
|
|
|
|
|
|
|
|
$ packager \
|
|
|
|
in=h264_baseline_360p_600.mp4,stream=audio,output=audio.mp4 \
|
|
|
|
in=h264_baseline_360p_600.mp4,stream=video,output=h264_360p.mp4 \
|
|
|
|
in=h264_main_480p_1000.mp4,stream=video,output=h264_480p.mp4 \
|
|
|
|
in=h264_main_720p_3000.mp4,stream=video,output=h264_720p.mp4 \
|
|
|
|
in=h264_high_1080p_6000.mp4,stream=video,output=h264_1080p.mp4 \
|
|
|
|
--protection_scheme cbcs \
|
2017-09-20 02:35:05 +00:00
|
|
|
--enable_widevine_encryption \
|
|
|
|
--key_server_url https://license.uat.widevine.com/cenc/getcontentkey/widevine_test \
|
|
|
|
--content_id 7465737420636f6e74656e74206964 \
|
|
|
|
--signer widevine_test \
|
|
|
|
--aes_signing_key 1ae8ccd0e7985cc0b6203a55855a1034afc252980e970ca90e5202689f947ab9 \
|
2018-08-16 00:35:22 +00:00
|
|
|
--aes_signing_iv d58ce954203b7c9a9a9d467f59839249 \
|
|
|
|
--mpd_output h264.mpd \
|
|
|
|
--hls_master_playlist_output h264_master.m3u8
|
|
|
|
|
|
|
|
The examples above generate Widevine protection system by default. It can be
|
|
|
|
extended to support multi-drm with --protection_systems flag.
|
|
|
|
|
|
|
|
* Example with multi-drm (Widevine and PlayReady)::
|
|
|
|
|
|
|
|
$ packager \
|
|
|
|
in=h264_baseline_360p_600.mp4,stream=audio,output=audio.mp4 \
|
|
|
|
in=h264_baseline_360p_600.mp4,stream=video,output=h264_360p.mp4 \
|
|
|
|
in=h264_main_480p_1000.mp4,stream=video,output=h264_480p.mp4 \
|
|
|
|
in=h264_main_720p_3000.mp4,stream=video,output=h264_720p.mp4 \
|
|
|
|
in=h264_high_1080p_6000.mp4,stream=video,output=h264_1080p.mp4 \
|
|
|
|
--enable_widevine_encryption \
|
|
|
|
--key_server_url https://license.uat.widevine.com/cenc/getcontentkey/widevine_test \
|
|
|
|
--content_id 7465737420636f6e74656e74206964 \
|
|
|
|
--signer widevine_test \
|
|
|
|
--aes_signing_key 1ae8ccd0e7985cc0b6203a55855a1034afc252980e970ca90e5202689f947ab9 \
|
|
|
|
--aes_signing_iv d58ce954203b7c9a9a9d467f59839249 \
|
|
|
|
--protection_systems Widevine,PlayReady
|
|
|
|
--mpd_output h264.mpd
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
Users are responsible for setting up the license servers and managing keys
|
|
|
|
there unless they are using a cloud service provided by the DRM provider or
|
|
|
|
third_parties.
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
Refer to
|
|
|
|
`player setup <https://shaka-player-demo.appspot.com/docs/api/tutorial-drm-config.html>`_
|
|
|
|
on how to config the DRM in Shaka Player.
|
|
|
|
|
|
|
|
Widevine test credential
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Here is the test crendential used in this tutorial.
|
|
|
|
|
2017-10-24 22:51:02 +00:00
|
|
|
:key_server_url:
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
https://license.uat.widevine.com/cenc/getcontentkey/widevine_test
|
|
|
|
|
2017-10-24 22:51:02 +00:00
|
|
|
:signer:
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
widevine_test
|
|
|
|
|
2017-10-24 22:51:02 +00:00
|
|
|
:aes_signing_key:
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
1ae8ccd0e7985cc0b6203a55855a1034afc252980e970ca90e5202689f947ab9
|
|
|
|
|
2017-10-24 22:51:02 +00:00
|
|
|
:aes_signing_iv:
|
2017-09-20 02:35:05 +00:00
|
|
|
|
|
|
|
d58ce954203b7c9a9a9d467f59839249
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
The test credential is only meant for development. Please reach out to
|
|
|
|
`Widevine <https://support.google.com/widevine/troubleshooter/6027072>`_ if
|
|
|
|
you need something for production use.
|
|
|
|
|
2018-08-20 17:47:59 +00:00
|
|
|
Configuration options
|
|
|
|
---------------------
|
|
|
|
|
2018-02-10 23:37:42 +00:00
|
|
|
.. include:: /options/drm_stream_descriptors.rst
|
|
|
|
.. include:: /options/general_encryption_options.rst
|
2017-09-20 02:35:05 +00:00
|
|
|
.. include:: /options/widevine_encryption_options.rst
|