owncast/web/pages/config-video.tsx

29 lines
663 B
TypeScript
Raw Normal View History

import React from 'react';
2021-01-17 11:01:40 +01:00
import { Typography } from 'antd';
2020-10-29 18:16:13 +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';
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 (
<div className="config-video-variants">
<Title level={2}>Video configuration</Title>
2021-01-31 10:38:20 +01:00
<p>
Learn more about configuring Owncast{' '}
<a href="https://owncast.online/docs/configuration">by visiting the documentation.</a>
</p>
2021-01-17 09:40:46 +01:00
<p>
2021-01-31 10:38:20 +01:00
<VideoVariantsTable />
</p>
<p>
<VideoLatency />
</p>
2020-10-29 18:16:13 +01:00
</div>
2021-01-31 10:38:20 +01:00
);
2020-10-29 18:16:13 +01:00
}