mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
feat(server): hls with real-time transcoding (#28230)
* hls implementation * fix stale state after ffmpeg exit
This commit is contained in:
parent
cf4789e008
commit
7eabac6702
43 changed files with 3172 additions and 180 deletions
|
|
@ -388,6 +388,22 @@
|
|||
/>
|
||||
</div>
|
||||
</SettingAccordion>
|
||||
|
||||
<SettingAccordion
|
||||
key="realtime-transcoding"
|
||||
title={$t('admin.transcoding_realtime')}
|
||||
subtitle={$t('admin.transcoding_realtime_description')}
|
||||
>
|
||||
<div class="ms-4 mt-4 flex flex-col gap-4">
|
||||
<SettingSwitch
|
||||
title={$t('admin.transcoding_realtime_enabled')}
|
||||
subtitle={$t('admin.transcoding_realtime_enabled_description')}
|
||||
bind:checked={configToEdit.ffmpeg.realtime.enabled}
|
||||
isEdited={configToEdit.ffmpeg.realtime.enabled !== configToEdit.ffmpeg.realtime.enabled}
|
||||
{disabled}
|
||||
/>
|
||||
</div>
|
||||
</SettingAccordion>
|
||||
</div>
|
||||
|
||||
<div class="ms-4">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue