mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-16 20:50:48 +01:00
probe live streams after opening
This commit is contained in:
@@ -226,7 +226,7 @@
|
||||
<Compile Include="Dto\RecommendationType.cs" />
|
||||
<Compile Include="Dto\SubtitleDownloadOptions.cs" />
|
||||
<Compile Include="Entities\IsoType.cs" />
|
||||
<Compile Include="Entities\MediaInfo.cs" />
|
||||
<Compile Include="MediaInfo\MediaInfo.cs" />
|
||||
<Compile Include="Entities\MediaStreamType.cs" />
|
||||
<Compile Include="Entities\PackageReviewInfo.cs" />
|
||||
<Compile Include="Entities\ProviderIdsExtensions.cs" />
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
using MediaBrowser.Model.Dto;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
namespace MediaBrowser.Model.MediaInfo
|
||||
{
|
||||
public class MediaInfo : MediaSourceInfo, IHasProviderIds
|
||||
{
|
||||
@@ -4,5 +4,6 @@ namespace MediaBrowser.Model.Sync
|
||||
public class SyncOptions
|
||||
{
|
||||
public string TemporaryPath { get; set; }
|
||||
public long UploadSpeedLimitBytes { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,5 +23,10 @@ namespace MediaBrowser.Model.Sync
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is default; otherwise, <c>false</c>.</value>
|
||||
public bool IsDefault { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is original quality.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is original quality; otherwise, <c>false</c>.</value>
|
||||
public bool IsOriginalQuality { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,6 +39,8 @@ namespace MediaBrowser.Model.Users
|
||||
public bool EnableLiveTvAccess { get; set; }
|
||||
|
||||
public bool EnableMediaPlayback { get; set; }
|
||||
public bool EnableMediaPlaybackTranscoding { get; set; }
|
||||
|
||||
public bool EnableContentDeletion { get; set; }
|
||||
public bool EnableContentDownloading { get; set; }
|
||||
|
||||
@@ -47,6 +49,7 @@ namespace MediaBrowser.Model.Users
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [enable synchronize]; otherwise, <c>false</c>.</value>
|
||||
public bool EnableSync { get; set; }
|
||||
public bool EnableSyncTranscoding { get; set; }
|
||||
|
||||
public string[] EnabledDevices { get; set; }
|
||||
public bool EnableAllDevices { get; set; }
|
||||
@@ -62,9 +65,14 @@ namespace MediaBrowser.Model.Users
|
||||
public UserPolicy()
|
||||
{
|
||||
EnableSync = true;
|
||||
EnableLiveTvManagement = true;
|
||||
EnableSyncTranscoding = true;
|
||||
|
||||
EnableMediaPlayback = true;
|
||||
EnableMediaPlaybackTranscoding = true;
|
||||
|
||||
EnableLiveTvManagement = true;
|
||||
EnableLiveTvAccess = true;
|
||||
|
||||
EnableSharedDeviceControl = true;
|
||||
|
||||
BlockedTags = new string[] { };
|
||||
|
||||
Reference in New Issue
Block a user