当前位置: 代码迷 >> 综合 >> vue的视频流The “flash“ tech is undefined tech
  详细解决方案

vue的视频流The “flash“ tech is undefined tech

热度:79   发布时间:2023-12-23 15:22:55.0

出现这个错 其他人说的乱七八糟

有说:试试删掉node_modules。 nmp 安装 ,不要用cnpm。
但是自己试并不好用

在这里插入图片描述
需要看下你package.json里面

把video卸载 和vue-video-player 也卸载之后 ,只安装vue-video-player就可以了

npm uninstall video.js    

参考下图
在这里插入图片描述
但是我自己试了之后 并不好用 所以就把video.js 卸载了 就可以了
在这里插入倒萨阿斯顿描述

<template><section class="video-box"><videoPlayer ref="videoPlayer":options="videoOptions"class="vjs-custom-skin videoPlayer":playsinline="true" /></section>
</template>
<script>
import 'video.js/dist/video-js.css'
import 'vue-video-player/src/custom-theme.css'
import {
     videoPlayer } from 'vue-video-player'
import 'videojs-flash'export default {
    components: {
    videoPlayer,},data() {
    return {
    videoSrc: '',// 视频播放videoOptions: {
    playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度autoplay: false, //如果true,浏览器准备好时开始回放。muted: false, // 默认情况下将会消除任何音频。loop: false, // 导致视频一结束就重新开始。preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)language: 'zh-CN',aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")techOrder: ['flash', 'html5'], // 兼容顺序sources: [{
    // 流配置,数组形式,会根据兼容顺序自动切换type: 'rtmp/hls',src: 'rtmp://mobliestream.c3tv.com:554/live/goodtv.sdp', //拉流url// src:'rtmp://mobliestream.c3tv.com:554/live/goodtv.sdp'},],poster: '', //你的封面地址// width: document.documentElement.clientWidth,notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。controlBar: {
    timeDivider: true,durationDisplay: true,remainingTimeDisplay: false,fullscreenToggle: true, //全屏按钮},},}},
}
</script>
<style scoped>
.video-box {
    width: 100%;padding: 0px;
}
</style>
  相关解决方案