Skip to content

Commit

Permalink
Temporary remove hld-lq & audio
Browse files Browse the repository at this point in the history
  • Loading branch information
nzws committed May 15, 2024
1 parent 8fe5555 commit 99b0473
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions apps/push-serverless/src/services/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ export class Action {

setTimeout(() => {
void encoder.encodeToHighQualityHls();
void encoder.encodeToLowQualityHls();
void encoder.encodeToAudio();
// fixme: パフォーマンス足りない
// void encoder.encodeToLowQualityHls();
// void encoder.encodeToAudio();

// this.startRecording(liveId);
}, 500);
Expand Down
4 changes: 3 additions & 1 deletion apps/web/organisms/live/video/controller.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ const livePlayTypes: { id: LivePlayType; badge?: string }[] = [
{
id: LivePlayType.HlsHq,
badge: 'HLS'
},
}
/* fixme: パフォーマンス足りない
{
id: LivePlayType.HlsLq,
badge: 'HLS'
Expand All @@ -312,6 +313,7 @@ const livePlayTypes: { id: LivePlayType; badge?: string }[] = [
id: LivePlayType.Audio,
badge: 'HLS'
}
*/
];

const videoPlayTypes: { id: VideoPlayType; badge?: string }[] = [
Expand Down

0 comments on commit 99b0473

Please sign in to comment.