Yin的笔记本

vuePress-theme-reco Howard Yin    2021 - 2025
Yin的笔记本 Yin的笔记本

Choose mode

  • dark
  • auto
  • light
Home
Category
  • CNCF
  • Docker
  • namespaces
  • Kubernetes
  • Kubernetes对象
  • Linux
  • MyIdeas
  • Revolution
  • WebRTC
  • 云计算
  • 人工智能
  • 分布式
  • 图像处理
  • 图形学
  • 微服务
  • 数学
  • OJ笔记
  • 博弈论
  • 形式语言与自动机
  • 数据库
  • 服务器运维
  • 编程语言
  • C
  • Git
  • Go
  • Java
  • JavaScript
  • Python
  • Nvidia
  • Shell
  • Tex
  • Rust
  • Vue
  • 视频编解码
  • 计算机网络
  • SDN
  • 论文笔记
  • 讨论
  • 边缘计算
  • 量子信息技术
Tag
TimeLine
About
查看源码
author-avatar

Howard Yin

304

Article

153

Tag

Home
Category
  • CNCF
  • Docker
  • namespaces
  • Kubernetes
  • Kubernetes对象
  • Linux
  • MyIdeas
  • Revolution
  • WebRTC
  • 云计算
  • 人工智能
  • 分布式
  • 图像处理
  • 图形学
  • 微服务
  • 数学
  • OJ笔记
  • 博弈论
  • 形式语言与自动机
  • 数据库
  • 服务器运维
  • 编程语言
  • C
  • Git
  • Go
  • Java
  • JavaScript
  • Python
  • Nvidia
  • Shell
  • Tex
  • Rust
  • Vue
  • 视频编解码
  • 计算机网络
  • SDN
  • 论文笔记
  • 讨论
  • 边缘计算
  • 量子信息技术
Tag
TimeLine
About
查看源码
  • (旧)系统实现

    • 前提条件
      • 延迟

      (旧)系统实现

      vuePress-theme-reco Howard Yin    2021 - 2025

      (旧)系统实现


      Howard Yin 2023-09-13 03:40:05 WebRTCIdea

      # 前提条件

      • [x] 编码时在指定位置插入关键帧
      • [ ] 传输时抽取关键帧压缩数据包
      • [ ] 单独解码关键帧数据包

      # 延迟

      The followings are the key factors when you have to calculate total latency for a WebRTC call:

      • Network latency. Depends on network link quality and distance (it should be below 50 milliseconds within a country or above 100 msec between continents)
      • Network bandwidth and QoS: packet drop or insufficient bandwidth might trigger more latency
      • Audio latency: depends on OS, audio hardware and driver (it is below 20 msec on iOS and Windows, but on Android and Linux it can be more)
      • Jitter buffer: every VoIP software maintains a varying length of jitter buffer to compensate network delays/spikes (usually between 0 and 100 msec)
      • AEC and FEC: acoustic echo cancellation and forward error correction might introduce a one packet delay (usually 20 msec)
      • Other factors: there can be also other factors which has an impact on the overall latency, such as a busy CPU and software implementation details
      • As per my experience, currently available WebRTC stacks (such as Chrome) are performing very well with minimal latency.

      The total latency should be below 300 milliseconds if you are calling somebody within the same country or up to 600 msec for long distance calls to abroad. Above 600 msec you will perceive as uncomfortable.

      帮助我们改善此页面!
      创建于: 2023-09-13 03:40:58

      更新于: 2023-09-13 03:40:58