mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2026-09-03 03:50:02 +03:00
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:
co-authored by
Bill Thornton
parent
cc604f993d
commit
49468de97e
@@ -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}
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user