Added separate task queue for video streams to prevent ffmpeg overstressing the CPU. Fixed entity parent in scene REST API.

This commit is contained in:
DebaucheryLibrarian
2020-08-17 15:53:20 +02:00
parent b3435c97c3
commit e896d52968
9 changed files with 31 additions and 26 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="content">
<div class="home">
<div
ref="content"
class="content-inner"
@@ -20,9 +20,9 @@
:items-per-page="limit"
class="pagination-bottom"
/>
<Footer />
</div>
<Footer />
</div>
</template>
@@ -79,3 +79,11 @@ export default {
},
};
</script>
<style lang="scss" scoped>
.home {
flex-grow: 1;
display: flex;
flex-direction: column;
}
</style>