mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
76 lines
4.5 KiB
HTML
76 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Metadata</title>
|
|
</head>
|
|
<body>
|
|
<div id="advancedMetadataConfigurationPage" data-role="page" class="page type-interior">
|
|
|
|
<div data-role="content">
|
|
|
|
<div class="content-primary">
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="metadata.html" data-role="button">Basics</a>
|
|
<a href="metadataimages.html?type=movies" data-role="button">Movies</a>
|
|
<a href="metadataimages.html?type=tv" data-role="button">TV</a>
|
|
<a href="metadataimages.html?type=games" data-role="button">Games</a>
|
|
<a href="metadataimages.html?type=music" data-role="button">Music</a>
|
|
<a href="metadataimages.html?type=others" data-role="button">Others</a>
|
|
<a href="#" data-role="button" class="ui-btn-active">Advanced</a>
|
|
</div>
|
|
|
|
<form id="advancedMetadataConfigurationForm">
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label>Extract chapter images for:</label>
|
|
<div data-role="controlgroup">
|
|
<input type="checkbox" data-mini="true" id="chkMovies" name="chkMovies" />
|
|
<label for="chkMovies">Movies</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkEpisodes" name="chkEpisodes" />
|
|
<label for="chkEpisodes">Episodes</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkOtherVideos" name="chkOtherVideos" />
|
|
<label for="chkOtherVideos">Other Videos</label>
|
|
<div class="fieldDescription">Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<h2>Automatic Updates</h2>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<input type="checkbox" id="chkEnableFanartUpdates" name="chkEnableFanartUpdates" data-mini="true" />
|
|
<label for="chkEnableFanartUpdates">Enable automatic updates from FanArt.tv</label>
|
|
<div class="fieldDescription">If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.</div>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="chkEnableTmdbPersonUpdates" name="chkEnableTmdbPersonUpdates" data-mini="true" />
|
|
<label for="chkEnableTmdbPersonUpdates">Enable automatic updates from TheMovieDB.org</label>
|
|
<div class="fieldDescription">If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.</div>
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" id="chkEnableTvdbUpdates" name="chkEnableTvdbUpdates" data-mini="true" />
|
|
<label for="chkEnableTvdbUpdates">Enable automatic updates from TheTVDB.com</label>
|
|
<div class="fieldDescription">If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.</div>
|
|
</li>
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
|
Save
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
|
|
Cancel
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('#advancedMetadataConfigurationForm').on('submit', AdvancedMetadataConfigurationPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|