Below we provide instructions for integrating Theta P2P with any HLS.js compatible video player. The below examples are using video.js and hls.js as a video player solution. To integrate Theta into your video.js powered player, simply include the theta scripts, implement the Theta Wallet token generator, and setup the options for your video.js player as shown below.
Include scripts
Enter the following script tags in your head
tag. Please ensure HLS.js is included before the theta-hls-plugin.
<script src="https://d1ktbyo67sh8fw.cloudfront.net/js/theta.umd.min.js"></script>
<script src="https://d1ktbyo67sh8fw.cloudfront.net/js/theta-hls-plugin.umd.min.js"></script>
<script src="https://d1ktbyo67sh8fw.cloudfront.net/js/videojs-theta-plugin.min.js"></script>
Theta Wallet token generator
To allow authenticated users to earn TFUEL in your application, your backend needs to generate a Theta Wallet access token. Please implement a function which will call your backend to generate a new access token for the user's Theta Wallet.
async function getWalletAccessToken() {
//Check if a user is logged in...
let isAuthenticated = true;
if (!isAuthenticated) {
//No user is logged in, no wallet will be used
return null;
}
//This API should check the user's auth
let body = await yourAPIRequestToGenerateThetaWalletAccessTokenForAuthedUser();
//Return the access token from the request body
return body.access_token;
}
Note: If you do not have a secret key to generate a Theta Wallet access token, please contact your Theta rep for access.
Setup video.js options
<script>
const optionalHlsOpts = null;
const player = window.player = videojs('my-player', {
techOrder: ["theta_hlsjs", "html5"],
sources: [{
src: "YOUR_VIDEO_URL",
type: "application/vnd.apple.mpegurl",
label: "1080p"
}],
theta_hlsjs: {
videoId: "YOUR_INTERNAL_VIDEO_ID",
userId: "YOUR_AUTHED_USER_ID",
walletUrl: "wss://api-wallet-service.thetatoken.org/theta/ws",
onWalletAccessToken: getWalletAccessToken,
hlsOpts: optionalHlsOpts
}
});
</script>
Toggle CDN Only
Sometimes you want to only allow CDN (user pref, etc). This code will enable or disable CDN only mode.
myPlayer.tech_.trigger('toggleUseCDN');
License
Copyright (c) Theta Labs, Inc.
Updated 4 months ago