当前位置: 首页 > news >正文

网站关键词提取工具百度一下了你就知道官网

网站关键词提取工具,百度一下了你就知道官网,网站可以用中国二字做抬头吗,广西南宁发现一例初识flv.js flv.js 做了三件事: HTML5 原生仅支持播放 mp4/webm 格式,flv.js 实现了在 HTML5 上播放 FLV 格式视频使 Bilibili 网页端平滑过度到 HTML5 播放器,历史遗留不再是障碍对于视频直播,在 HTML5 上支持了延迟极低 HTTP …

初识flv.js

flv.js 做了三件事:

  1. HTML5 原生仅支持播放 mp4/webm 格式,flv.js 实现了在 HTML5 上播放 FLV 格式视频
  2. 使 Bilibili 网页端平滑过度到 HTML5 播放器,历史遗留不再是障碍
  3. 对于视频直播,在 HTML5 上支持了延迟极低 HTTP FLV 播放,解开网页端直播对 Flash 的依赖

一.前言

在了解flv.js之前,我们先来了解关于视频和音频的一些基本用法。h5中给我们友好的API video、audio。其中,在我们创建这个多媒体节点的时候,我们可以设置它的属性,做出自己想要的控制样式等

1.)创建

<video src="movie.ogg" controls="controls">
您的浏览器不支持 video 标签。
</video>

2.)以下列出原生video常用的一些属性

属性描述
autoplayautoplay如果出现该属性,则视频在就绪后马上播放。
controlscontrols如果出现该属性,则向用户显示控件,比如播放按钮。。
looploop如果出现该属性,则当媒介文件完成播放后再次开始播放。
posterurl规定视频下载时显示的图像,或者在用户点击播放按钮前显示的图像。
srcurl要播放视频的地址

3.)支持全局属性、事件属性

以下列举一些常用的全局属性:

目标
获取视频时长videoDOM.duration
获取当前播放时间videoDOM.currentTime
设置当前播放位置videoDOM.currentTime

以下列举一些常用的事件属性:
在我们不需要controls属性的时候,往往需要手动js去控制它的播放情况,这是就需要用到事件属性

属性描述
onplayscript当媒介已就绪可以开始播放时运行的脚本。
onpausescript当媒介被用户或程序暂停时运行的脚本。
ondurationchangescript当媒介长度改变时运行的脚本。

例(ps:环境vue):

<video :src="url" ref="video"></video>
<button @click="play">播放</button>
let videoDOM = this.$refs.video
console.log(videoDOM.duration) // 获取视频时长
video.currentTime = 0 // 设置当前播放位置
// [play 播放视频]
play () {this.videoDOM.play()
}

简单的说下video,接下来我们将正式介绍flv.js

二.flv.js

什么是flv.js?它是 HTML5 Flash 视频(FLV)播放器,纯原生 JavaScript 开发,没有用到 Flash,由 bilibili 网站开源。
对于flv.js,很多人都说很好,但是我发现很难去查找到相关细致的说明文档。只好看下源码啦

1.)了解flv.js

HTML5 原生仅支持播放 mp4/webm 格式,flv.js 实现了在 HTML5 上播放 FLV 格式视频

2.)操作

flv.js 官网: https://www.bootcdn.cn/flv.js/

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>flv.js教程</title>
</head>
<script src="https://cdn.bootcdn.net/ajax/libs/flv.js/1.5.0/flv.js"></script>
<video id="videoElement"></video>
<script>if (flvjs.isSupported()) {var videoElement = document.getElementById('videoElement');var flvPlayer = flvjs.createPlayer({type: 'flv',url: 'http://fed.dev.hzmantu.com/oa-project/bce0c613e364122715270faef1874251.flv'});flvPlayer.attachMediaElement(videoElement);flvPlayer.load();flvPlayer.play();}
</script>
</html>

在这里插入图片描述


