:*
Hi everyone,
I'm currently working on implementing DRM (Digital Rights Management) in JWPlayer for my video streaming service, and I'm seeking some guidance on how to handle multiple keys for different content.
Here's a brief overview of my setup:
I'm using JWPlayer to stream videos on my platform, and I need to secure the content using DRM. Specifically, I'm using ClearKey DRM for encryption.
In my setup, I have multiple videos, each requiring its own set of encryption keys for ClearKey DRM. Here's an example of how I'm configuring a playlist entry in JWPlayer:
```javascript
{
file: "https://example.com/video1.mpd",
drm: {
clearKey: {
keys: [
{
kty: "oct",
kid: "key1",
k: "key1_value"
},
{
kty: "oct",
kid: "key2",
k: "key2_value"
},
// Add more keys as needed
],
userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"
}
}
}
```
As you can see, each video entry in the playlist has its own set of keys defined under the ClearKey DRM section.
My question is, how can I efficiently manage multiple keys for different videos in JWPlayer? Is there a best practice for handling this scenario? Should I consider using a different DRM solution, or is ClearKey suitable for my requirements?
Any insights or suggestions would be greatly appreciated!
Thank you in advance.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 1 of 1
			
		Similar Threads
- 
  Download subtitles from Bravo TV's JWPlayer 8.27.0By trixx in forum Video Streaming DownloadingReplies: 4Last Post: 21st May 2023, 05:04
- 
  Help: How To download Encrypted videos from JwplayerBy hamada_mohamed in forum Video Streaming DownloadingReplies: 5Last Post: 7th Oct 2021, 11:44
- 
  Jwplayer 8.14.0 hls Stream Download Method?By Franseven in forum Video Streaming DownloadingReplies: 4Last Post: 15th Jan 2021, 10:18
- 
  Building pc to capture multiple analog camera, running multiple virtualdubBy workshow in forum Newbie / General discussionsReplies: 3Last Post: 29th Dec 2019, 11:38


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote