欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP网络资源弄视频,土办法

程序员文章站 2022-03-02 21:13:07
...

1、首先找到要获取的视频,如果是网络视频,打开开发者工具,找到视频网络路径。也就是src="(这部分内容)",如果是自己的视频,也可以自己通过爱奇艺或者腾讯上传视频,只要不违法审核很快。然后打开使用以上方法拷贝出来。

2、获取好之后在合适的位置使用一下代码,然后替换src=""的内容

通用的:

<video class="lib-video" controlslist="" webkit-playsinline="webkit-playsinline" playsinline="playsinline" autoplay="true" poster="" height="498" width="510" src="//cloud.video.taobao.com//play/u/2058571835/p/2/e/6/t/1/31023666.mp4" type="video/mp4" frameborder="0"></video>

<p><video poster="视频封面图片" src="http://player.youku.com/embed/XMzE0NTEzNDY0OA==" controls="" width="100%" height="150"></video></p>

爱奇艺:

<embed src="http://player.video.qiyi.com/9dc5f68477e7a304eebada7683fa6e9b/0/0/w_19ruwrnyxh.swf-albumId=9850998009-tvId=9850998009-isPurchase=0-cnId=7" allowFullScreen="true" quality="high" width="480" height="350" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>

<iframe src="http://open.iqiyi.com/developer/player_js/coopPlayerIndex.html?vid=9dc5f68477e7a304eebada7683fa6e9b&tvId=9850998009&accessToken=2.f22860a2479ad60d8da7697274de9346&appKey=3955c3425820435e86d0f4cdfe56f5e7&appId=1368&height=100%&width=100%" frameborder="0" allowfullscreen="true" width="100%" height="100%"></iframe>

腾讯:

<embed src="https://imgcache.qq.com/tencentvideo_v1/playerv3/TPout.swf?max_age=86400&v=20161117&vid=e0502yh9syl&auto=0" allowFullScreen="true" quality="high" width="480" height="400" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>

<iframe frameborder="0" width="640" height="498" src="https://v.qq.com/iframe/player.html?vid=e0502yh9syl&tiny=0&auto=0" allowfullscreen></iframe>

总结:以上都是临时办法。而且视频资源不会存在自己工程中。尽量还是使用富文本编辑器中的上传视频功能,或者自己编写一个上传视频方法,这样视频会存入到自己工程中。

后续会发类似的上传视频功能。尽情期待