|
|
1.11.0版本之后,必须使用鉴权,建议使用1.9.7版本
视频使用H264版本,兼容更多设备,4K可以使用H265
头部引入
- <link rel="stylesheet" href="https://lf-unpkg.volccdn.com/obj/vcloudfe/sdk/@volcengine/veplayer/1.9.7/index.min.css">
- <script src="https://lf-unpkg.volccdn.com/obj/vcloudfe/sdk/@volcengine/veplayer/1.9.7/index.min.js"></script>
复制代码
页面
- <DIV id=mse></DIV>
- <SCRIPT>
- var playerSdk = new VePlayer({
- id: "mse",
- defaultDefinition: "sd",
- playList: [
- {
- url: "//v.029263.com/oUyaUzVLjJbsUCe8gIIxND6K3GkTk9Q4gXmAs5?auth_key=1766229491-49061256910a4768998c4a994dae7026-0-dcc8b8b77547ffa64bff06701437af8b",
- streamType: "mp4",
- definition: "ld",
- definitionTextKey: "LD",
- },
- {
- url: "//v.029263.com/oIXQmgKsvTjZz32mlEA6ULIdPtIXejU34hU5Bt?auth_key=1766229475-4fb4354ca48142679186578733b3921d-0-77254918ec560825aacc3e6408bade66",
- streamType: "mp4",
- definition: "sd",
- definitionTextKey: "SD",
- },
- {
- url: "//v.029263.com/oMzFmwtl3AmI5IeUhgLEtZrQYjUjTwK4L6B4s2?auth_key=1766229420-9d0d8af133e1401b8a274dc7e0eb2e70-0-d409093e50bfadae9b5587a8f32e0b0b",
- streamType: "mp4",
- definition: "hd",
- definitionTextKey: "HD",
- },
- {
- url: "//v.029263.com/%E8%91%97%E5%90%8D%E4%B9%A6%E6%B3%95%E5%AE%B6%E8%B4%BA%E6%94%BF%E6%B0%91.mp4?auth_key=1766229459-d5bc5ae02d384bf5a8a24f808e12e9aa-0-af750b567953809a4361f7e240dc1f4d",
- streamType: "mp4",
- definition: "ud",
- definitionTextKey: "UD",
- },
- ],
- languages: {
- zh: {
- LD: "流畅",
- SD: "标清",
- HD: "高清",
- UD: "超清",
- UHD: "蓝光",
- AUTO: "自动",
- },
- },
- width: 640,
- height: 360,
- autoplay: false,
- loop: false,
- vodLogOpts: {
- vtype: "MP4",
- tag: "普通视频",
- line_app_id: 348293,
- line_user_id: "veplayer_web_demo"
- }
- });
- </SCRIPT>
复制代码 |
|