mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add recording encoding setting
This commit is contained in:
parent
c0bdf018d6
commit
fae5829a68
4 changed files with 17 additions and 2 deletions
|
@ -52,6 +52,15 @@
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
|
<div>
|
||||||
|
<paper-checkbox id="chkConvertRecordings">${OptionConvertRecordingsToStreamingFormat}</paper-checkbox>
|
||||||
|
<div class="fieldDescription paperCheckboxFieldDescription">${OptionConvertRecordingsToStreamingFormatHelp}</div>
|
||||||
|
<div class="fieldDescription paperCheckboxFieldDescription">
|
||||||
|
<a href="http://emby.media/community/index.php?/topic/674-media-files-folders-structure/" target="_blank">${ButtonLearnMore}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
<div>
|
<div>
|
||||||
<paper-checkbox id="chkOrganize">${OptionSendRecordingsToAutoOrganize}</paper-checkbox>
|
<paper-checkbox id="chkOrganize">${OptionSendRecordingsToAutoOrganize}</paper-checkbox>
|
||||||
<div class="fieldDescription paperCheckboxFieldDescription">${OptionSendRecordingsToAutoOrganizeHelp}</div>
|
<div class="fieldDescription paperCheckboxFieldDescription">${OptionSendRecordingsToAutoOrganizeHelp}</div>
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
$('#chkMovies', page).checked(config.EnableMovieProviders);
|
$('#chkMovies', page).checked(config.EnableMovieProviders);
|
||||||
$('#chkOrganize', page).checked(config.EnableAutoOrganize);
|
$('#chkOrganize', page).checked(config.EnableAutoOrganize);
|
||||||
|
$('#chkConvertRecordings', page).checked(config.EnableRecordingEncoding);
|
||||||
|
|
||||||
$('#txtRecordingPath', page).val(config.RecordingPath || '');
|
$('#txtRecordingPath', page).val(config.RecordingPath || '');
|
||||||
|
|
||||||
|
@ -29,6 +30,7 @@
|
||||||
config.GuideDays = $('#selectGuideDays', form).val() || null;
|
config.GuideDays = $('#selectGuideDays', form).val() || null;
|
||||||
config.EnableMovieProviders = $('#chkMovies', form).checked();
|
config.EnableMovieProviders = $('#chkMovies', form).checked();
|
||||||
config.EnableAutoOrganize = $('#chkOrganize', form).checked();
|
config.EnableAutoOrganize = $('#chkOrganize', form).checked();
|
||||||
|
config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked();
|
||||||
config.RecordingPath = $('#txtRecordingPath', form).val() || null;
|
config.RecordingPath = $('#txtRecordingPath', form).val() || null;
|
||||||
|
|
||||||
config.PrePaddingSeconds = $('#txtPrePaddingMinutes', form).val() * 60;
|
config.PrePaddingSeconds = $('#txtPrePaddingMinutes', form).val() * 60;
|
||||||
|
|
|
@ -1533,5 +1533,7 @@
|
||||||
"HeaderNewRecording": "New Recording",
|
"HeaderNewRecording": "New Recording",
|
||||||
"ButtonAdvanced": "Advanced",
|
"ButtonAdvanced": "Advanced",
|
||||||
"LabelCodecIntrosPath": "Codec intros path:",
|
"LabelCodecIntrosPath": "Codec intros path:",
|
||||||
"LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature."
|
"LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.",
|
||||||
|
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to streaming friendly formats.",
|
||||||
|
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on any device. This feature requires an active Emby Premiere subscription."
|
||||||
}
|
}
|
|
@ -1548,5 +1548,7 @@
|
||||||
"HeaderNewRecording": "New Recording",
|
"HeaderNewRecording": "New Recording",
|
||||||
"ButtonAdvanced": "Advanced",
|
"ButtonAdvanced": "Advanced",
|
||||||
"LabelCodecIntrosPath": "Codec intros path:",
|
"LabelCodecIntrosPath": "Codec intros path:",
|
||||||
"LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature."
|
"LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.",
|
||||||
|
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to streaming friendly formats.",
|
||||||
|
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on any device. This feature requires an active Emby Premiere subscription."
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue