宝贝企鹅 2023-11-18 18:42 采纳率: 50%
浏览 4

阿里云视频直播URL鉴权后,怎么播放

阿里云视频直播URL鉴权后,比如鉴权后的m3u8直播流URL有效期是10分钟,在web端使用播放器播放这个直播流,在到期前,如何无感切换新的直播流地址。
如果直接set新的播放流到播放器,播放器会刷新一下,并且因为直播流有延时,可能还会跟上一个流接不上,不能无缝对接,体验不好。

  • 写回答

1条回答 默认 最新

  • CSDN-Ada助手 CSDN-AI 官方账号 2023-11-19 04:49
    关注

    【以下回答由 GPT 生成】

    问题分析:

    目前直接将新的直播流地址设置给播放器会导致播放器刷新,并且由于直播流的延迟,可能会导致上一个流的播放中断,无法实现无缝切换,这会影响用户体验。我们可以通过预加载下一个直播流地址,并在合适的时机切换播放,来实现无缝切换的效果。

    解决方案:

    步骤1: 获取直播流地址列表

    首先,我们需要获取直播流地址列表,以备后续使用。可以通过阿里云视频直播的接口或者后台服务获取到这些直播流地址,并存储在一个数组中。

    const streamList = [
      'http://live-url1.m3u8',
      'http://live-url2.m3u8',
      'http://live-url3.m3u8',
      // ...
    ];
    

    步骤2: 创建video标签和播放器实例

    在页面上创建一个video标签作为播放器,并创建一个播放器实例。

    const video = document.createElement('video');
    video.id = 'player';
    document.body.appendChild(video);
    
    const player = new Aliplayer({
      id: 'player',
      // 设置其他播放器配置
    });
    

    步骤3: 预加载下一个直播流地址

    我们可以使用new AliplayerloadByUrl方法预加载下一个直播流地址,但是不播放。

    function preloadNextStream(index) {
      const nextIndex = (index + 1) % streamList.length; // 取余循环获取下一个流地址的索引
      const nextStream = streamList[nextIndex];
    
      player.loadByUrl(nextStream, false); // 第一个参数为直播流地址,第二个参数为是否自动播放
    }
    

    步骤4: 监听当前直播流播放进度

    我们可以通过监听当前直播流的播放进度,当播放进度达到某个阈值时,触发切换到下一个直播流地址。

    player.on('currentTime', function(e) {
      const currentTime = e.currentTime; // 获取当前播放进度
    
      // 设置合适的阈值,触发切换到下一个直播流地址
      if (currentTime > 8 * 60) {
        const currentIndex = streamList.findIndex(stream => stream === player.getCurrentUrl()); // 获取当前直播流地址的索引
        preloadNextStream(currentIndex);
      }
    });
    

    步骤5: 切换到下一个直播流地址

    当切换到下一个直播流地址时,我们可以使用switchUrl方法来实现切换。

    player.on('ended', function() {
      const currentIndex = streamList.findIndex(stream => stream === player.getCurrentUrl()); // 获取当前直播流地址的索引
      const nextIndex = (currentIndex + 1) % streamList.length; // 取余循环获取下一个流地址的索引
      const nextStream = streamList[nextIndex];
    
      player.switchUrl(nextStream);
    });
    

    完整代码示例:

    const streamList = [
      'http://live-url1.m3u8',
      'http://live-url2.m3u8',
      'http://live-url3.m3u8',
      // ...
    ];
    
    const video = document.createElement('video');
    video.id = 'player';
    document.body.appendChild(video);
    
    const player = new Aliplayer({
      id: 'player',
      autoplay: true,
      // 设置其他播放器配置
    });
    
    function preloadNextStream(index) {
      const nextIndex = (index + 1) % streamList.length; // 取余循环获取下一个流地址的索引
      const nextStream = streamList[nextIndex];
    
      player.loadByUrl(nextStream, false); // 第一个参数为直播流地址,第二个参数为是否自动播放
    }
    
    player.on('currentTime', function(e) {
      const currentTime = e.currentTime; // 获取当前播放进度
    
      // 设置合适的阈值,触发切换到下一个直播流地址
      if (currentTime > 8 * 60) {
        const currentIndex = streamList.findIndex(stream => stream === player.getCurrentUrl()); // 获取当前直播流地址的索引
        preloadNextStream(currentIndex);
      }
    });
    
    player.on('ended', function() {
      const currentIndex = streamList.findIndex(stream => stream === player.getCurrentUrl()); // 获取当前直播流地址的索引
      const nextIndex = (currentIndex + 1) % streamList.length; // 取余循环获取下一个流地址的索引
      const nextStream = streamList[nextIndex];
    
      player.switchUrl(nextStream);
    });
    

    注意事项:

    • 请确保在使用阿里云视频直播URL鉴权时,防止泄露URL密钥等敏感信息。
    • 请根据实际情况调整切换策略、流地址列表和阈值等参数,以保证最佳的用户体验。
    • 请确保播放器和直播流地址的兼容性,以提供稳定可靠的播放体验。

    如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^
    评论

报告相同问题?

问题事件

  • 创建了问题 11月18日

悬赏问题

  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)