Skip to content

Commit

Permalink
fix(video-encoder): use a usable bitrate for safari
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY committed Feb 12, 2024
1 parent 7deb33e commit 5309457
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"deepmerge": "4.3.1",
"dotenv": "16.4.1",
"dotenv": "16.4.2",
"eslint": "8.56.0",
"fuzzy": "0.1.3",
"husky": "9.0.10",
Expand All @@ -158,7 +158,7 @@
"sitemap": "7.1.1",
"tiny-async-pool": "2.1.0",
"ts-node": "10.9.2",
"tsx": "4.7.0",
"tsx": "4.7.1",
"typescript": "5.2.2",
"webpack-bundle-analyzer": "4.10.1",
"zod": "3.22.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class PlayableVideoEncoder {

container: 'webm' | 'mp4';
codec: string;
bitrate = 1_000_000_000; // 1Gbps
bitrate = 10_000_000; // 10Mbps max! (https://github.com/Vanilagy/mp4-muxer/issues/36)
alpha = true;

width: number;
Expand Down

0 comments on commit 5309457

Please sign in to comment.