owncast/web/components/config/video-codec-selector.tsx

146 lines
4.7 KiB
TypeScript
Raw Normal View History

2021-03-23 06:34:52 +03:00
import React, { useContext, useState, useEffect } from 'react';
2021-04-02 08:00:31 +03:00
import { Typography, Select, Popconfirm } from 'antd';
2021-03-23 06:34:52 +03:00
import { ServerStatusContext } from '../../utils/server-status-context';
import { AlertMessageContext } from '../../utils/alert-message-context';
import {
API_VIDEO_CODEC,
RESET_TIMEOUT,
postConfigUpdateToAPI,
} from '../../utils/config-constants';
import {
createInputStatus,
StatusState,
STATUS_ERROR,
STATUS_PROCESSING,
STATUS_SUCCESS,
} from '../../utils/input-statuses';
import FormStatusIndicator from './form-status-indicator';
export default function CodecSelector() {
const serverStatusData = useContext(ServerStatusContext);
const { serverConfig, setFieldInConfigState } = serverStatusData || {};
const { videoCodec, supportedCodecs } = serverConfig || {};
const { Title } = Typography;
const { Option } = Select;
const [submitStatus, setSubmitStatus] = useState<StatusState>(null);
const { setMessage } = useContext(AlertMessageContext);
const [selectedCodec, setSelectedCodec] = useState(videoCodec);
let resetTimer = null;
useEffect(() => {
setSelectedCodec(videoCodec);
}, [videoCodec]);
const resetStates = () => {
setSubmitStatus(null);
resetTimer = null;
clearTimeout(resetTimer);
};
async function handleChange(value) {
console.log(`selected ${value}`);
setSelectedCodec(value);
await postConfigUpdateToAPI({
apiPath: API_VIDEO_CODEC,
data: { value: value },
onSuccess: () => {
setFieldInConfigState({
fieldName: 'videoCodec',
value: value,
path: 'videoSettings',
});
setSubmitStatus(createInputStatus(STATUS_SUCCESS, 'Video codec updated.'));
resetTimer = setTimeout(resetStates, RESET_TIMEOUT);
if (serverStatusData.online) {
setMessage(
'Your latency buffer setting will take effect the next time you begin a live stream.',
);
}
},
onError: (message: string) => {
setSubmitStatus(createInputStatus(STATUS_ERROR, message));
resetTimer = setTimeout(resetStates, RESET_TIMEOUT);
},
});
}
const items = supportedCodecs.map(function (codec) {
var title = codec;
if (title === 'libx264') {
title = 'Default (libx264)';
} else if (title === 'h264_nvenc') {
title = 'NVIDIA GPU acceleration';
} else if (title === 'h264_vaapi') {
2021-04-02 08:00:31 +03:00
title = 'VA-API hardware encoding';
2021-03-23 06:34:52 +03:00
} else if (title === 'h264_qsv') {
title = 'Intel QuickSync';
} else if (title === 'h264_v4l2m2m') {
title = 'Video4Linux hardware encoding';
}
return (
<Option key={codec} value={codec}>
{title}
</Option>
);
2021-04-02 08:00:31 +03:00
});
2021-03-23 06:34:52 +03:00
var description = '';
if (selectedCodec === 'libx264') {
2021-04-02 08:00:31 +03:00
description =
'libx264 is the default codec and generally the only working choice for shared VPS enviornments. This is likely what you should be using unless you know you have set up other options.';
2021-03-23 06:34:52 +03:00
} else if (selectedCodec === 'h264_nvenc') {
2021-04-02 08:00:31 +03:00
description =
'You can use your NVIDIA GPU for encoding if you have a modern NVIDIA card with encoding cores.';
2021-03-23 06:34:52 +03:00
} else if (selectedCodec === 'h264_vaapi') {
2021-04-02 08:00:31 +03:00
description =
'VA-API may be supported by your NVIDIA proprietary drivers, Mesa open-source drivers for AMD or Intel graphics.';
2021-03-23 06:34:52 +03:00
} else if (selectedCodec === 'h264_qsv') {
2021-04-02 08:00:31 +03:00
description =
"Quick Sync Video is Intel's brand for its dedicated video encoding and decoding hardware. It may be an option if you have a modern Intel CPU with integrated graphics.";
2021-03-23 06:34:52 +03:00
} else if (selectedCodec === 'h264_v4l2m2m') {
2021-04-02 08:00:31 +03:00
description =
'Video4Linux is an interface to multiple different hardware encoding platforms such as Intel and AMD.';
2021-03-23 06:34:52 +03:00
}
return (
<>
<Title level={3} className="section-title">
Video Codec
</Title>
<p className="description">
2021-04-02 08:00:31 +03:00
If you have access to specific hardware with the drivers and software installed for them, you
may be able to improve your video encoding performance.
<p>
<a
href="https://owncast.online/docs/codecs?source=admin"
target="_blank"
rel="noopener noreferrer"
>
Read the documentation about this setting before changing it or you may make your stream
unplayable.
</a>
</p>
2021-03-23 06:34:52 +03:00
</p>
<div className="segment-slider-container">
2021-04-02 08:00:31 +03:00
<Select
defaultValue={selectedCodec}
value={selectedCodec}
style={{ width: '100%' }}
onChange={handleChange}
>
2021-03-23 06:34:52 +03:00
{items}
</Select>
<FormStatusIndicator status={submitStatus} />
2021-04-02 08:00:31 +03:00
<p id="selected-codec-note" className="selected-value-note">
2021-03-23 06:34:52 +03:00
{description}
</p>
</div>
</>
);
}