0
owncast/web/pages/config-video.tsx

24 lines
631 B
TypeScript
Raw Normal View History

import React from 'react';
2021-01-17 02:01:40 -08:00
import { Typography } from 'antd';
2020-10-29 10:16:13 -07:00
import VideoVariantsTable from './components/config/video-variants-table';
import VideoLatency from './components/config/video-segments-editor';
2020-10-29 10:16:13 -07:00
const { Title } = Typography;
export default function VideoConfig() {
2020-10-29 10:16:13 -07:00
return (
<div className="config-video-variants">
<Title level={2}>Video configuration</Title>
2021-01-17 00:40:46 -08:00
<p>Learn more about configuring Owncast <a href="https://owncast.online/docs/configuration">by visiting the documentation.</a></p>
<VideoLatency />
2021-01-17 00:40:46 -08:00
<br /><br />
2021-01-10 02:37:22 -08:00
<VideoVariantsTable />
2020-10-29 10:16:13 -07:00
</div>
);
}