DRM 保護付きの HTML5 ビデオ プレーヤーを埋め込む方法

HaihaisoftのHTML5ビデオ向けDRM-X 5.0は、HTML5ビデオタグを使用しています。コンテンツプロバイダーは、標準のHTML5ビデオタグと、VideoJSなどの有名なHTML5プレーヤー、そしてJavaScriptを使用してHTML5プレーヤーと連携することで、簡単にビデオを埋め込むことができます。

その他のチュートリアル
DRM 保護付きの HTML5 ビデオ プレーヤーを埋め込む方法

DRM 保護付きの HTML5 ビデオ プレーヤーを埋め込む方法

プレーヤーを大幅に変更する必要がない場合は、以下のコードを使用してビデオを埋め込んでください。

<div id="ZJGet_Video_URL" style="display: none;">https://www.drm-x.com/download/drmx5/HolyForever-ChrisTomlin_P.mp4</div>
<script type="text/javascript" src="https://www.zjget.com/assets/embed_js/embed_zjget.js"></script>
<script type="text/javascript" src="https://www.zjget.com/assets/videojs-8.23.3/video.min.js"></script>
<script type="text/javascript" src="https://www.zjget.com/assets/embed_js/zjget.js"></script>

プレーヤーを変更する必要がある場合は、次の紹介を参照してください。

ヘッドにVideoJSをインクルードします:

<!--Include VideoJS library-->
<link rel="stylesheet" type="text/css" href="css/video-js.css" />
<script src="js/video.js" type="text/javascript" charset="utf-8"></script>

<!--Using VideoJS skin-->
<link rel="stylesheet" type="text/css" href="css/skin/TechSkin-skin.css" />

ウェブサイトのスタイルに応じて他のスキンを使用することもできます。

ここでは、プレーヤーのスキンをカスタマイズできる VideoJS スキン生成ツールをお勧めします。 https://codepen.io/heff/pen/EarCt

VideoJSを埋め込む:

注記: iOS の場合は、id 値が zjget_ios_media_url の div を追加し、div を非表示にして、div にビデオの URL を記述します。ZJGet はタグを自動的に認識し、ユーザーにこのビデオを再生するかどうかを尋ねます。例:

<div id="zjget_ios_media_url" style="display: none;">https://www.drm-x.com/download/drmx5/HolyForever-ChrisTomlin_P.mp4</div>

iOS 向け ZJGet の最新バージョンのメディア URL 注記:

iOSで動画を再生してもらうには、リンクに_Pを含む以下の文字を含める必要があります。例えば、リンクには_P.mp4、_P.webm、または_P.mp3(大文字と小文字は区別されません)が含まれます。または、zjgetが含まれます。ダウンロードリンクの任意の場所にこれらの文字のいずれかを含めることで、ZJGet for iOSが認識し、ダウンロードをサポートします。

<div id="LoadingText" style="display: none;" align="center">
  Please wait, connecting to obtain license page...
</div>
<div id="cellular_button" align="center"></div>
<div align="center">
  <script type="text/javascript">
    // Detecting current browser, if not ZJGet, It Will remind the user to open the protected files in ZJGet browser,
    // and remind the user to download ZJGet browser.
    if(navigator.userAgent.indexOf("ZJGet") == -1){
      document.write('Please open the protected files in ZJGet browser. Download ZJGet');
    }else{
      // Use HTML5 video tag;
      // ZJGet will automatically change the video tag's ID,
      // here zjget_player will automatically become zjget_player_html5_api;
      // Use src attribute specifies video URL;
      // class="video-js" using VideoJS style.
      // In data-setup, use "autoplay":true; add auto play control;
      // In data-setup, you can use "playbackRates": [0.5, 0.7, 1, 1.5, 2, 3, 4] add control speed function.;
      document.write('<'video id="zjget_player" controls="controls" class="video-js" data-setup=\' {"playbackRates": [0.5, 0.7, 1, 1.2, 1.5, 2], "autoplay":false, "width": 856, "height": 480 }\'><'source src="https://www.drm-x.com/download/drmx5/HolyForever-ChrisTomlin_P.mp4" type="video/mp4"></video>);
    }
  </script>
</div>

Javascript コード:

