|
|
|
@ -49,10 +49,7 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
|
|
|
{
|
|
|
|
|
var audio = (Audio)item;
|
|
|
|
|
|
|
|
|
|
var imageStreams =
|
|
|
|
|
audio.GetMediaStreams(MediaStreamType.EmbeddedImage)
|
|
|
|
|
.Where(i => i.Type == MediaStreamType.EmbeddedImage)
|
|
|
|
|
.ToList();
|
|
|
|
|
var imageStreams = audio.GetMediaStreams(MediaStreamType.EmbeddedImage);
|
|
|
|
|
|
|
|
|
|
// Can't extract if we didn't find a video stream in the file
|
|
|
|
|
if (imageStreams.Count == 0)
|
|
|
|
|