vue-video-player 실시 간 영상 재생 방식 실현(모니터링 장치-rtmp 흐름)
1.vue 프로젝트 설치 vue-video-player
npm install vue-video-player --save
2.비디오 재생 구성 요 소 를 작성 합 니 다.(완전한 구성 요 소 를 올 리 면 부모 구성 요소 가 호출 될 때 videoSrc 와 playerOptions.sources[0].src 에 값 을 부여 하면 재생 할 수 있 습 니 다.구체 적 인 동작 은 설명 이 있 습 니 다)
주:style 스타일 부분 은 lang=scss 를 사 용 했 습 니 다.만약 자신의 프로젝트 가 사용 되 지 않 았 다 면 그 는 자신의 방식 으로 스타일 부분 을 바 꾸 어 오 류 를 피하 십시오.
<template>
<div class="video-js">
<div v-if="videoSrc===''" class="no-video">
</div>
<video-player v-else class="video-player vjs-custom-skin"
ref="videoPlayer"
:playsinline="true"
:options="playerOptions">
</video-player>
</div>
</template>
<script>
import videojs from 'video.js'
import 'video.js/dist/video-js.css'
import 'vue-video-player/src/custom-theme.css'
import {videoPlayer} from 'vue-video-player'
import 'videojs-flash'
import SWF_URL from 'videojs-swf/dist/video-js.swf'
videojs.options.flash.swf = SWF_URL // flash ,Video.js html5 flash
export default {
name: 'videojs',
components: {
videoPlayer
},
data () {
return {
videoSrc: '',
playerOptions: {
live: true,
autoplay: true, // true,
muted: false, //
loop: false, //
preload: 'auto', // <video> 。auto , ( )
aspectRatio: '16:9', // , 。 - ( "16:9" "4:3")
fluid: true, // true ,Video.js player 。 , 。
controlBar: {
timeDivider: false,
durationDisplay: false,
remainingTimeDisplay: false,
currentTimeDisplay: false, //
volumeControl: false, //
playToggle: false, //
progressControl: false, //
fullscreenToggle: true //
},
techOrder: ['flash'], //
flash: {
hls: {
withCredentials: false
},
swf: SWF_URL
},
sources: [{
type: 'rtmp/flv',
src: '' // -
}],
notSupportedMessage: ' , ' // Video.js 。
}
}
}
}
</script>
<style scoped lang="less">
.video-js{
width:100%;
height:100%;
.no-video{
display:flex;
height:100%;
font-size:14px;
text-align:center;
justify-content: center;
align-items:center;
}
}
</style>
3.부모 구성 요 소 는 영상 재생 구성 요 소 를 호출 하고'영상 재생'을 누 르 면 구성 요소 의 영상 스 트림 주 소 를 바 꾸 어 실시 간 영상 을 재생 합 니 다.
<template>
<div class="about">
<video-player ref="playerObj"></video-player>
<a @click="playVideo"> </a>
</div>
</template>
<script>
import VideoPlayer from './../../components/VideoPlayer'
export default {
name: 'about',
components: {
VideoPlayer
},
data() {
return {}
},
methods: {
playVideo() {
this.$refs['playerObj'].videoSrc = 'rtmp://xxxxxxxx'
this.$refs['playerObj'].playerOptions.sources[0].src = 'rtmp://xxxxxxxx'
}
}
}
</script>
4.vue.config.js 파일 은 다음 과 같 습 니 다.chainwebpack 설정 을 추가 해 야 합 니 다.
// vue.config.js
const path = require('path')
const webpack = require('webpack')
module.exports = {
baseUrl: process.env.NODE_ENV === 'production' ? '/bcmp-web/' : '/',
outputDir: process.env.NODE_ENV === 'production' ? 'bcmp-web' : 'dist',
lintOnSave: true,
productionSourceMap: false,
devServer: {
open: true,
host: '0.0.0.0',
port: 9005,
https: false,
hotOnly: false,
proxy: null
},
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
jQuery: 'jquery',
$: 'jquery',
'windows.jQuery': 'jquery'
})
]
},
chainWebpack: config => {
config.module
.rule('swf')
.test(/\.swf$/)
.use('url-loader')
.loader('url-loader')
.options({
limit: 10000
})
},
pluginOptions: {
'style-resources-loader': {
preProcessor: 'scss',
patterns: [
path.resolve(__dirname, './src/assets/baseStyle/var.scss'),
path.resolve(__dirname, './src/assets/baseStyle/mixin.scss')
]
}
}
}
현재 vue-video-player 버 전 5.0.2,테스트 사용 가능보충 지식:vue 프로젝트 접속 영상 모니터링 시리즈---플레이어 선택
스마트 도시 가 신속히 발전 하 는 오늘날 에 영상 감시 가 웹 플랫폼 에 접속 하 는 수 요 는 불가 하거나 부족 하거나 유행 이 된 것 같다.블 로 거들 은 자신 이 영상 감시 프로그램 을 개발 한 경험 을 기록 하고 일련의 글 로 정리 하려 고 한다.
전단 이 신속히 발전 하 는 오늘날 h5 의 등장 으로 인해 웹 플랫폼 에서 플러그 인 없 는 재생 을 실현 하 는 것 이 가능 한 것 같 지만 video 는 RTMP 나 RTSP 프로 토 콜 의 영상 흐름 에 대해 아무것도 할 수 없습니다.여기 서 재생 기 를 추천 합 니 다.LivePlayer,이것 은 영상 회사 가 포장 한 재생 기 입 니 다.무료 로 사용 할 수 있 습 니 다설명 문서
(가 져 온 재생 주 소 는 백 엔 드 설정 서비스 후 인터페이스 로 가 져 온 것 입 니 다)
사용:
첫 번 째 단계:설치:
npm install @liveqing/liveplayer
npm i -D copy-webpack-plugin
두 번 째 단계:도입:
웹 pack.dev.conf.js 에 플러그 인 을 도입 하고 설명 합 니 다:
const CopyWebpackPlugin = require('copy-webpack-plugin')
이 폴 더 아래 plugins 에서 플러그 인 new CopyWebpackPlugin 을 설명 합 니 다.
plugins: [
new CopyWebpackPlugin([
{ from: 'node_modules/@liveqing/liveplayer/dist/component/crossdomain.xml'},
{ from: 'node_modules/@liveqing/liveplayer/dist/component/liveplayer.swf'},
{ from: 'node_modules/@liveqing/liveplayer/dist/component/liveplayer-lib.min.js', to: 'js/'}
])]
세 번 째 단계:index.html 에 도입:
경로 의 js 는 위 에서 출력 한 js 주소 입 니 다.
네 번 째 단계:
사용 구성 요소 도입:
<template>
<div class="video">
<el-button type="primary" size="mini" @click="getDeviceChanleData" icon="el-icon-search"> </el-button>
<el-button type="primary" size="mini" @click="doStart" icon="el-icon-search"> </el-button>
<live-player :videoUrl="videoUrl" fluent autoplay live stretch></live-player>
</div>
</template>
<script>
import LivePlayer from '@liveqing/liveplayer'
import {
getDeviceList,
getDeviceChanleList,
start
} from './apis/index.js'
export default {
data() {
return {
id: '',
videoUrl: ''
}
},
components: {
LivePlayer
},
created() {
this.getDeviceData()
},
methods: {
//
getDeviceData() {
const para = {
start: 1,
limit: 10,
online: true,
q: ''
}
var par = {
params: para
}
getDeviceList(par).then(res => {
console.log(' ', res)
this.id = res.DeviceList[0].ID
})
},
//
getDeviceChanleData() {
const para = {
serial: this.id
}
var par = {
params: para
}
getDeviceChanleList(par).then(res => {
console.log(' ', res)
})
},
//
doStart() {
const para = {
serial: this.id
}
var par = {
params: para
}
start(par).then(res => {
console.log(' ', res)
this.videoUrl = res.RTMP
// this.videoUrl = res.HLS
// this.videoUrl = res.FLV
})
}
}
}
</script>
<style scoped>
.video{
position: relative;
width:500px;
height:300px;
}
img{
width:100%;
height:100%;
}
.time1{
position: absolute;
top:13px;
right:150px;
}
</style>
효과 그림:이상 의 vue-video-player 가 실시 간 영상 재생 방식(감시 장치-rtmp 흐름)을 실현 하 는 것 은 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
vue 는 video 플러그 인 vue-video-player 의 예제 를 사용 합 니 다.플러그 인 설치 2.플러그 인 설정 main.js 에서 전역 설정 플러그 인 플러그 인 사용 vue 구성 요소 의 프로그램 은 다음 과 같 습 니 다. 결과 결 과 는 그림 과 같다. vue-video-player ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.