| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <template>
- <div class="page-container">
- <div class="page-header">
- <span class="title">测试视频</span>
- </div>
- <!-- 配置区域 -->
- <div class="config-section">
- <el-form label-width="120px">
- <el-form-item label="选择测试源">
- <el-select v-model="sampleConfig.selected" style="width: 500px" placeholder="请选择测试视频">
- <el-option-group v-for="group in sampleVideoGroups" :key="group.label" :label="group.label">
- <el-option v-for="item in group.options" :key="item.url" :label="item.name" :value="item.url" />
- </el-option-group>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="playSample">播放测试视频</el-button>
- </el-form-item>
- </el-form>
- </div>
- <!-- 播放器区域 -->
- <div class="player-section">
- <div v-if="!currentSrc" class="player-placeholder">
- <el-icon :size="60" color="#ddd"><VideoPlay /></el-icon>
- <p>请选择测试视频并点击播放</p>
- </div>
- <VideoPlayer
- v-else
- ref="playerRef"
- player-type="hls"
- :src="currentSrc"
- :autoplay="playConfig.autoplay"
- :muted="playConfig.muted"
- :controls="true"
- @play="onPlay"
- @pause="onPause"
- @error="onError"
- @loadedmetadata="onLoaded"
- />
- </div>
- <!-- 播放控制 -->
- <div class="control-section">
- <el-space wrap>
- <el-button type="primary" @click="handlePlay">播放</el-button>
- <el-button @click="handlePause">暂停</el-button>
- <el-button type="danger" @click="handleStop">停止</el-button>
- <el-button @click="handleScreenshot">截图</el-button>
- <el-button @click="handleFullscreen">全屏</el-button>
- <el-divider direction="vertical" />
- <el-switch v-model="playConfig.muted" active-text="静音" inactive-text="有声" />
- <el-switch v-model="playConfig.autoplay" active-text="自动播放" inactive-text="手动" />
- </el-space>
- </div>
- <!-- 当前状态 -->
- <div class="status-section">
- <el-descriptions title="当前状态" :column="2" border>
- <el-descriptions-item label="当前视频">{{ currentVideoName || '-' }}</el-descriptions-item>
- <el-descriptions-item label="视频地址">
- <el-text truncated style="max-width: 600px">{{ currentSrc || '-' }}</el-text>
- </el-descriptions-item>
- </el-descriptions>
- </div>
- <!-- 日志区域 -->
- <div class="log-section">
- <div class="log-header">
- <h4>事件日志</h4>
- <el-button size="small" @click="logs = []">清空</el-button>
- </div>
- <div class="log-content">
- <div v-for="(log, index) in logs" :key="index" class="log-item" :class="log.type">
- <span class="time">{{ log.time }}</span>
- <span class="message">{{ log.message }}</span>
- </div>
- <div v-if="logs.length === 0" class="log-empty">暂无日志</div>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, reactive, computed } from 'vue'
- import { ElMessage } from 'element-plus'
- import { VideoPlay } from '@element-plus/icons-vue'
- import VideoPlayer from '@/components/VideoPlayer.vue'
- const playerRef = ref<InstanceType<typeof VideoPlayer>>()
- // 测试视频配置
- const sampleConfig = reactive({
- selected: ''
- })
- // 播放配置
- const playConfig = reactive({
- autoplay: false,
- muted: true
- })
- // 当前播放状态
- const currentSrc = ref('')
- // 测试视频列表(分组)
- const sampleVideoGroups = [
- {
- label: '我的直播流 (Cloudflare Stream)',
- options: [
- {
- name: '我的摄像头直播',
- url: 'https://customer-pj89kn2ke2tcuh19.cloudflarestream.com/3c1ae1949e76f200feef94b8f7d093ca/manifest/video.m3u8'
- }
- ]
- },
- {
- label: '公共测试源',
- options: [
- { name: 'Big Buck Bunny (HLS)', url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8' },
- { name: 'Sintel (HLS)', url: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8' },
- {
- name: 'Tears of Steel (HLS)',
- url: 'https://demo.unified-streaming.com/k8s/features/stable/video/tears-of-steel/tears-of-steel.ism/.m3u8'
- },
- {
- name: 'Apple HLS 测试流',
- url: 'https://devstreaming-cdn.apple.com/videos/streaming/examples/img_bipbop_adv_example_fmp4/master.m3u8'
- }
- ]
- }
- ]
- // 所有视频列表(用于查找名称)
- const allVideos = sampleVideoGroups.flatMap((group) => group.options)
- // 当前视频名称
- const currentVideoName = computed(() => {
- const video = allVideos.find((v) => v.url === currentSrc.value)
- return video?.name || ''
- })
- // 日志
- interface LogItem {
- time: string
- type: 'info' | 'success' | 'error'
- message: string
- }
- const logs = ref<LogItem[]>([])
- function addLog(message: string, type: LogItem['type'] = 'info') {
- const time = new Date().toLocaleTimeString()
- logs.value.unshift({ time, type, message })
- if (logs.value.length > 100) {
- logs.value.pop()
- }
- }
- // 播放测试视频
- function playSample() {
- if (!sampleConfig.selected) {
- ElMessage.warning('请选择测试视频')
- return
- }
- currentSrc.value = sampleConfig.selected
- const video = allVideos.find((v) => v.url === sampleConfig.selected)
- addLog(`播放测试视频: ${video?.name}`, 'success')
- }
- // 播放控制
- function handlePlay() {
- playerRef.value?.play()
- addLog('播放', 'info')
- }
- function handlePause() {
- playerRef.value?.pause()
- addLog('暂停', 'info')
- }
- function handleStop() {
- playerRef.value?.stop()
- addLog('停止', 'info')
- }
- function handleScreenshot() {
- playerRef.value?.screenshot()
- addLog('截图', 'info')
- }
- function handleFullscreen() {
- playerRef.value?.fullscreen()
- addLog('全屏', 'info')
- }
- // 事件处理
- function onPlay() {
- addLog('视频开始播放', 'success')
- }
- function onPause() {
- addLog('视频已暂停', 'info')
- }
- function onLoaded() {
- addLog('视频加载完成', 'success')
- }
- function onError(error: any) {
- addLog(`播放错误: ${JSON.stringify(error)}`, 'error')
- }
- </script>
- <style lang="scss" scoped>
- .page-container {
- padding: 1rem;
- min-height: 100vh;
- background-color: var(--bg-page);
- }
- .page-header {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- padding: 15px 20px;
- background-color: var(--bg-container);
- border-radius: var(--radius-base);
- color: var(--text-primary);
- .title {
- font-size: 18px;
- font-weight: 600;
- }
- }
- .config-section {
- margin-bottom: 20px;
- padding: 20px;
- background-color: var(--bg-container);
- border-radius: var(--radius-base);
- }
- .player-section {
- height: 500px;
- margin-bottom: 20px;
- border-radius: var(--radius-base);
- overflow: hidden;
- background-color: #000;
- .player-placeholder {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: var(--text-secondary);
- p {
- margin-top: 15px;
- font-size: 14px;
- }
- }
- }
- .control-section {
- padding: 15px 20px;
- background-color: var(--bg-container);
- border-radius: var(--radius-base);
- margin-bottom: 20px;
- }
- .status-section {
- margin-bottom: 20px;
- padding: 15px 20px;
- background-color: var(--bg-container);
- border-radius: var(--radius-base);
- }
- .log-section {
- padding: 15px 20px;
- background-color: var(--bg-container);
- border-radius: var(--radius-base);
- .log-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- h4 {
- font-size: 14px;
- margin: 0;
- color: var(--text-primary);
- }
- }
- .log-content {
- max-height: 200px;
- overflow-y: auto;
- background-color: var(--bg-hover);
- border-radius: var(--radius-sm);
- padding: 10px;
- }
- .log-item {
- font-size: 12px;
- padding: 4px 0;
- border-bottom: 1px solid var(--border-color-light);
- color: var(--text-regular);
- &:last-child {
- border-bottom: none;
- }
- .time {
- color: var(--text-secondary);
- margin-right: 10px;
- }
- &.success .message {
- color: var(--color-success);
- }
- &.error .message {
- color: var(--color-danger);
- }
- }
- .log-empty {
- text-align: center;
- color: var(--text-secondary);
- font-size: 12px;
- padding: 20px 0;
- }
- }
- </style>
|