You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
460 B
20 lines
460 B
using System.IO;
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
/// <summary>
|
|
/// The direct live TV stream provider.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Deprecated.
|
|
/// </remarks>
|
|
public interface IDirectStreamProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets the live stream, shared streams seek to the end of the file first.
|
|
/// </summary>
|
|
/// <returns>The stream.</returns>
|
|
Stream GetStream();
|
|
}
|
|
}
|