<script type="text/javascript">
  document.onreadystatechange = function() {
    if (document.readyState == "complete") { // After the page is complete, and execute,Required;

      // Get HTML5 player
      // ZJGet will automatically change zjget_player become zjget_player_html5_api;
      myVid=document.getElementById("zjget_player_html5_api");

      // Get detail information return by the player, 

      // if user need to obtain a license, It will return a URL;

      // Otherwise, It will return the details of the protected file information and the license information.
      isSupp=myVid.canPlayType('zjget');
	// Check the mobile phone network type
      if(navigator.userAgent.indexOf("Mobile ZJGet") > 0){
		var con = window.navigator.connection;
		var network = con.type; // Mobile phone network:cellular; wifi:wifi
		// Check whether your phone is using a mobile network or wifi
		if (network == "cellular"){ // If the phone is using a mobile network, you need to add a button to get a license to the page
			document.getElementById("cellular_button").innerHTML = '<'button style="height: 50px" class="m_g_b" onClick="supportType(event,\'video/ogg\',\'theora, vorbis\')">Play Protected file (Click 2 times)'<'/button>;
		}
	  }
      // If the information contained in the return message contains URL,

      // it is required to obtain a license.
      if(isSupp.indexOf("http")>0){
        // Just a tips, non - must;
        document.getElementById("LoadingText").style.display='block';
        // Using substring to capture a URL to obtain license;
        licURL = isSupp.substring(isSupp.indexOf("http"));
        // Redirecting to obtain license page to verify and obtain license.
        window.location.href = licURL;
      }
    }
};
</script>

次の方法では、ライセンス情報 (オープンカウントと有効期限) を含む詳細情報を取得するためのリファレンスが提供されており、必要に応じてこの情報を取得できます。

function supportType(e,vidType,codType){
  myVid=document.getElementById("zjget_player_html5_api");
  isSupp=myVid.canPlayType("zjget");
  myVid.play();
  licURL = isSupp.substring(isSupp.indexOf("http"));

  if(isSupp.indexOf("http")>0){
    window.location.href = licURL;
  }else{
    if(isSupp.indexOf("License")>0){

      // Get open count
      var openCount=isSupp.substring(isSupp.indexOf(":"),isSupp.indexOf(";"));

      // Get the license expiration date
      var ft=isSupp.substring(isSupp.indexOf(";")+1);
      var ut = filetime_to_unixtime(ft);
      var d = new Date(ut * 1000);
      e.target.parentNode.innerHTML ="Open Count" + openCount + ", Expiration date:" + d.toLocaleString();
      return;
    }

    if(isSupp.indexOf("Error ID = 3")>0){
      e.target.parentNode.innerHTML ="License is expired, Please Re open the protected file to obtain a new license.";
      return;
    }
  }
}

その他の DRM-X 5.0 チュートリアル

DRM-X 5.0 ZJGet Windows Video TutorialDRM-X 5.0 ZJGet Windows 暗号化チュートリアル

このビデオでは、ZJGetブラウザを使用してWindowsでファイルを暗号化する方法を説明します。

今すぐ視聴
DRM-X 5.0 ZJGet macOS Video TutorialDRM-X 5.0 ZJGet MacOS 暗号化チュートリアル

このビデオでは、ZJGetブラウザを使用してmacOSシステムでファイルを暗号化する方法を説明します。

今すぐ視聴
DRM-X 5.0 ZJGet Windows TutorialDRM-X 5.0 ZJGet Windows チュートリアル

このビデオでは、ZJGetブラウザを使用してWindows上で暗号化されたファイルをダウンロード、インストール、開く方法を紹介します。

今すぐ視聴
DRM-X 5.0 ZJGet Text TutorialDRM-X 5.0 ZJGet テキストチュートリアル

ZJGetブラウザユーザーガイド。このチュートリアルは、ZJGetブラウザのコア機能と実用的なヒントを簡単に習得するのに役立ちます。

今すぐ視聴
DRM-X 5.0 ZJGet Graphic Tutorial AnswersDRM-X 5.0 ZJGet よくある質問(FAQ)

ZJGetブラウザの使用に関するよくある質問(FAQ)。このセクションでは、最も役立つQ&Aをまとめ、遭遇する可能性のある障害を克服するのに役立ちます。

今すぐ視聴
DRM-X 5.0 自动批量加密工具完整操作指南DRM-X 5.0 自動バッチ暗号化ツールの完全操作ガイド

The DRM-X 5.0 Automated Batch Encryption Tool offers both manual and automatic scanning modes, supports multiple file formats, and enables PDF-to-HTML encryption, helping businesses efficiently and automatically implement digital rights management for batch files.

今すぐ視聴

ご質問はありますか?

弊社の担当者がお答えします。

Haihaisoft 製品、価格、実装などについてお問い合わせください。高度な訓練を受けた当社の担当者が待機しており、いつでもお手伝いいたします。

電話: +64 27 507 9959 (ニュージーランド)

QQ: 1279126286 / 994184623

お問い合わせマイクロソフトチーム

service#haihaisoft.com (#を@に置き換えてください)

お問い合わせ
contactUs