fix: 更新视频源URL和封面图地址
修复视频和封面图的中文文件名编码问题,将URL编码的中文字符替换为实际中文字符以确保正确加载
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -220,7 +220,7 @@ const router = useRouter() | ... | @@ -220,7 +220,7 @@ const router = useRouter() |
| 220 | useTitle('西园戒幢律寺三坛大戒法会'); | 220 | useTitle('西园戒幢律寺三坛大戒法会'); |
| 221 | 221 | ||
| 222 | // TODO: 视频配置 | 222 | // TODO: 视频配置 |
| 223 | -const videoUrl = ref('https://cdn.ipadbiz.cn/stdj/video/workflow.mp4') | 223 | +const videoUrl = ref('https://cdn.ipadbiz.cn/stdj/video/%E7%BA%AA%E5%BD%95%E7%89%87.mp4') |
| 224 | 224 | ||
| 225 | const videoOptions = ref({ | 225 | const videoOptions = ref({ |
| 226 | fluid: true, | 226 | fluid: true, |
| ... | @@ -228,7 +228,7 @@ const videoOptions = ref({ | ... | @@ -228,7 +228,7 @@ const videoOptions = ref({ |
| 228 | aspectRatio: '16:9', | 228 | aspectRatio: '16:9', |
| 229 | controls: true, | 229 | controls: true, |
| 230 | preload: 'metadata', | 230 | preload: 'metadata', |
| 231 | - poster: 'https://cdn.ipadbiz.cn/stdj%2Fvideo%2Fworkflow01.jpg', | 231 | + poster: 'https://cdn.ipadbiz.cn/stdj/video/%E7%BA%AA%E5%BD%95%E7%89%87-%E5%B0%81%E9%9D%A2.jpg', |
| 232 | playbackRates: [0.5, 1, 1.25, 1.5, 2], | 232 | playbackRates: [0.5, 1, 1.25, 1.5, 2], |
| 233 | }) | 233 | }) |
| 234 | 234 | ... | ... |
-
Please register or login to post a comment