Add encoding frame rate limit

This commit is contained in:
Yukino Song
2025-02-03 03:26:03 +08:00
parent 525d42afc5
commit 8b0053437a
6 changed files with 19 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
<script setup>
import { ref } from 'vue'
import PlatformLayout from '../../PlatformLayout.vue'
import Checkbox from "../../Checkbox.vue";
const props = defineProps([
'platform',
@@ -34,6 +35,14 @@ const config = ref(props.config)
<div class="form-text">{{ $t('config.min_threads_desc') }}</div>
</div>
<!-- Limit Framerate -->
<Checkbox class="mb-3"
id="limit_framerate"
locale-prefix="config"
v-model="config.limit_framerate"
default="true"
></Checkbox>
<!-- HEVC Support -->
<div class="mb-3">
<label for="hevc_mode" class="form-label">{{ $t('config.hevc_mode') }}</label>