Skip image processing for live tv sources
This commit is contained in:
parent
0750357916
commit
2fa2952791
|
@ -1882,59 +1882,63 @@ namespace Emby.Server.Implementations.Library
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var img in outdated)
|
// Skip image processing for live tv
|
||||||
|
if (item.SourceType == SourceType.Library)
|
||||||
{
|
{
|
||||||
var image = img;
|
foreach (var img in outdated)
|
||||||
if (!img.IsLocalFile)
|
|
||||||
{
|
{
|
||||||
|
var image = img;
|
||||||
|
if (!img.IsLocalFile)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var index = item.GetImageIndex(img);
|
||||||
|
image = ConvertImageToLocal(item, img, index).ConfigureAwait(false).GetAwaiter().GetResult();
|
||||||
|
}
|
||||||
|
catch (ArgumentException)
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Cannot get image index for {0}", img.Path);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
catch (InvalidOperationException)
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Cannot fetch image from {0}", img.Path);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var index = item.GetImageIndex(img);
|
ImageDimensions size = _imageProcessor.GetImageDimensions(item, image);
|
||||||
image = ConvertImageToLocal(item, img, index).ConfigureAwait(false).GetAwaiter().GetResult();
|
image.Width = size.Width;
|
||||||
|
image.Height = size.Height;
|
||||||
}
|
}
|
||||||
catch (ArgumentException)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Cannot get image index for {0}", img.Path);
|
_logger.LogError(ex, "Cannnot get image dimensions for {0}", image.Path);
|
||||||
|
image.Width = 0;
|
||||||
|
image.Height = 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
catch (InvalidOperationException)
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_logger.LogWarning("Cannot fetch image from {0}", img.Path);
|
image.BlurHash = _imageProcessor.GetImageBlurHash(image.Path);
|
||||||
continue;
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogError(ex, "Cannot compute blurhash for {0}", image.Path);
|
||||||
|
image.BlurHash = string.Empty;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ImageDimensions size = _imageProcessor.GetImageDimensions(item, image);
|
image.DateModified = _fileSystem.GetLastWriteTimeUtc(image.Path);
|
||||||
image.Width = size.Width;
|
}
|
||||||
image.Height = size.Height;
|
catch (Exception ex)
|
||||||
}
|
{
|
||||||
catch (Exception ex)
|
_logger.LogError(ex, "Cannot update DateModified for {0}", image.Path);
|
||||||
{
|
}
|
||||||
_logger.LogError(ex, "Cannnot get image dimensions for {0}", image.Path);
|
|
||||||
image.Width = 0;
|
|
||||||
image.Height = 0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
image.BlurHash = _imageProcessor.GetImageBlurHash(image.Path);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_logger.LogError(ex, "Cannot compute blurhash for {0}", image.Path);
|
|
||||||
image.BlurHash = string.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
image.DateModified = _fileSystem.GetLastWriteTimeUtc(image.Path);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_logger.LogError(ex, "Cannot update DateModified for {0}", image.Path);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user