2021-09-10 07:29:14 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The direct live TV stream provider.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Deprecated.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public interface IDirectStreamProvider
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-09-10 07:56:48 +00:00
|
|
|
|
/// Gets the live stream, shared streams seek to the end of the file first.
|
2021-09-10 07:29:14 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The stream.</returns>
|
2021-09-10 07:56:48 +00:00
|
|
|
|
Stream GetStream();
|
2021-09-10 07:29:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|