owncast/web/pages/components/config/video-variant-form.tsx

249 lines
8.4 KiB
TypeScript
Raw Normal View History

// This content populates the video variant modal, which is spawned from the variants table.
2021-01-10 13:37:22 +03:00
import React from 'react';
import { Slider, Select, Switch, Divider, Collapse } from 'antd';
2021-01-31 09:53:00 +03:00
import { FieldUpdaterFunc, CpuUsageLevel, VideoVariant } from '../../../types/config-section';
import { DEFAULT_VARIANT_STATE } from './constants';
2021-01-10 13:37:22 +03:00
import InfoTip from '../info-tip';
2021-01-31 09:53:00 +03:00
import CPUUsageSelector from './cpu-usage';
2021-01-10 13:37:22 +03:00
const { Option } = Select;
const { Panel } = Collapse;
const VIDEO_VARIANT_DEFAULTS = {
framerate: {
min: 10,
max: 90,
2021-01-10 13:37:22 +03:00
defaultValue: 24,
unit: 'fps',
incrementBy: 1,
tip: 'You prob wont need to touch this unless youre a hardcore gamer and need all the bitties',
},
videoBitrate: {
min: 600,
max: 6000,
defaultValue: 1200,
2021-01-10 13:37:22 +03:00
unit: 'kbps',
incrementBy: 100,
tip: 'This is importatnt yo',
},
audioBitrate: {
min: 600,
max: 1200,
defaultValue: 800,
unit: 'kbps',
incrementBy: 100,
2021-01-31 12:38:20 +03:00
tip: 'nothing to see here',
2021-01-10 13:37:22 +03:00
},
videoPassthrough: {
2021-01-31 12:38:20 +03:00
tip: 'If No is selected, then you should set your desired Video Bitrate.',
2021-01-10 13:37:22 +03:00
},
audioPassthrough: {
2021-01-31 12:38:20 +03:00
tip: 'If No is selected, then you should set your desired Audio Bitrate.',
2021-01-10 13:37:22 +03:00
},
};
interface VideoVariantFormProps {
dataState: VideoVariant;
onUpdateField: FieldUpdaterFunc;
2021-01-10 13:37:22 +03:00
}
2021-01-31 12:38:20 +03:00
export default function VideoVariantForm({
dataState = DEFAULT_VARIANT_STATE,
onUpdateField,
}: VideoVariantFormProps) {
2021-01-10 13:37:22 +03:00
const handleFramerateChange = (value: number) => {
onUpdateField({ fieldName: 'framerate', value });
2021-01-10 13:37:22 +03:00
};
const handleVideoBitrateChange = (value: number) => {
onUpdateField({ fieldName: 'videoBitrate', value });
2021-01-10 13:37:22 +03:00
};
const handleAudioBitrateChange = (value: number) => {
onUpdateField({ fieldName: 'audioBitrate', value });
2021-01-10 13:37:22 +03:00
};
const handleAudioPassChange = (value: boolean) => {
onUpdateField({ fieldName: 'audioPassthrough', value });
2021-01-10 13:37:22 +03:00
};
const handleVideoPassChange = (value: boolean) => {
onUpdateField({ fieldName: 'videoPassthrough', value });
2021-01-10 13:37:22 +03:00
};
2021-01-31 09:53:00 +03:00
const handleVideoCpuUsageLevelChange = (value: number) => {
2021-01-31 12:38:20 +03:00
onUpdateField({ fieldName: 'cpuUsageLevel', value });
};
2021-01-10 13:37:22 +03:00
const framerateDefaults = VIDEO_VARIANT_DEFAULTS.framerate;
const framerateMin = framerateDefaults.min;
const framerateMax = framerateDefaults.max;
const framerateUnit = framerateDefaults.unit;
const videoBitrateDefaults = VIDEO_VARIANT_DEFAULTS.videoBitrate;
const videoBRMin = videoBitrateDefaults.min;
const videoBRMax = videoBitrateDefaults.max;
const videoBRUnit = videoBitrateDefaults.unit;
const audioBitrateDefaults = VIDEO_VARIANT_DEFAULTS.audioBitrate;
const audioBRMin = audioBitrateDefaults.min;
const audioBRMax = audioBitrateDefaults.max;
const audioBRUnit = audioBitrateDefaults.unit;
const selectedVideoBRnote = `Selected: ${dataState.videoBitrate}${videoBRUnit} - it sucks`;
const selectedAudioBRnote = `Selected: ${dataState.audioBitrate}${audioBRUnit} - too slow`;
const selectedFramerateNote = `Selected: ${dataState.framerate}${framerateUnit} - whoa there`;
const selectedPresetNote = '';
return (
<div className="variant-form">
<div className="section-intro">
2021-01-31 12:38:20 +03:00
Say a thing here about how this all works. Read more{' '}
<a href="https://owncast.online/docs/configuration/">here</a>.
<br />
<br />
2021-01-10 13:37:22 +03:00
</div>
{/* ENCODER PRESET FIELD */}
<div className="field">
<div className="form-component">
2021-01-31 12:38:20 +03:00
<CPUUsageSelector
defaultValue={dataState.cpuUsageLevel}
onChange={handleVideoCpuUsageLevelChange}
/>
{selectedPresetNote ? (
<span className="selected-value-note">{selectedPresetNote}</span>
) : null}
2021-01-10 13:37:22 +03:00
</div>
</div>
{/* VIDEO PASSTHROUGH FIELD */}
2021-01-31 12:38:20 +03:00
<div style={{ display: 'none' }}>
2021-01-10 13:37:22 +03:00
<div className="field">
<p className="label">
<InfoTip tip={VIDEO_VARIANT_DEFAULTS.videoPassthrough.tip} />
Use Video Passthrough?
</p>
<div className="form-component">
<Switch
defaultChecked={dataState.videoPassthrough}
checked={dataState.videoPassthrough}
2021-01-10 13:37:22 +03:00
onChange={handleVideoPassChange}
checkedChildren="Yes"
unCheckedChildren="No"
/>
</div>
</div>
</div>
{/* VIDEO BITRATE FIELD */}
<div className={`field ${dataState.videoPassthrough ? 'disabled' : ''}`}>
<p className="label">
<InfoTip tip={VIDEO_VARIANT_DEFAULTS.videoBitrate.tip} />
Video Bitrate:
</p>
<div className="form-component">
<Slider
tipFormatter={value => `${value} ${videoBRUnit}`}
disabled={dataState.videoPassthrough === true}
defaultValue={dataState.videoBitrate}
value={dataState.videoBitrate}
2021-01-10 13:37:22 +03:00
onChange={handleVideoBitrateChange}
step={videoBitrateDefaults.incrementBy}
min={videoBRMin}
max={videoBRMax}
marks={{
[videoBRMin]: `${videoBRMin} ${videoBRUnit}`,
[videoBRMax]: `${videoBRMax} ${videoBRUnit}`,
}}
/>
2021-01-31 12:38:20 +03:00
{selectedVideoBRnote ? (
<span className="selected-value-note">{selectedVideoBRnote}</span>
) : null}
2021-01-10 13:37:22 +03:00
</div>
</div>
2021-01-31 12:38:20 +03:00
<br />
<br />
<br />
<br />
2021-01-10 13:37:22 +03:00
<Collapse>
<Panel header="Advanced Settings" key="1">
2021-01-31 12:38:20 +03:00
<div className="section-intro">Touch if you dare.</div>
2021-01-10 13:37:22 +03:00
{/* FRAME RATE FIELD */}
<div className="field">
<p className="label">
<InfoTip tip={VIDEO_VARIANT_DEFAULTS.framerate.tip} />
Frame rate:
</p>
<div className="form-component">
<Slider
// tooltipVisible
tipFormatter={value => `${value} ${framerateUnit}`}
defaultValue={dataState.framerate}
value={dataState.framerate}
2021-01-10 13:37:22 +03:00
onChange={handleFramerateChange}
step={framerateDefaults.incrementBy}
min={framerateMin}
max={framerateMax}
marks={{
[framerateMin]: `${framerateMin} ${framerateUnit}`,
[framerateMax]: `${framerateMax} ${framerateUnit}`,
}}
/>
2021-01-31 12:38:20 +03:00
{selectedFramerateNote ? (
<span className="selected-value-note">{selectedFramerateNote}</span>
) : null}
2021-01-10 13:37:22 +03:00
</div>
</div>
<Divider />
{/* AUDIO PASSTHROUGH FIELD */}
{/* <div className="field">
2021-01-10 13:37:22 +03:00
<p className="label">
<InfoTip tip={VIDEO_VARIANT_DEFAULTS.audioPassthrough.tip} />
Use Audio Passthrough?
</p>
<div className="form-component">
<Switch
defaultChecked={dataState.audioPassthrough}
checked={dataState.audioPassthrough}
2021-01-10 13:37:22 +03:00
onChange={handleAudioPassChange}
checkedChildren="Yes"
unCheckedChildren="No"
/>
2021-01-31 12:38:20 +03:00
{dataState.audioPassthrough ? <span className="note">Same as source</span> : null}
2021-01-10 13:37:22 +03:00
</div>
</div> */}
2021-01-10 13:37:22 +03:00
{/* AUDIO BITRATE FIELD */}
{/* <div className={`field ${dataState.audioPassthrough ? 'disabled' : ''}`}>
2021-01-10 13:37:22 +03:00
<p className="label">
<InfoTip tip={VIDEO_VARIANT_DEFAULTS.audioBitrate.tip} />
Audio Bitrate:
</p>
<div className="form-component">
<Slider
// tooltipVisible={dataState.audioPassthrough !== true}
tipFormatter={value => `${value} ${audioBRUnit}`}
disabled={dataState.audioPassthrough === true}
defaultValue={dataState.audioBitrate}
value={dataState.audioBitrate}
2021-01-10 13:37:22 +03:00
onChange={handleAudioBitrateChange}
step={audioBitrateDefaults.incrementBy}
min={audioBRMin}
max={audioBRMax}
marks={{
[audioBRMin]: `${audioBRMin} ${audioBRUnit}`,
[audioBRMax]: `${audioBRMax} ${audioBRUnit}`,
}}
/>
2021-01-31 12:38:20 +03:00
{selectedAudioBRnote ? (
<span className="selected-value-note">{selectedAudioBRnote}</span>
) : null}
2021-01-10 13:37:22 +03:00
</div>
</div> */}
2021-01-10 13:37:22 +03:00
</Panel>
</Collapse>
</div>
);
2021-01-31 12:38:20 +03:00
}