using System.IO;
namespace MediaBrowser.Controller.Library
{
    /// 
    /// The direct live TV stream provider.
    /// 
    /// 
    /// Deprecated.
    /// 
    public interface IDirectStreamProvider
    {
        /// 
        /// Gets the live stream, shared streams seek to the end of the file first.
        /// 
        /// The stream.
        Stream GetStream();
    }
}