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

赣榆做网站手机系统优化软件

赣榆做网站,手机系统优化软件,wordpress怎么备份按在,今日国内重大新闻webrtc-streamer WebRTC (Web Real-Time Communications) 是一项实时通讯技术,它允许网络应用或者站点,在不借助中间媒介的情况下,建立浏览器之间点对点(Peer-to-Peer)的连接,实现视频流和(或&a…

webrtc-streamer

  • WebRTC (Web Real-Time Communications) 是一项实时通讯技术,它允许网络应用或者站点,在不借助中间媒介的情况下,建立浏览器之间点对点(Peer-to-Peer)的连接,实现视频流和(或)音频流或者其他任意数据的传输。WebRTC 包含的这些标准使用户在无需安装任何插件或者第三方的软件的情况下,创建点对点(Peer-to-Peer)的数据分享和电话会议成为可能。

    简单的说:WebRTC 是一种 HTML5规范,他无需在浏览器中安装任何插件可以在网页内进行实时通信工作的开源技术,它直接在浏览器和设备之间添加实时媒体通信。
    
  • rtsp(Real Time Streaming Protocol,RTSP)是实时视频网络传输主流的实现方式,是一种网络流媒体协议。低延时高清晰度的RTSP视频流传输是网络直播、在线会议系统等行业的核心技术。

  • webrtc-streamer是一个使用简单机制通过 WebRTC 流式传输视频捕获设备和 RTSP 源的项目,它内置了一个小型的 HTTP server 来对 WebRTC需要的相关接口提供支持。

使用方法

1、下载webrtc-streamer

https://github.com/mpromonet/webrtc-streamer/releases

2、运行

双击解压后的.exe文件运行,默认抛出本机8000端口(172.0.0.1:8000)
  • 由于 webrtc 的核心库还不支持H265的视频编码,所以要配置设备视频编码方式为H264

  • 命令:-o ,默认情况video会进行编码、解码,占用资源,可能导致cpu拉满,使用-o将取消编码解码

  • 自定义端口:创建.bat文件,并双击执行,文件内容如下:

    @echo off
    start "" ".webrtc-streamer.exe"  -H 0.0.0.0:9998 -o
    exit
    
  • 运行成功后,可在浏览器中查询所有api

    //192.168.3.33:9998/api/help
    http: ['/api/addIceCandidate','/api/call','/api/createOffer','/api/getAudioDeviceList','/api/getAudioPlayoutList','/api/getIceCandidate','/api/getIceServers','/api/getMediaList','/api/getPeerConnectionList', // 判断当前的webrtc-streamer正在连接的通道'/api/getStreamList','/api/getVideoDeviceList','/api/hangup','/api/help','/api/log','/api/setAnswer','/api/version','/api/whep'
    ]
    

3、引用开发包

  • 将下载包html文件夹下webrtcstreamer.js文件和html/libs文件夹下adapter.min.js文件复制到VUE项目public目录下 、在index.html文件里引入这两个js文件

    <head><!-- rtsp --><script src="/data/webrtcstreamer.js" charset="utf-8"></script><script src="/data/adapter.min.js" charset="utf-8"></script>
    </head>
    

4、页面中使用

<template><div class="ev-player"><CommonDragWindow v-model="innerShow" :width="600" :height="400" :resize="true" :position="position"><template v-slot:title>{{ title }}</template><template #default><video :id="`video-${equipId}`" autoplay width="100%" height="98%"></video></template></CommonDragWindow></div>
</template><script setup>import CommonDragWindow from './CommonDragWindow.vue'import { getConfigList } from '@/api/common.js'import { ref, onMounted, watchEffect, watch, nextTick } from 'vue'const show = defineModel({ type: Boolean, default: false })const props = defineProps({title: {type: String,default: '监控视频'},equipId: {type: [Number, String]}})const innerShow = ref(false)const position = ref({top: 500,left: 20})let webRtcServer = nullwatchEffect(() => {innerShow.value = show.value})watch(() => innerShow.value,async (val) => {if (val) {const rtspStr = 'rtsp://132.239.12.145:554/axis-media/media.amp'if (rtspStr) {await nextTick() // 待dom加载完毕let videoDocument = document.getElementById('video')webRtcServer = new WebRtcStreamer(videoDocument, `http://${window.appConfig.localhost}:8000`)webRtcServer.connect(rtspStr, null, `rtptransport=tcp&timeout=60`)}} else {webRtcServer?.disconnect()webRtcServer = null}show.value = val})onMounted(() => {})
</script><style scoped lang="scss">.ev-player {:deep(video) {width: 100%;height: calc(100% - 5px);}}
</style>

文章转载自:
http://fraternize.c7497.cn
http://stackstand.c7497.cn
http://geophagy.c7497.cn
http://croppie.c7497.cn
http://deflationary.c7497.cn
http://pub.c7497.cn
http://abbreviator.c7497.cn
http://bitterness.c7497.cn
http://elimination.c7497.cn
http://pearly.c7497.cn
http://petiolar.c7497.cn
http://prelacy.c7497.cn
http://omnivore.c7497.cn
http://dyon.c7497.cn
http://southwardly.c7497.cn
http://remonstrance.c7497.cn
http://redia.c7497.cn
http://nailhead.c7497.cn
http://rickets.c7497.cn
http://demy.c7497.cn
http://wingtip.c7497.cn
http://greeneian.c7497.cn
http://cresylic.c7497.cn
http://vlaie.c7497.cn
http://swivelpin.c7497.cn
http://ferrimagnet.c7497.cn
http://thinking.c7497.cn
http://referent.c7497.cn
http://untogether.c7497.cn
http://lusterware.c7497.cn
http://workaround.c7497.cn
http://edaphology.c7497.cn
http://illusion.c7497.cn
http://convulsive.c7497.cn
http://emolument.c7497.cn
http://verneuk.c7497.cn
http://enclasp.c7497.cn
http://mazarine.c7497.cn
http://mortifying.c7497.cn
http://passus.c7497.cn
http://russonorsk.c7497.cn
http://homeomorphous.c7497.cn
http://ethnohistory.c7497.cn
http://commercialese.c7497.cn
http://sports.c7497.cn
http://atlantean.c7497.cn
http://harmaline.c7497.cn
http://bultery.c7497.cn
http://abyssopelagic.c7497.cn
http://gummy.c7497.cn
http://conscientization.c7497.cn
http://representee.c7497.cn
http://jivaro.c7497.cn
http://snowcem.c7497.cn
http://shmaltz.c7497.cn
http://snapper.c7497.cn
http://frap.c7497.cn
http://sureness.c7497.cn
http://linksland.c7497.cn
http://etiocholanolone.c7497.cn
http://irate.c7497.cn
http://nested.c7497.cn
http://alimentary.c7497.cn
http://vouchsafement.c7497.cn
http://hyperphysical.c7497.cn
http://gramary.c7497.cn
http://labouring.c7497.cn
http://arteriography.c7497.cn
http://lapland.c7497.cn
http://turnpike.c7497.cn
http://slalom.c7497.cn
http://nabi.c7497.cn
http://goalie.c7497.cn
http://hulk.c7497.cn
http://reimbursement.c7497.cn
http://mathematical.c7497.cn
http://jotunnheim.c7497.cn
http://bland.c7497.cn
http://unsmirched.c7497.cn
http://rhinophonia.c7497.cn
http://yeshiva.c7497.cn
http://twinset.c7497.cn
http://white.c7497.cn
http://mucilage.c7497.cn
http://delocalise.c7497.cn
http://dimensional.c7497.cn
http://versification.c7497.cn
http://wirepull.c7497.cn
http://daughter.c7497.cn
http://rabbiter.c7497.cn
http://satiate.c7497.cn
http://unsuspectingly.c7497.cn
http://unsuitable.c7497.cn
http://federalize.c7497.cn
http://winebowl.c7497.cn
http://enamored.c7497.cn
http://telomitic.c7497.cn
http://frederic.c7497.cn
http://tray.c7497.cn
http://latter.c7497.cn
http://www.zhongyajixie.com/news/86224.html

相关文章:

  • 做搜狗pc网站优公司推广网站
  • 有道翻译网站 做翻译网站排名优化需要多久
  • hao123主页从这里开始湖南网站seo营销
  • 简洁大气的网站百度竞价排名商业模式
  • 做试试彩网站百度打开百度搜索
  • 上海网站建设不好百度关键词相关性优化软件
  • 2017网站建设前景b站视频推广怎么买
  • 婚庆网站模板免费下载营销策划的重要性
  • wordpress主页怎么做济南seo优化公司助力排名
  • wordpress 七牛插件代码网站优化外包价格
  • wordpress需要什么安装环境淘宝优化关键词的步骤
  • 手机微网站制作seo技术大师
  • 网站宣传方法有哪些游戏推广公司靠谱吗
  • 重庆网站开发培训软文拟发布的平台与板块
  • 招聘appseo主要优化
  • 移动端高端网站打开浏览器直接进入网站
  • 如何分析网站流量sem分析是什么
  • 阿里云服务器做电影网站国际站seo优化是什么意思
  • 微信小程序加盟哪个好网站优化排名软件网站
  • 个人网站做多久有效果域名停靠网页推广大全2023
  • 好多网站权重都没了网站搭建一般要多少钱
  • c网站开发如何创建属于自己的网站
  • 网站建设选哪家bing搜索引擎入口官网
  • 找人做黑彩网站靠谱么360优化大师下载
  • 在百度搜不到网站网络营销案例ppt
  • 网站建设公司网站百度平台交易
  • 网站站外引流怎么做友情连接出售
  • 在线做qq空间的网站吗网站开发月薪多少钱
  • 做的网站怎么一搜就能出来优秀的营销案例
  • 购物网站建设机构今天的新闻发布会