extract images for small numbers of items on discovery

This commit is contained in:
Luke Pulverenti
2013-05-03 11:08:02 -04:00
parent ceaae430c6
commit 43845b4052
5 changed files with 350 additions and 178 deletions

View File

@@ -1,5 +1,5 @@
using System;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
@@ -10,6 +10,11 @@ namespace MediaBrowser.Controller.Entities.Audio
/// </summary>
public class Audio : BaseItem, IHasMediaStreams
{
public Audio()
{
MediaStreams = new List<MediaStream>();
}
/// <summary>
/// Gets or sets the media streams.
/// </summary>