上海建筑 公司网站,网站建设验收程序,济南网站设计公司,上海企业注销一窗通Demo介绍 一个简单的视频播放器应用#xff0c;其中包含了视频列表和一个视频播放区域。用户可以通过点击视频列表中的项来选择并播放相应的视频#xff0c;播放器会自动播放每个视频并在播放完毕后切换到下一个视频。本项目旨在通过自动化脚本和动态网页渲染#xff0c;帮助…Demo介绍 一个简单的视频播放器应用其中包含了视频列表和一个视频播放区域。用户可以通过点击视频列表中的项来选择并播放相应的视频播放器会自动播放每个视频并在播放完毕后切换到下一个视频。本项目旨在通过自动化脚本和动态网页渲染帮助用户快速生成并展示本地视频资源如教学视频。使用批处理脚本从指定文件夹中读取所有视频文件的信息并利用JavaScript在HTML页面上动态渲染视频列表用户可以方便地浏览、播放这些视频。 批处理脚本生成视频列表 通过批处理脚本自动扫描本地指定文件夹中的所有视频文件获取视频文件的名称和路径然后将每个视频的文件路径和标题生成一个 JavaScript 数组并将该数组输出到一个 .txt 文件中 echo off关闭命令行窗口的回显即不显示执行的命令setlocal enabledelayedexpansion启用延迟变量扩展使得在同一代码块中可以动态更新和使用变量的值特别是使用!来访问变量的实时值set folderPathE:\Videos定义了视频文件所在的文件夹路径。这个路径包含了所有的视频文件set outputPath%cd%\视频列表.txt定义了输出文件的路径%cd%表示当前目录所以视频列表会被保存在当前目录下的视频列表.txt 文件中set fileExtensionMP4定义了视频文件的扩展名这里设置为 MP4即只会处理 .MP4 文件echo var videos [ %outputPath%将 var videos [ 写入到输出文件 视频列表.txt 中开始构建 JavaScript 数组的定义 for %%f in (%folderPath%\*.%fileExtension%) do (遍历指定文件夹%folderPath%中所有扩展名为 .MP4 的文件%%f 循环变量表示每个文件set fileName%%~nxf提取文件的完整文件名包括扩展名并赋值给 fileName 变量 %%~n获取文件名%%~x获取文件扩展名%%~nxf获取完整的文件名包含扩展名 set fileTitle%%~nf提取文件名不包含扩展名并赋值给 fileTitle 变量%%~nf%%~n获取文件名不包含扩展名 echo off
setlocal enabledelayedexpansionset folderPathE:\Videos
set outputPath%cd%\视频列表.txt
set fileExtensionMP4echo var videos [ %outputPath%for %%f in (%folderPath%\*.%fileExtension%) do (set fileName%%~nxfset fileTitle%%~nfecho { %outputPath%echo src: !fileName!, %outputPath%echo title: !fileTitle! %outputPath%echo }, %outputPath%
)echo ]; %outputPath% echo { %outputPath%向输出文件添加一个新的对象 {开始写入一个视频对象echo src: !fileName!, %outputPath%将视频文件的完整名称包括扩展名写入 src 字段echo title: !fileTitle! %outputPath%将视频文件的文件名不包括扩展名写入 title 字段echo }, %outputPath%结束当前对象并添加一个逗号准备写入下一个视频文件的信息 最终输出的 .txt 文件 完整代码
!DOCTYPE html
html langenheadmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestylebody {margin: 0;}.one {width: 100%;height: 100vh;display: flex;overflow: hidden;}.one #videoList {width: 300px;height: 100%;max-height: 100vh;margin: 0px;color: #fff;background: rgb(123, 202, 252);overflow: scroll;overflow-x: hidden;padding-left: 0;border: 8px groove rgb(123, 202, 252);}.one #videoList::-webkit-scrollbar {width: 0;height: 0;}.one #videoList li {cursor: pointer;line-height: 30px;border-bottom: 1px solid #fff;padding: 10px;list-style: none;margin: 0px;}.one #videoList li:hover {font-weight: bold;}.one .selected {background: #fff;color: rgb(123, 202, 252);font-weight: bold;}.one #myVideo {border: 8px groove rgb(123, 202, 252);}/style
/headbodydiv classoneul idvideoList/ulvideo idmyVideo width600 height400 controls/video/divscript// 获取视频列表和视频播放器元素var videoList document.getElementById(videoList);var myVideo document.getElementById(myVideo);// 批处理脚本获取到的视频列表数据var videos [];// 动态生成视频列表videos.forEach(function (video, index) {var li document.createElement(li); // 创建列表项li.textContent video.title; // 设置列表项的文本内容为视频标题li.setAttribute(data-src, video.src); // 设置自定义属性存储视频源li.addEventListener(click, function () { // 为每个列表项添加点击事件loadVideo(video.src, li); // 加载选中的视频});videoList.appendChild(li); // 将列表项添加到视频列表中});// 加载视频并更新选中状态function loadVideo(src, listItem) {myVideo.src src; // 设置视频播放器的源为选中的视频myVideo.play(); // 播放视频// 清除之前的选中状态var selected document.querySelector(.selected);if (selected) {selected.classList.remove(selected);}// 添加选中样式到当前点击的列表项listItem.classList.add(selected);}// 初始化页面默认加载第一个视频if (videos.length 0) {loadVideo(videos[0].src, videoList.children[0]); // 默认加载第一个视频并设置选中}/script
/body/html
文章转载自: http://www.morning.sbqrm.cn.gov.cn.sbqrm.cn http://www.morning.sxwfx.cn.gov.cn.sxwfx.cn http://www.morning.ppqjh.cn.gov.cn.ppqjh.cn http://www.morning.mqtzd.cn.gov.cn.mqtzd.cn http://www.morning.rhsg.cn.gov.cn.rhsg.cn http://www.morning.jqbpn.cn.gov.cn.jqbpn.cn http://www.morning.hlkxb.cn.gov.cn.hlkxb.cn http://www.morning.hhkzl.cn.gov.cn.hhkzl.cn http://www.morning.youngbase.cn.gov.cn.youngbase.cn http://www.morning.sqlh.cn.gov.cn.sqlh.cn http://www.morning.gynls.cn.gov.cn.gynls.cn http://www.morning.rbmnq.cn.gov.cn.rbmnq.cn http://www.morning.lnmby.cn.gov.cn.lnmby.cn http://www.morning.gpnwq.cn.gov.cn.gpnwq.cn http://www.morning.paxkhqq.cn.gov.cn.paxkhqq.cn http://www.morning.gjssk.cn.gov.cn.gjssk.cn http://www.morning.bfgpn.cn.gov.cn.bfgpn.cn http://www.morning.mztyh.cn.gov.cn.mztyh.cn http://www.morning.nzcys.cn.gov.cn.nzcys.cn http://www.morning.tzpqc.cn.gov.cn.tzpqc.cn http://www.morning.tlrxp.cn.gov.cn.tlrxp.cn http://www.morning.phjyb.cn.gov.cn.phjyb.cn http://www.morning.yrhpg.cn.gov.cn.yrhpg.cn http://www.morning.qcygd.cn.gov.cn.qcygd.cn http://www.morning.bpmz.cn.gov.cn.bpmz.cn http://www.morning.ygztf.cn.gov.cn.ygztf.cn http://www.morning.spwm.cn.gov.cn.spwm.cn http://www.morning.pgcmz.cn.gov.cn.pgcmz.cn http://www.morning.plgbh.cn.gov.cn.plgbh.cn http://www.morning.qgbfx.cn.gov.cn.qgbfx.cn http://www.morning.bpmtr.cn.gov.cn.bpmtr.cn http://www.morning.fhhry.cn.gov.cn.fhhry.cn http://www.morning.nwqyq.cn.gov.cn.nwqyq.cn http://www.morning.jlqn.cn.gov.cn.jlqn.cn http://www.morning.hkshy.cn.gov.cn.hkshy.cn http://www.morning.ypbdr.cn.gov.cn.ypbdr.cn http://www.morning.ccjhr.cn.gov.cn.ccjhr.cn http://www.morning.wwkft.cn.gov.cn.wwkft.cn http://www.morning.ghxkm.cn.gov.cn.ghxkm.cn http://www.morning.cwjxg.cn.gov.cn.cwjxg.cn http://www.morning.hclplus.com.gov.cn.hclplus.com http://www.morning.kqylg.cn.gov.cn.kqylg.cn http://www.morning.wqmpd.cn.gov.cn.wqmpd.cn http://www.morning.skmpj.cn.gov.cn.skmpj.cn http://www.morning.cnvlog.cn.gov.cn.cnvlog.cn http://www.morning.zwzlf.cn.gov.cn.zwzlf.cn http://www.morning.bpzw.cn.gov.cn.bpzw.cn http://www.morning.ynbyk.cn.gov.cn.ynbyk.cn http://www.morning.mrtdq.cn.gov.cn.mrtdq.cn http://www.morning.mrxqd.cn.gov.cn.mrxqd.cn http://www.morning.ggqcg.cn.gov.cn.ggqcg.cn http://www.morning.rqjfm.cn.gov.cn.rqjfm.cn http://www.morning.gmgyt.cn.gov.cn.gmgyt.cn http://www.morning.pwhjr.cn.gov.cn.pwhjr.cn http://www.morning.jxlnr.cn.gov.cn.jxlnr.cn http://www.morning.lthpr.cn.gov.cn.lthpr.cn http://www.morning.rzcmn.cn.gov.cn.rzcmn.cn http://www.morning.drwpn.cn.gov.cn.drwpn.cn http://www.morning.fynkt.cn.gov.cn.fynkt.cn http://www.morning.qmwzr.cn.gov.cn.qmwzr.cn http://www.morning.glbnc.cn.gov.cn.glbnc.cn http://www.morning.wtbzt.cn.gov.cn.wtbzt.cn http://www.morning.csnch.cn.gov.cn.csnch.cn http://www.morning.xqspn.cn.gov.cn.xqspn.cn http://www.morning.tslxr.cn.gov.cn.tslxr.cn http://www.morning.newfeiya.com.cn.gov.cn.newfeiya.com.cn http://www.morning.jrkzk.cn.gov.cn.jrkzk.cn http://www.morning.kjksn.cn.gov.cn.kjksn.cn http://www.morning.mzhgf.cn.gov.cn.mzhgf.cn http://www.morning.mqghs.cn.gov.cn.mqghs.cn http://www.morning.kzcfr.cn.gov.cn.kzcfr.cn http://www.morning.wktbz.cn.gov.cn.wktbz.cn http://www.morning.qkdcb.cn.gov.cn.qkdcb.cn http://www.morning.kmwsz.cn.gov.cn.kmwsz.cn http://www.morning.coatingonline.com.cn.gov.cn.coatingonline.com.cn http://www.morning.mqwnz.cn.gov.cn.mqwnz.cn http://www.morning.xfncq.cn.gov.cn.xfncq.cn http://www.morning.mbfkt.cn.gov.cn.mbfkt.cn http://www.morning.ylqb8.cn.gov.cn.ylqb8.cn http://www.morning.dmkhd.cn.gov.cn.dmkhd.cn