我想要从 Wowza Streaming 到 jwPlayer 的流文件 m3u8。我也想让视频无法阅读或下载,我在链接中阅读:https: //support.jwplayer.com/customer/portal/articles/1430261-aes-content-protection 跟随链接:
var playerInstance = jwplayer("myElement");
playerInstance.setup({
file: 'sample_aes_stream.m3u8',
aestoken: 'EXAMPLE_AES_TOKEN'
});
我使用 AES 解密将我的视频 (.mp4) 加密为 index.m3u8,其中包含许多段文件 (.ts)。文件 m3u8 仅在有密钥文件时读取。但在下面的演示中,我不明白
jwplayer("myElement").setup({
file: 'sample_aes_stream.m3u8',
aestoken: 'EXAMPLE_AES_TOKEN'
});
什么EXAMPLE_AES_TOKEN 是???按照链接: http: //iphim.vn/xem-phim-phut-giay-sinh-tu-3136.html 你可以看到我无法使用 IDM(互联网下载管理器)下载视频。我想做但是不知道怎么做。请帮助我!