feat: more bitrate options

This commit is contained in:
Fredrik Burmester
2024-08-14 08:58:53 +02:00
parent 026a286ebf
commit 9ee30ff1ce

View File

@@ -13,6 +13,10 @@ const BITRATES: Bitrate[] = [
key: "Max",
value: undefined,
},
{
key: "8 Mb/s",
value: 8000000,
},
{
key: "4 Mb/s",
value: 4000000,
@@ -25,6 +29,10 @@ const BITRATES: Bitrate[] = [
key: "500 Kb/s",
value: 500000,
},
{
key: "250 Kb/s",
value: 250000,
},
];
interface Props extends React.ComponentProps<typeof View> {