| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 | <template>  <div>    <el-form-item label="">      <div class="upload_video" id="upload_video">        <el-upload          class="upload-demo"          ref="upload"          action="#"          :http-request="uploadVideoToTxPcdn"          accept=".mp4"          :limit="1"          :on-remove="handleRemove"          :on-change="handleChange"          :auto-upload="false"          :key="uploadKey"        >          <el-button slot="trigger" size="small" type="primary" >选取视频</el-button>          <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">点击上传</el-button>          <!-- 仅当showControl为true时显示视频库选取按钮 -->          <el-button v-if="showControl" style="margin-left: 10px;" size="small" type="success" @click="openVideoLibrary">视频库选取</el-button>          <!-- 线路一 -->          <div class="progress-container">            <span class="progress-label">线路一</span>            <el-progress              style="margin-top: 5px;"              class="progress"              :text-inside="true"              :stroke-width="18"              :percentage="txProgress"              status="success">            </el-progress>          </div>          <!-- 线路二 --><!--          <div class="progress-container">--><!--            <span class="progress-label">线路二</span>--><!--            <el-progress--><!--              style="margin-top: 5px;"--><!--              class="progress"--><!--              :text-inside="true"--><!--              :stroke-width="18"--><!--              :percentage="hwProgress"--><!--              status="success">--><!--            </el-progress>--><!--          </div>-->          <div slot="tip" class="el-upload__tip">只能上传mp4文件,且不超过500M</div>        </el-upload>      </div>    </el-form-item>    <el-form-item label="视频播放">      <video v-if="videoUrl" ref="myvideo" :src="videoUrl" id="video" width="100%" height="300px" controls></video>      <div v-if="fileName">视频文件名: {{ fileName }}</div>      <div v-if="fileKey">文件Key: {{ fileKey }}</div>      <div v-if="fileSize">文件大小(MB): {{ (fileSize / (1024 * 1024)).toFixed(2) }} MB</div>    </el-form-item>    <!-- 仅当showControl为true时显示播放线路选择器 --><!--    <el-form-item v-if="showControl" label="播放线路">--><!--      <el-radio-group v-model="localUploadType">--><!--        <el-radio :label="1" >线路一</el-radio>--><!--<!–        <el-radio :label="2" >线路二</el-radio>–>--><!--        <!–        <el-radio :label="3" >线路三</el-radio>–>--><!--      </el-radio-group>--><!--    </el-form-item>-->    <!-- 视频库选择对话框 -->    <el-dialog title="视频库选择" :visible.sync="libraryOpen" width="900px" append-to-body>      <!-- 搜索条件 -->      <el-form :inline="true" :model="libraryQueryParams" class="library-search">        <el-form-item label="素材名称">          <el-input            v-model="libraryQueryParams.remark"            placeholder="请输入素材名称"            clearable            size="small"            @keyup.enter.native="handleLibraryQuery"          />        </el-form-item>        <el-form-item>          <el-button type="primary" icon="el-icon-search" size="mini" @click="handleLibraryQuery">搜索</el-button>          <el-button icon="el-icon-refresh" size="mini" @click="resetLibraryQuery">重置</el-button>        </el-form-item>      </el-form>      <!-- 视频列表 -->      <el-table v-loading="libraryLoading" :data="libraryList" @row-click="handleLibrarySelect" highlight-current-row>        <el-table-column label="素材名称" align="center" prop="remark" /><!--        <el-table-column label="缩略图" align="center">--><!--          <template slot-scope="scope">--><!--            <video--><!--              :src="scope.row.videoUrl"--><!--              controls--><!--              controlsList="nodownload"--><!--              class="video-player"--><!--              @contextmenu.prevent--><!--            ></video>--><!--          </template>--><!--        </el-table-column>-->        <el-table-column label="视频时长" align="center">          <template slot-scope="scope">            <span>{{ formatDuration(scope.row.duration) }}</span>          </template>        </el-table-column>      </el-table>      <!-- 分页 -->      <pagination        v-show="libraryTotal>0"        :total="libraryTotal"        :page.sync="libraryQueryParams.pageNum"        :limit.sync="libraryQueryParams.pageSize"        @pagination="getList"      />      <div slot="footer" class="dialog-footer">        <el-button type="primary" @click="confirmVideoSelection">确 定</el-button>        <el-button @click="cancelVideoSelection">取 消</el-button>      </div>    </el-dialog>  </div></template><script>import { uploadObject } from "@/utils/cos.js";import Pagination from "@/components/Pagination";// import { listVideoResource } from '@/api/course/videoResource';import { listLiveVideo, getLiveVideo, delLiveVideo, addLiveVideo, updateLiveVideo, exportLiveVideo } from "@/api/live/liveVideo";export default {  components: {    Pagination  },  props: {    videoUrl: {      type: String,      default: "",    },    fileKey: {      type: String,      default: "",    },    fileSize: {      type: Number,      default: null,    },    fileName: {      type: String,      default: "",    },    line_1: {      type: String,      default: "",    },    line_2: {      type: String,      default: "",    },    line_3: {      type: String,      default: "",    },    thumbnail: {      type: String,      default: "",    },    uploadType: {      type: Number,      default: null,    },    type: {      type: Number,      default: null,    },    isPrivate: {      type: Number,      default: 0,    },    // 使用一个变量控制显示,默认为true显示所有控制项    showControl: {      type: Boolean,      default: true,    }  },  data() {    return {      videoName:'',      isHidden : false,      localUploadType: this.uploadType,      duration: 0,      fileId: "",      uploadTypeOptions: [        { dictLabel: "线路一", dictValue: 1 }, // 腾讯pcdn        { dictLabel: "线路二", dictValue: 2 }, // 华为云obs        // { dictLabel: "华为云VOD", dictValue: 4 },        // { dictLabel: "腾讯云VOD", dictValue: 5 },      ],      fileList: [],      txProgress: 0,      hwProgress: 0,      uploadLoading: false,      uploadKey: 0,      // 视频库选择相关数据      libraryOpen: false,      libraryLoading: false,      libraryTotal: 0,      libraryList: [],      selectedVideo: null,      libraryQueryParams: {        pageNum: 1,        pageSize: 10,        resourceName: null,        liveId: -1,        videoUrl: null,        videoType: -1,        sort: null,        remark: null,      },      liveQueryParams: {        pageNum: 1,        pageSize: 10,        liveId: -1,        videoUrl: null,        videoType: -1,        sort: null,        remark: null,      },    };  },  mounted() {    this.reset();  },  watch: {    uploadType(newType) {      this.localUploadType = newType;    },  },  methods: {    /** 查询直播视频列表 */    getList() {      this.libraryLoading = true;      listLiveVideo(this.libraryQueryParams).then(response => {        this.libraryList = response.rows;        this.libraryTotal = response.total;        this.libraryLoading = false;      });    },    // 打开视频库对话框    openVideoLibrary() {      this.libraryOpen = true;      this.selectedVideo = null;      this.getList();    },    handleChange(file, fileList) {      this.fileList = fileList;      this.getVideoDuration(file.raw);    },    getVideoDuration(file) {      const video = document.createElement("video");      video.preload = "metadata";      video.onloadedmetadata = () => {        window.URL.revokeObjectURL(video.src);        this.duration = parseInt(video.duration.toFixed(2));        console.log("视频时长=========>",this.duration);        this.$emit("video-duration", this.duration);        console.log("文件大小=====>",file.size);        this.$emit("update:fileSize", file.size);      };      video.src = URL.createObjectURL(file);    },    async submitUpload() {      if (this.fileList.length < 1) {        return this.$message.error("请先选取视频,再进行上传");      }      //同时上传个线路      await this.uploadVideoToTxPcdn();      this.$emit("update:fileName", this.fileList[0].name);    },    //获取第一帧封面    async getFirstThumbnail(){      const file = this.fileList[0].raw;      getThumbnail(file).then(response => {        console.log("获取到第一帧为封面======>",response.url)        this.$emit("update:thumbnail", response.url);      })    },    //更新华为线路进度条    // updateHwProgress(progress) {    //   this.hwProgress = progress;    // },    //更新腾讯线路进度条    updateTxProgress(progressData) {      this.txProgress = Math.round(progressData.percent * 100);    },    //上传腾讯云Pcdn    async uploadVideoToTxPcdn() {      try {        const file = this.fileList[0].raw;        const data = await uploadObject(file, this.updateTxProgress,this.type);        console.log("腾讯COS返回========>",data);        console.log("isPrivate=======>",this.isPrivate)        let line_1='' ;        if (this.isPrivate===0){          line_1 = `${process.env.VUE_APP_VIDEO_LINE_1}${data.urlPath}`;        }else {          line_1 = `${process.env.VUE_APP_VIDEO_LINE_1}${data.urlPath}`;        }        line_1 = line_1.replace(/\.mp4$/, '.m3u8');        let urlPathWithoutFirstSlash = data.urlPath.substring(1);        this.$emit("update:fileKey", urlPathWithoutFirstSlash);        console.log("文件key",urlPathWithoutFirstSlash);        console.log("组装URL========>",line_1);        this.$emit("update:videoUrl", line_1);        this.$emit("update:line_1", line_1);        this.$emit("change", line_1,line_1);        // this.$emit("update:line_2", line_2);        this.$message.success("线路一上传成功");      } catch (error) {        this.$message.error("线路一上传失败");      }    },    //上传华为云Obs    async uploadVideoToHwObs() {      try {        const file = this.fileList[0].raw;        const data = await uploadToOBS(file, this.updateHwProgress,this.type);        console.log("华为OBS返回========>",data);        let line_2='' ;        if (this.isPrivate===0){          line_2 = `${process.env.VUE_APP_VIDEO_LINE_2}/${data.urlPath}`;        }else {          line_2 = `${process.env.VUE_APP_VIDEO_LINE_2}/${data.urlPath}`;        }        // this.$emit("update:videoUrl", data);        this.$emit("update:line_2", line_2);        this.$message.success("线路二上传成功");      } catch (error) {        this.$message.error("线路二上传失败");      }    },    handleRemove(file, fileList) {      console.log(file, fileList.length);    },    reset() {      // 重置内部状态      this.txProgress = 0;      this.fileList = [];      this.$refs.upload.clearFiles();      this.uploadKey++;    },    /** 查询视频库列表 */    getLibraryList() {      this.libraryLoading = true;      // listVideoResource(this.libraryQueryParams).then(response => {      //   this.libraryList = response.rows;      //   this.libraryTotal = response.total;      //   this.libraryLoading = false;      // });    },    /** 搜索视频库按钮操作 */    handleLibraryQuery() {      this.libraryQueryParams.pageNum = 1;      this.getList();    },    /** 重置视频库查询按钮操作 */    resetLibraryQuery() {      this.libraryQueryParams = {        pageNum: 1,        pageSize: 10,        resourceName: null      };      this.handleLibraryQuery();    },    /** 视频库选择行点击 */    handleLibrarySelect(row) {      this.selectedVideo = row;    },    /** 格式化视频时长 */    formatDuration(seconds) {      if (!seconds) return '00:00';      const minutes = Math.floor(seconds / 60);      const remainingSeconds = seconds % 60;      return `${minutes.toString().padStart(2, '0')}:${remainingSeconds.toString().padStart(2, '0')}`;    },    /** 确认选择视频 */    confirmVideoSelection() {      if (!this.selectedVideo) {        this.$message.warning("请选择一个视频");        return;      }      // 更新组件内部数据      this.$emit("update:fileName", this.selectedVideo.fileName);      this.$emit("update:thumbnail", this.selectedVideo.thumbnail);      this.$emit("update:line_1", this.selectedVideo.lineOne);      this.$emit("update:fileSize", this.selectedVideo.fileSize);      this.$emit("update:fileKey", this.selectedVideo.fileKey);      this.$emit("update:uploadType", this.selectedVideo.uploadType);      this.$emit("video-duration", this.selectedVideo.duration);      // 设置预览URL      this.$emit("update:videoUrl", this.selectedVideo.videoUrl);      this.$emit("change", this.selectedVideo.videoUrl,this.selectedVideo.lineOne);      this.libraryOpen = false;    },    /** 取消视频选择 */    cancelVideoSelection() {      this.libraryOpen = false;      this.selectedVideo = null;    }  }};</script><style>.progress-container {  margin-bottom: 5px; /* 进度条之间的间距 */}.progress-label {  display: block;  font-weight: bold;  font-size: 13px;  color: #303331; /* 标签颜色,可以根据需要调整 */}/* 视频库选择对话框样式 */.library-search {  margin-bottom: 15px;}.el-table .el-table__row:hover {  cursor: pointer;}</style>
 |