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

38 lines
1.2 KiB
TypeScript
Raw Normal View History

import React from 'react';
import { Typography, Row, Col } from 'antd';
2020-10-29 10:16:13 -07:00
import VideoVariantsTable from '../components/config/video-variants-table';
import VideoLatency from '../components/config/video-latency';
2020-10-29 10:16:13 -07:00
const { Title } = Typography;
2021-01-19 10:34:06 -08:00
export default function ConfigVideoSettings() {
2020-10-29 10:16:13 -07:00
return (
<div className="config-video-variants">
2021-02-14 01:30:42 -08:00
<Title>Video configuration</Title>
<p className="description">
Before changing your video configuration{' '}
<a href="https://owncast.online/docs/video?source=admin" target="_blank" rel="noopener noreferrer">
visit the video documentation
</a>{' '}
to learn how it impacts your stream performance. The general rule is to start conservatively
by having one middle quality stream output variant and experiment with adding more of varied
2021-02-15 22:09:34 +00:00
qualities.
2021-01-31 01:38:20 -08:00
</p>
2021-01-17 00:40:46 -08:00
<Row gutter={[16, 16]}>
<Col md={24} lg={12}>
<div className="form-module variants-table-module">
<VideoVariantsTable />
</div>
</Col>
<Col md={24} lg={12}>
<div className="form-module latency-module">
<VideoLatency />
</div>
</Col>
</Row>
2020-10-29 10:16:13 -07:00
</div>
2021-01-31 01:38:20 -08:00
);
2020-10-29 10:16:13 -07:00
}