Added HlsAudioSeekStrategy option into Transcode settings (#7473)

* Added HlsAudioSeekStrategy option into Transcode settings

* Bump Jellyfin SDK

* Merge conflicts

* Update with new AudioSeekStrategies

* revert en-gb

---------

Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
Peaches_MLG
2026-08-07 10:41:02 -04:00
committed by GitHub
co-authored by Bill Thornton
parent cc604f993d
commit 49468de97e
2 changed files with 14 additions and 0 deletions
@@ -725,6 +725,18 @@ export const Component = () => {
<MenuItem value='Ac4'>AC-4</MenuItem>
</TextField>
<TextField
name='HlsAudioSeekStrategy'
value={config.HlsAudioSeekStrategy}
onChange={onConfigChange}
label={globalize.translate('LabelHlsAudioSeekStrategy')}
helperText={globalize.translate('HlsAudioSeekStrategy')}
select
>
<MenuItem value='TrimCopiedAudio'>TrimCopiedAudio</MenuItem>
<MenuItem value='TranscodeAudio'>TranscodeAudio</MenuItem>
</TextField>
<TextField
name='MaxMuxingQueueSize'
value={config.MaxMuxingQueueSize}
+2
View File
@@ -1778,6 +1778,7 @@
"Yesterday": "Yesterday",
"HeaderSelectFallbackFontPath": "Select Fallback Font Folder Path",
"HeaderSelectFallbackFontPathHelp": "Browse or enter the path of the fallback font folder to use for rendering ASS/SSA subtitles.",
"HlsAudioSeekStrategy": "The strategy to use when seeking in HLS streams.",
"LabelFallbackFontPath": "Fallback font folder path",
"LabelFallbackFontPathHelp": "These fonts are used by some clients to render subtitles. Please refer to the documentation for more information.",
"EnableFallbackFont": "Enable fallback fonts",
@@ -1843,6 +1844,7 @@
"EnableIntelLowPowerHevcHwEncoder": "Enable Intel Low-Power HEVC hardware encoder",
"IntelLowPowerEncHelp": "Low-Power Encoding can keep unnecessary CPU-GPU sync. On Linux they must be disabled if the i915 HuC firmware is not configured.",
"LabelHardwareEncodingOptions": "Hardware encoding options",
"LabelHlsAudioSeekStrategy": "Audio seek strategy.",
"LabelEncodingFormatOptions": "Encoding format options",
"EncodingFormatHelp": "Select the video encoding that Jellyfin should transcode to. Jellyfin will use software encoding when hardware acceleration for the selected format is not available. H264 encoding will always be enabled.",
"AudioIsExternal": "The audio stream is external",