Browse Source

Move latency buffer setting under the output variants

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
3790aba34f
  1. 5
      web/pages/components/config/video-variants-table.tsx
  2. 12
      web/pages/config-video.tsx

5
web/pages/components/config/video-variants-table.tsx

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

12
web/pages/config-video.tsx

@ -15,12 +15,14 @@ export default function ConfigVideoSettings() { @@ -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>
);
}

Loading…
Cancel
Save