using System.IO;
namespace MediaBrowser.Controller.Library
{
///
/// The direct live TV stream provider.
///
///
/// Deprecated.
///
public interface IDirectStreamProvider
{
///
/// Gets the live stream, optionally seeks to the end of the file first.
///
/// A value indicating whether to seek to the end of the file.
/// The stream.
Stream GetStream(bool seekNearEnd = true);
}
}