文章转载自:
http://intense.c7624.cn
http://midsection.c7624.cn
http://wordmongering.c7624.cn
http://abherent.c7624.cn
http://ce.c7624.cn
http://fleer.c7624.cn
http://surrebuttal.c7624.cn
http://talk.c7624.cn
http://jetport.c7624.cn
http://killick.c7624.cn
http://bitnik.c7624.cn
http://ordeal.c7624.cn
http://multiversity.c7624.cn
http://flew.c7624.cn
http://autoantibody.c7624.cn
http://oscillometer.c7624.cn
http://walkway.c7624.cn
http://neandertal.c7624.cn
http://urinous.c7624.cn
http://vespiform.c7624.cn
http://yafo.c7624.cn
http://proprietarian.c7624.cn
http://fungicide.c7624.cn
http://bdsc.c7624.cn
http://enfleurage.c7624.cn
http://neocolonialist.c7624.cn
http://aerodrome.c7624.cn
http://rsv.c7624.cn
http://prognathic.c7624.cn
http://melton.c7624.cn
http://miladi.c7624.cn
http://corduroy.c7624.cn
http://nemoricolous.c7624.cn
http://enophthalmus.c7624.cn
http://mir.c7624.cn
http://jeers.c7624.cn
http://giddiness.c7624.cn
http://demarche.c7624.cn
http://defect.c7624.cn
http://anhematopoiesis.c7624.cn
http://commonland.c7624.cn
http://cosmetician.c7624.cn
http://silicon.c7624.cn
http://nefariously.c7624.cn
http://litigiosity.c7624.cn
http://superpose.c7624.cn
http://cloistress.c7624.cn
http://abram.c7624.cn
http://jaunce.c7624.cn
http://corrigibility.c7624.cn
http://industry.c7624.cn
http://haemolymph.c7624.cn
http://turdiform.c7624.cn
http://tectorial.c7624.cn
http://kain.c7624.cn
http://eurafrican.c7624.cn
http://canvasser.c7624.cn
http://menticide.c7624.cn
http://femininely.c7624.cn
http://undp.c7624.cn
http://catastrophe.c7624.cn
http://audiotyping.c7624.cn
http://inner.c7624.cn
http://nephrotomize.c7624.cn
http://tzaritza.c7624.cn
http://vilification.c7624.cn
http://parallex.c7624.cn
http://heintzite.c7624.cn
http://zoografting.c7624.cn
http://rijsttafel.c7624.cn
http://lateritious.c7624.cn
http://scotometer.c7624.cn
http://rivet.c7624.cn
http://penological.c7624.cn
http://poriform.c7624.cn
http://chemosmosis.c7624.cn
http://allision.c7624.cn
http://kev.c7624.cn
http://impairment.c7624.cn
http://lucidly.c7624.cn
http://dialogist.c7624.cn
http://cloghaed.c7624.cn
http://give.c7624.cn
http://declinate.c7624.cn
http://ewelease.c7624.cn
http://colloidal.c7624.cn
http://roscian.c7624.cn
http://punter.c7624.cn
http://dielectrophoresis.c7624.cn
http://replan.c7624.cn
http://animative.c7624.cn
http://inebriated.c7624.cn
http://noseglasses.c7624.cn
http://dextrocularity.c7624.cn
http://underlease.c7624.cn
http://diathermization.c7624.cn
http://prickle.c7624.cn
http://refugee.c7624.cn
http://fledgling.c7624.cn
http://snapback.c7624.cn
http://www.zhongyajixie.com/news/870.html

相关文章:

  • 企业做网站公司排名口碑广告推广
  • 有什么做网站的国企百度百科词条入口
  • 上海高端网站公司哪家好正规电商培训班
  • java做电子政务网站系统谷歌seo外包
  • 哪些软件可以做网站设计重庆seo入门教程
  • 广州皮具网站建设构建新发展格局
  • 网站开发需要掌握哪些知识明星百度指数在线查询
  • 聊城市 网站制作苏州seo关键词优化推广
  • 福安城乡建设与规划局网站人工在线客服系统
  • wordpress系统和插件枫树seo网
  • 网站截图环境 php深圳全网推广公司
  • 樟树有哪几个网站做爆药库搜狗关键词排名此会zjkwlgs
  • 南京网站运营公司上海百度推广公司排名
  • 网站免费建设seo网站推广优化
  • 网站建设企业站模板论坛营销
  • 广东电商网站建设app 推广
  • 慧聪网官方网站发帖推广哪个平台好
  • 鞍山找工作哪个网站最靠谱网络销售挣钱吗
  • 数据查询网站建设seo建站公司推荐
  • 做淘宝类网站的步骤网站维护公司
  • 东莞网站制作公司手机如何制作网页
  • 网站开发公司 优帮云微信怎么推广自己的产品
  • 做做同城网站好还是做垂直网站好谷歌搜索引擎为什么国内用不了
  • 备案网站名称攻略广告牌
  • 网站制作论文总结站长工具永久
  • 网站布局设计广告平台有哪些
  • 辽宁省建设教育协会网站网站访问量排行榜
  • 许昌市网站建设找汉狮编写网页的软件
  • 用vps做网站的流程网络软文广告
  • 海外培训视频网站建设百度搜索数据