Skip to content

Commit

Permalink
Fix: [Client][Player/PlayerController] 低遅延モードオンでの再生バッファを 0.9 秒に変更
Browse files Browse the repository at this point in the history
どうしてもブラックアウトなど単色画面になるとエンコーダーの出力が一瞬詰まって再生も詰まってしまうため、もう少し余裕を持たせる
  • Loading branch information
tsukumijima committed Aug 23, 2024
1 parent 88014e4 commit 99c8f50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/services/player/PlayerController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ import Utils, { dayjs, PlayerUtils } from '@/utils';
class PlayerController {

// ライブ視聴: 低遅延モードオンでの再生バッファ (秒単位)
// 0.8 秒程度余裕を持たせる
private static readonly LIVE_PLAYBACK_BUFFER_SECONDS_LOW_LATENCY = 0.8;
// 0.9 秒程度余裕を持たせる
private static readonly LIVE_PLAYBACK_BUFFER_SECONDS_LOW_LATENCY = 0.9;

// ライブ視聴: 低遅延モードオフでの再生バッファ (秒単位)
// 4 秒程度の遅延を許容する
Expand Down

0 comments on commit 99c8f50

Please sign in to comment.