34 lines
978 B
TypeScript
34 lines
978 B
TypeScript
import React from 'react';
|
|
import { Typography, Row, Col } from 'antd';
|
|
|
|
import VideoVariantsTable from '../components/config/video-variants-table';
|
|
import VideoLatency from '../components/config/video-latency';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigVideoSettings() {
|
|
return (
|
|
<div className="config-video-variants">
|
|
<Title>Video configuration</Title>
|
|
<p className="description">
|
|
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.
|
|
</p>
|
|
|
|
<Row gutter={16}>
|
|
<Col xl={12}>
|
|
<div className="form-module variants-table-module">
|
|
<VideoVariantsTable />
|
|
</div>
|
|
</Col>
|
|
<Col xl={12}>
|
|
<div className="form-module latency-module">
|
|
<VideoLatency />
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|