爱奇艺万能播放器微软商店地址

最近重装了一下电脑,之前在微软商店用的 爱奇艺万能播放器 要重新安装,但是现在在微软商店已经下架了,只能通过其他手段才能下载。之前在52破解有找到一个 大佬 分离出来的版本,但是还是觉得微软商店下载的放心一点。最近终于搞好了,现在把路径放出来一下,以后直接用的时候也好找:

https://www.microsoft.com/store/productId/9NR5WC8N0QLF

直接网页搜索,点击会跳转到电脑自带的 Microsoft Store 。

Tip:此方法对网速要求较高。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
A:当然可以,以下是一个简单的防爱奇艺播放器的UI代码,使用video.js实现: ```html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>防爱奇艺播放器UI</title> <script src="https://cdn.bootcss.com/video.js/7.6.6/video.min.js"></script> <link href="https://cdn.bootcss.com/video.js/7.6.6/video-js.min.css" rel="stylesheet"> <style> .iqiyi-layer { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; } .iqiyi-layer .content { background-color: #fff; padding: 20px; max-width: 80%; max-height: 80%; overflow: auto; } </style> </head> <body> <div class="iqiyi-layer"> <div class="content"> <p>此视频为爱奇艺版权内容,无法播放。</p> </div> </div> <video id="my-video" class="video-js" controls preload="auto" width="640" height="264" poster="poster.png" data-setup="{}"> <source src="movie.mp4" type='video/mp4'> <p class="vjs-no-js"> To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a> </p> </video> <script> var player = videojs('my-video'); player.on('error', function (e) { if (player.error().code === 4) { // 4代表无法加载媒体源,这里假设是因为版权原因而无法播放 showIqiyiWarning(); } }); function showIqiyiWarning() { var layer = document.querySelector('.iqiyi-layer'); layer.style.display = 'flex'; } </script> </body> </html> ``` 在这个例子中,我们创建了一个具有防盗版机制的视频播放器。当视频因为版权问题无法播放时,通过video.js的`error`事件捕获到错误,并显示一层遮罩来提醒用户无法观看。您可以通过修改层的文本和样式来自定义遮罩的外观,并根据您的需求进行修改。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值