Move latency buffer setting under the output variants

This commit is contained in:
Gabe Kangas 2021-02-03 16:23:06 -08:00
parent e3ea0e8f43
commit 3790aba34f
2 changed files with 7 additions and 10 deletions

View file

@ -121,11 +121,6 @@ export default function CurrentVariantsTable() {
};
const videoQualityColumns: ColumnsType<VideoVariant> = [
{
title: '#',
dataIndex: 'key',
key: 'key',
},
{
title: 'Video bitrate',
dataIndex: 'videoBitrate',

View file

@ -15,12 +15,14 @@ export default function ConfigVideoSettings() {
<a href="https://owncast.online/docs/configuration">by visiting the documentation.</a>
</p>
<VideoLatency />
<br />
<br />
<p>
<VideoVariantsTable />
</p>
<p>
<VideoLatency />
</p>
</div>
);
}