This commit is contained in:
gingervitis
2021-01-17 02:01:40 -08:00
committed by Gabe Kangas
parent 93fa75df2e
commit 5b4178b667
4 changed files with 17 additions and 44 deletions

View File

@@ -49,7 +49,17 @@ interface VideoVariantFormProps {
dataState: VideoVariant;
onUpdateField: FieldUpdaterFunc;
}
/*
CPU Usage slider
{
'ultrafast': 'lowest cpu, lowest quality',
'superfast': 'lower cpu, lower quality',
'veryfast': 'medium cpu, medium quality',
'faster': 'higher cpu, higher quality',
'fast': 'highest cpu, highest quality'
}
*/
export default function VideoVariantForm({ dataState = DEFAULT_VARIANT_STATE, onUpdateField }: VideoVariantFormProps) {
const handleFramerateChange = (value: number) => {