Primetime Packager / Cloud DRM / TVSDK

You can use Adobe’s Offline packager to prepare content for any of the DRM solutions supported by Primetime Cloud DRM, powered by ExpressPlay.

This set of instructions assumes you have already set up an ExpressPlay admin account: Primetime DRM Cloud Quick-start.

  1. Choose the infrastructure to use for packaging your content. Primetime Packager supports both command-line and configuration-based packaging of content for use with the FairPlay, Widevine, and PlayReady DRMs. The following formats and encryption are currently supported in TVSDK (with more in the pipeline):

    • DASH (CENC) / PlayReady, Widevine - For HTML5
    • HLS / FairPlay, Access - For iOS
  2. Choose a Key Management System (KMS):

    • Use ExpressPlay’s KMS ( ExpressPlay Key Storage); this system manages your content keys via ExpressPlay’s RESTful API.

      or…

    • Set up your own KMS. Create a database of content keys, selectable by Content-ID.

      In either case, the KMS manages a supply of content keys, with each key having an associated Content-ID.

  3. Package your content. With Primetime Packager, you can package a piece of content for a specific DRM solution, or for multiple DRM solutions.

    The following sample commands show some examples of packaging content for different DRM solutions:

    • Widevine with Primetime Packager (generates MPD file):

      java -jar OfflinePackager.jar \
        -in_path [
        <your_content.mp4>] \
        -out_type dash \
        -out_path [
        <your_out_file_path>] \
        -drm \
        -drm_sys WIDEVINE \
        -key_file_path "creds/widevine_key.bin" \
        -widevine_key_id [
        <some_keyID>] \
        -widevine_content_id [
        <some_content-ID] \
        -widevine_header provider:intertrust#content_id:2a
      
    • FairPlay with Primetime Packager (Generates an M3U8 file):

      java -jar OfflinePackager.jar
        -in_path [
        <your_content.mp4>]
        -out_type hls
        -out_path [
        <your_out_file_path>]
        -drm
        -drm_sys FAIRPLAY
        -key_file_path "creds/fairplay_key.bin"
        -key_url "user_provided_value"
      
      NOTE

      The key_url value is copied as is in the M3U8 file.

  4. Create a “storefront server”.

    The storefront server needs to handle the following operations:
    
    1. Customer selection of content. This implementation needs to include an endpoint for clients to request a content token for a specific content ID.
    2. Customer entitlement
    3. License token (ExpressPlay) requests from the client ( ExpressPlay license token request / response reference)
  5. Create your client.

    The client should include a call to your storefront server. Adobe recommends that the client call the storefront after the user selects some content, and after the user is authenticated. Then, pass the token returned from ExpressPlay to your player to use for license requests. Introductions to implementing the DRM component of your players are here:
    
  6. With the license token in hand, the client can now derive the request URL from the token and make the license request to ExpressPlay, and then play the selected content for the user.

On this page