2021-01-18 21:11:48 +01:00
|
|
|
import React from 'react';
|
2021-01-17 11:01:40 +01:00
|
|
|
import { Typography } from 'antd';
|
2020-10-29 18:16:13 +01:00
|
|
|
|
2021-01-09 22:12:14 +01:00
|
|
|
import VideoVariantsTable from './components/config/video-variants-table';
|
2021-01-18 21:12:28 +01:00
|
|
|
import VideoLatency from './components/config/video-latency';
|
2021-01-09 22:12:14 +01:00
|
|
|
|
2020-10-29 18:16:13 +01:00
|
|
|
const { Title } = Typography;
|
|
|
|
|
2021-01-19 19:34:06 +01:00
|
|
|
export default function ConfigVideoSettings() {
|
2020-10-29 18:16:13 +01:00
|
|
|
return (
|
2021-01-09 22:12:14 +01:00
|
|
|
<div className="config-video-variants">
|
|
|
|
<Title level={2}>Video configuration</Title>
|
2021-01-17 09:40:46 +01:00
|
|
|
<p>Learn more about configuring Owncast <a href="https://owncast.online/docs/configuration">by visiting the documentation.</a></p>
|
|
|
|
|
2021-01-18 21:11:48 +01:00
|
|
|
<VideoLatency />
|
2021-01-17 09:40:46 +01:00
|
|
|
|
|
|
|
<br /><br />
|
2021-01-10 11:37:22 +01:00
|
|
|
|
2021-01-09 22:12:14 +01:00
|
|
|
<VideoVariantsTable />
|
2020-10-29 18:16:13 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|