You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
623 B
23 lines
623 B
import React from 'react'; |
|
import { Typography } from 'antd'; |
|
|
|
import VideoVariantsTable from './components/config/video-variants-table'; |
|
import VideoLatency from './components/config/video-latency'; |
|
|
|
const { Title } = Typography; |
|
|
|
export default function VideoConfig() { |
|
return ( |
|
<div className="config-video-variants"> |
|
<Title level={2}>Video configuration</Title> |
|
<p>Learn more about configuring Owncast <a href="https://owncast.online/docs/configuration">by visiting the documentation.</a></p> |
|
|
|
<VideoLatency /> |
|
|
|
<br /><br /> |
|
|
|
<VideoVariantsTable /> |
|
</div> |
|
); |
|
} |
|
|
|
|