admin: improve video panels
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/888/head
parent
bdf39678ed
commit
e04bb0a7b6
|
@ -24,7 +24,10 @@
|
||||||
{{ t('memories', 'External Link') }}
|
{{ t('memories', 'External Link') }}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<NcNoteCard :type="vaapiStatusType" v-if="status && !config['memories.vod.external']">
|
<NcNoteCard
|
||||||
|
:type="vaapiStatusType"
|
||||||
|
v-if="status && enableTranscoding && !config['memories.vod.external'] && config['memories.vod.vaapi']"
|
||||||
|
>
|
||||||
{{ vaapiStatusText }}
|
{{ vaapiStatusText }}
|
||||||
</NcNoteCard>
|
</NcNoteCard>
|
||||||
|
|
||||||
|
@ -57,7 +60,10 @@
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
|
|
||||||
<NcNoteCard type="warning">
|
<NcNoteCard
|
||||||
|
type="warning"
|
||||||
|
v-if="status && enableTranscoding && !config['memories.vod.external'] && config['memories.vod.nvenc']"
|
||||||
|
>
|
||||||
{{ t('memories', 'No automated tests are available for NVIDIA acceleration.') }}
|
{{ t('memories', 'No automated tests are available for NVIDIA acceleration.') }}
|
||||||
</NcNoteCard>
|
</NcNoteCard>
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{{ t('memories', 'External Link') }}
|
{{ t('memories', 'External Link') }}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<template v-if="status">
|
<template v-if="status && enableTranscoding">
|
||||||
<NcNoteCard :type="binaryStatusType(status.govod)">
|
<NcNoteCard :type="binaryStatusType(status.govod)">
|
||||||
{{ binaryStatus('go-vod', status.govod) }}
|
{{ binaryStatus('go-vod', status.govod) }}
|
||||||
</NcNoteCard>
|
</NcNoteCard>
|
||||||
|
|
Loading…
Reference in New Issue