diff --git a/components/BitrateSelector.tsx b/components/BitrateSelector.tsx index 3c68143a..016f55f1 100644 --- a/components/BitrateSelector.tsx +++ b/components/BitrateSelector.tsx @@ -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 {