2021-01-18 12:11:48 -08:00
|
|
|
import React from 'react';
|
2021-01-17 02:01:40 -08:00
|
|
|
import { Typography } from 'antd';
|
2020-10-29 10:16:13 -07:00
|
|
|
|
2021-01-09 13:12:14 -08:00
|
|
|
import VideoVariantsTable from './components/config/video-variants-table';
|
2021-01-18 12:12:28 -08:00
|
|
|
import VideoLatency from './components/config/video-latency';
|
2021-01-09 13:12:14 -08:00
|
|
|
|
2020-10-29 10:16:13 -07:00
|
|
|
const { Title } = Typography;
|
|
|
|
|
2021-01-19 10:34:06 -08:00
|
|
|
export default function ConfigVideoSettings() {
|
2020-10-29 10:16:13 -07:00
|
|
|
return (
|
2021-01-09 13:12:14 -08:00
|
|
|
<div className="config-video-variants">
|
|
|
|
<Title level={2}>Video configuration</Title>
|
2021-01-31 01:38:20 -08:00
|
|
|
<p>
|
2021-02-04 12:41:35 -08:00
|
|
|
Before changing your video configuration <a href="https://owncast.online/docs/encoding">visit the video documentation</a>{' '}
|
|
|
|
to learn how it impacts your stream performance.
|
2021-01-31 01:38:20 -08:00
|
|
|
</p>
|
2021-01-17 00:40:46 -08:00
|
|
|
|
2021-02-03 16:23:06 -08:00
|
|
|
<p>
|
2021-01-31 01:38:20 -08:00
|
|
|
<VideoVariantsTable />
|
2021-02-03 16:23:06 -08:00
|
|
|
</p>
|
2021-02-04 12:41:35 -08:00
|
|
|
<br/><hr/><br/>
|
2021-02-03 16:23:06 -08:00
|
|
|
<p>
|
|
|
|
<VideoLatency />
|
|
|
|
</p>
|
|
|
|
|
2020-10-29 10:16:13 -07:00
|
|
|
</div>
|
2021-01-31 01:38:20 -08:00
|
|
|
);
|
2020-10-29 10:16:13 -07:00
|
|
|
}
|