jellyfin/Emby.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunHost.cs

578 lines
21 KiB
C#
Raw Normal View History

2015-07-20 20:32:55 +02:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Serialization;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2016-02-24 19:45:11 +01:00
using MediaBrowser.Common.Extensions;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
2016-09-25 20:39:13 +02:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Controller.IO;
2015-10-14 04:41:46 +02:00
using MediaBrowser.Controller.MediaEncoding;
2015-10-30 17:40:12 +01:00
using MediaBrowser.Model.Configuration;
2016-07-08 05:22:16 +02:00
using MediaBrowser.Model.Net;
2015-07-20 20:32:55 +02:00
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
2015-07-20 20:32:55 +02:00
{
2016-02-19 07:20:18 +01:00
public class HdHomerunHost : BaseTunerHost, ITunerHost, IConfigurableTunerHost
2015-07-20 20:32:55 +02:00
{
private readonly IHttpClient _httpClient;
2016-09-25 20:39:13 +02:00
private readonly IFileSystem _fileSystem;
private readonly IServerApplicationHost _appHost;
2015-07-20 20:32:55 +02:00
2016-09-25 20:39:13 +02:00
public HdHomerunHost(IServerConfigurationManager config, ILogger logger, IJsonSerializer jsonSerializer, IMediaEncoder mediaEncoder, IHttpClient httpClient, IFileSystem fileSystem, IServerApplicationHost appHost)
2015-10-30 17:40:12 +01:00
: base(config, logger, jsonSerializer, mediaEncoder)
2015-07-20 20:32:55 +02:00
{
_httpClient = httpClient;
2016-09-25 20:39:13 +02:00
_fileSystem = fileSystem;
_appHost = appHost;
2015-07-20 20:32:55 +02:00
}
public string Name
{
get { return "HD Homerun"; }
}
2015-08-19 19:58:41 +02:00
public override string Type
2015-07-23 18:32:34 +02:00
{
get { return DeviceType; }
}
public static string DeviceType
2015-07-20 20:32:55 +02:00
{
get { return "hdhomerun"; }
}
2015-08-16 20:37:53 +02:00
private const string ChannelIdPrefix = "hdhr_";
2016-02-25 21:29:38 +01:00
private string GetChannelId(TunerHostInfo info, Channels i)
{
2016-11-04 00:35:19 +01:00
var id = ChannelIdPrefix + i.GuideNumber;
2016-02-25 21:29:38 +01:00
2017-01-23 22:51:23 +01:00
id += '_' + (i.GuideName ?? string.Empty).GetMD5().ToString("N");
2016-02-25 21:29:38 +01:00
return id;
}
2016-04-04 01:20:43 +02:00
private async Task<IEnumerable<Channels>> GetLineup(TunerHostInfo info, CancellationToken cancellationToken)
2015-07-20 20:32:55 +02:00
{
var options = new HttpRequestOptions
{
2015-07-24 01:40:54 +02:00
Url = string.Format("{0}/lineup.json", GetApiUrl(info, false)),
2016-10-06 20:55:01 +02:00
CancellationToken = cancellationToken,
BufferContent = false
2015-07-20 20:32:55 +02:00
};
using (var stream = await _httpClient.Get(options))
{
2016-04-04 01:20:43 +02:00
var lineup = JsonSerializer.DeserializeFromStream<List<Channels>>(stream) ?? new List<Channels>();
2015-07-20 20:32:55 +02:00
2016-04-04 01:20:43 +02:00
if (info.ImportFavoritesOnly)
2015-07-20 20:32:55 +02:00
{
2016-04-04 01:20:43 +02:00
lineup = lineup.Where(i => i.Favorite).ToList();
}
2015-07-20 20:32:55 +02:00
2016-04-06 04:18:56 +02:00
return lineup.Where(i => !i.DRM).ToList();
2016-04-04 01:20:43 +02:00
}
}
2015-07-25 20:11:46 +02:00
2016-04-04 01:20:43 +02:00
protected override async Task<IEnumerable<ChannelInfo>> GetChannelsInternal(TunerHostInfo info, CancellationToken cancellationToken)
{
var lineup = await GetLineup(info, cancellationToken).ConfigureAwait(false);
2015-07-25 20:11:46 +02:00
2016-04-04 01:20:43 +02:00
return lineup.Select(i => new ChannelInfo
{
Name = i.GuideName,
2016-11-04 00:35:19 +01:00
Number = i.GuideNumber,
2016-04-04 01:20:43 +02:00
Id = GetChannelId(info, i),
IsFavorite = i.Favorite,
2016-04-04 02:01:03 +02:00
TunerHostId = info.Id,
IsHD = i.HD == 1,
AudioCodec = i.AudioCodec,
2017-01-01 21:47:54 +01:00
VideoCodec = i.VideoCodec,
ChannelType = ChannelType.TV
2016-04-04 01:20:43 +02:00
});
2015-07-20 20:32:55 +02:00
}
2016-10-07 17:08:13 +02:00
private readonly Dictionary<string, DiscoverResponse> _modelCache = new Dictionary<string, DiscoverResponse>();
2015-07-24 04:48:10 +02:00
private async Task<string> GetModelInfo(TunerHostInfo info, CancellationToken cancellationToken)
2015-07-20 20:32:55 +02:00
{
2016-09-30 08:50:06 +02:00
lock (_modelCache)
{
DiscoverResponse response;
if (_modelCache.TryGetValue(info.Url, out response))
{
return response.ModelNumber;
}
}
2016-07-08 05:22:16 +02:00
try
2015-07-21 06:22:46 +02:00
{
2016-07-08 05:22:16 +02:00
using (var stream = await _httpClient.Get(new HttpRequestOptions()
{
Url = string.Format("{0}/discover.json", GetApiUrl(info, false)),
CancellationToken = cancellationToken,
CacheLength = TimeSpan.FromDays(1),
CacheMode = CacheMode.Unconditional,
2016-10-06 20:55:01 +02:00
TimeoutMs = Convert.ToInt32(TimeSpan.FromSeconds(5).TotalMilliseconds),
BufferContent = false
2016-07-08 05:22:16 +02:00
}))
{
var response = JsonSerializer.DeserializeFromStream<DiscoverResponse>(stream);
2016-09-30 08:50:06 +02:00
lock (_modelCache)
{
_modelCache[info.Id] = response;
}
2016-07-08 05:22:16 +02:00
return response.ModelNumber;
}
}
catch (HttpException ex)
2015-07-21 06:22:46 +02:00
{
2016-07-08 05:22:16 +02:00
if (ex.StatusCode.HasValue && ex.StatusCode.Value == System.Net.HttpStatusCode.NotFound)
{
2016-09-30 08:50:06 +02:00
var defaultValue = "HDHR";
2016-07-08 05:22:16 +02:00
// HDHR4 doesn't have this api
2016-09-30 08:50:06 +02:00
lock (_modelCache)
{
_modelCache[info.Id] = new DiscoverResponse
{
ModelNumber = defaultValue
};
}
return defaultValue;
2016-07-08 05:22:16 +02:00
}
2015-07-21 06:22:46 +02:00
2016-07-08 05:22:16 +02:00
throw;
2016-02-28 22:31:54 +01:00
}
2015-07-24 04:48:10 +02:00
}
public async Task<List<LiveTvTunerInfo>> GetTunerInfos(TunerHostInfo info, CancellationToken cancellationToken)
{
2015-08-25 05:13:04 +02:00
var model = await GetModelInfo(info, cancellationToken).ConfigureAwait(false);
2015-07-24 04:48:10 +02:00
2015-07-21 06:22:46 +02:00
using (var stream = await _httpClient.Get(new HttpRequestOptions()
2015-07-20 20:32:55 +02:00
{
2015-07-24 01:40:54 +02:00
Url = string.Format("{0}/tuners.html", GetApiUrl(info, false)),
2015-10-01 18:28:24 +02:00
CancellationToken = cancellationToken,
2016-10-06 20:55:01 +02:00
TimeoutMs = Convert.ToInt32(TimeSpan.FromSeconds(5).TotalMilliseconds),
BufferContent = false
2015-07-21 06:22:46 +02:00
}))
2015-07-20 20:32:55 +02:00
{
var tuners = new List<LiveTvTunerInfo>();
using (var sr = new StreamReader(stream, System.Text.Encoding.UTF8))
{
while (!sr.EndOfStream)
{
string line = StripXML(sr.ReadLine());
if (line.Contains("Channel"))
{
LiveTvTunerStatus status;
var index = line.IndexOf("Channel", StringComparison.OrdinalIgnoreCase);
var name = line.Substring(0, index - 1);
var currentChannel = line.Substring(index + 7);
if (currentChannel != "none") { status = LiveTvTunerStatus.LiveTv; } else { status = LiveTvTunerStatus.Available; }
2015-08-20 01:57:27 +02:00
tuners.Add(new LiveTvTunerInfo
2015-07-20 20:32:55 +02:00
{
Name = name,
2015-07-21 06:22:46 +02:00
SourceType = string.IsNullOrWhiteSpace(model) ? Name : model,
2015-07-20 20:32:55 +02:00
ProgramName = currentChannel,
Status = status
});
}
}
}
return tuners;
}
}
2015-08-19 18:43:23 +02:00
public async Task<List<LiveTvTunerInfo>> GetTunerInfos(CancellationToken cancellationToken)
{
var list = new List<LiveTvTunerInfo>();
foreach (var host in GetConfiguration().TunerHosts
.Where(i => i.IsEnabled && string.Equals(i.Type, Type, StringComparison.OrdinalIgnoreCase)))
{
try
{
list.AddRange(await GetTunerInfos(host, cancellationToken).ConfigureAwait(false));
}
catch (Exception ex)
{
2015-08-19 19:58:41 +02:00
Logger.ErrorException("Error getting tuner info", ex);
2015-08-19 18:43:23 +02:00
}
}
return list;
}
2015-07-24 01:40:54 +02:00
private string GetApiUrl(TunerHostInfo info, bool isPlayback)
2015-07-20 20:32:55 +02:00
{
var url = info.Url;
2015-08-24 04:08:20 +02:00
if (string.IsNullOrWhiteSpace(url))
{
throw new ArgumentException("Invalid tuner info");
}
2015-07-20 20:32:55 +02:00
if (!url.StartsWith("http", StringComparison.OrdinalIgnoreCase))
{
url = "http://" + url;
}
2015-07-24 01:40:54 +02:00
var uri = new Uri(url);
if (isPlayback)
{
var builder = new UriBuilder(uri);
builder.Port = 5004;
uri = builder.Uri;
}
return uri.AbsoluteUri.TrimEnd('/');
2015-07-20 20:32:55 +02:00
}
private static string StripXML(string source)
{
char[] buffer = new char[source.Length];
int bufferIndex = 0;
bool inside = false;
for (int i = 0; i < source.Length; i++)
{
char let = source[i];
if (let == '<')
{
inside = true;
continue;
}
if (let == '>')
{
inside = false;
continue;
}
if (!inside)
{
buffer[bufferIndex] = let;
bufferIndex++;
}
}
return new string(buffer, 0, bufferIndex);
}
private class Channels
{
public string GuideNumber { get; set; }
public string GuideName { get; set; }
2016-04-04 01:20:43 +02:00
public string VideoCodec { get; set; }
public string AudioCodec { get; set; }
2015-07-20 20:32:55 +02:00
public string URL { get; set; }
public bool Favorite { get; set; }
public bool DRM { get; set; }
2016-04-04 01:20:43 +02:00
public int HD { get; set; }
2015-07-20 20:32:55 +02:00
}
2016-04-04 01:20:43 +02:00
private async Task<MediaSourceInfo> GetMediaSource(TunerHostInfo info, string channelId, string profile)
2015-07-20 20:32:55 +02:00
{
2015-07-24 04:48:10 +02:00
int? width = null;
int? height = null;
bool isInterlaced = true;
2016-04-04 01:20:43 +02:00
string videoCodec = null;
string audioCodec = "ac3";
2015-10-30 17:40:12 +01:00
2015-07-24 04:48:10 +02:00
int? videoBitrate = null;
2016-04-14 21:12:00 +02:00
int? audioBitrate = null;
2015-07-24 04:48:10 +02:00
if (string.Equals(profile, "mobile", StringComparison.OrdinalIgnoreCase))
{
width = 1280;
height = 720;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 2000000;
}
else if (string.Equals(profile, "heavy", StringComparison.OrdinalIgnoreCase))
{
width = 1920;
height = 1080;
isInterlaced = false;
videoCodec = "h264";
2015-12-29 17:12:33 +01:00
videoBitrate = 15000000;
2015-07-24 04:48:10 +02:00
}
else if (string.Equals(profile, "internet540", StringComparison.OrdinalIgnoreCase))
{
width = 960;
height = 546;
2015-07-24 04:48:10 +02:00
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 2500000;
}
else if (string.Equals(profile, "internet480", StringComparison.OrdinalIgnoreCase))
{
width = 848;
height = 480;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 2000000;
}
else if (string.Equals(profile, "internet360", StringComparison.OrdinalIgnoreCase))
{
width = 640;
height = 360;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 1500000;
}
else if (string.Equals(profile, "internet240", StringComparison.OrdinalIgnoreCase))
{
width = 432;
height = 240;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 1000000;
}
2016-09-18 22:38:38 +02:00
var channels = await GetChannels(info, true, CancellationToken.None).ConfigureAwait(false);
var channel = channels.FirstOrDefault(i => string.Equals(i.Number, channelId, StringComparison.OrdinalIgnoreCase));
if (channel != null)
2016-04-04 01:20:43 +02:00
{
2016-09-18 22:38:38 +02:00
if (string.IsNullOrWhiteSpace(videoCodec))
2016-04-04 01:20:43 +02:00
{
videoCodec = channel.VideoCodec;
2016-09-18 22:38:38 +02:00
}
audioCodec = channel.AudioCodec;
2016-04-04 01:20:43 +02:00
2016-09-18 22:38:38 +02:00
if (!videoBitrate.HasValue)
{
2016-04-04 02:01:03 +02:00
videoBitrate = (channel.IsHD ?? true) ? 15000000 : 2000000;
2016-04-04 01:20:43 +02:00
}
2016-09-18 22:38:38 +02:00
audioBitrate = (channel.IsHD ?? true) ? 448000 : 192000;
2016-04-04 01:20:43 +02:00
}
// normalize
if (string.Equals(videoCodec, "mpeg2", StringComparison.OrdinalIgnoreCase))
{
videoCodec = "mpeg2video";
}
2016-04-18 19:43:00 +02:00
string nal = null;
if (string.Equals(videoCodec, "h264", StringComparison.OrdinalIgnoreCase))
{
nal = "0";
}
2015-07-24 04:48:10 +02:00
var url = GetApiUrl(info, true) + "/auto/v" + channelId;
2016-12-08 07:53:46 +01:00
// If raw was used, the tuner doesn't support params
if (!string.IsNullOrWhiteSpace(profile)
&& !string.Equals(profile, "native", StringComparison.OrdinalIgnoreCase))
2015-07-24 04:48:10 +02:00
{
url += "?transcode=" + profile;
}
2016-09-25 20:39:13 +02:00
var id = profile;
if (string.IsNullOrWhiteSpace(id))
{
id = "native";
}
id += "_" + url.GetMD5().ToString("N");
2015-07-24 01:40:54 +02:00
var mediaSource = new MediaSourceInfo
2015-07-20 20:32:55 +02:00
{
2015-07-24 04:48:10 +02:00
Path = url,
2015-07-24 01:40:54 +02:00
Protocol = MediaProtocol.Http,
MediaStreams = new List<MediaStream>
2015-07-20 20:32:55 +02:00
{
new MediaStream
{
Type = MediaStreamType.Video,
// Set the index to -1 because we don't know the exact index of the video stream within the container
Index = -1,
2015-07-24 04:48:10 +02:00
IsInterlaced = isInterlaced,
Codec = videoCodec,
Width = width,
Height = height,
2016-04-18 19:43:00 +02:00
BitRate = videoBitrate,
NalLengthSize = nal
2016-04-04 02:01:03 +02:00
2015-07-20 20:32:55 +02:00
},
new MediaStream
{
Type = MediaStreamType.Audio,
// Set the index to -1 because we don't know the exact index of the audio stream within the container
2015-07-24 04:48:10 +02:00
Index = -1,
2016-04-04 01:20:43 +02:00
Codec = audioCodec,
2016-04-14 21:12:00 +02:00
BitRate = audioBitrate
2015-07-20 20:32:55 +02:00
}
2015-07-24 01:40:54 +02:00
},
2016-09-18 22:38:38 +02:00
RequiresOpening = true,
2015-10-30 17:40:12 +01:00
RequiresClosing = false,
2015-12-29 17:12:33 +01:00
BufferMs = 0,
2015-07-25 20:42:39 +02:00
Container = "ts",
2016-09-25 20:39:13 +02:00
Id = id,
2016-10-12 20:23:09 +02:00
SupportsDirectPlay = false,
SupportsDirectStream = true,
2016-09-30 04:21:24 +02:00
SupportsTranscoding = true,
IsInfiniteStream = true
2015-07-24 01:40:54 +02:00
};
2015-07-20 20:32:55 +02:00
2017-01-21 21:27:07 +01:00
mediaSource.InferTotalBitrate();
2015-07-24 01:40:54 +02:00
return mediaSource;
2015-07-20 20:32:55 +02:00
}
2015-07-23 15:23:22 +02:00
2015-10-30 17:40:12 +01:00
protected EncodingOptions GetEncodingOptions()
{
return Config.GetConfiguration<EncodingOptions>("encoding");
}
2016-02-24 19:45:11 +01:00
private string GetHdHrIdFromChannelId(string channelId)
{
return channelId.Split('_')[1];
}
2015-08-19 21:25:18 +02:00
protected override async Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(TunerHostInfo info, string channelId, CancellationToken cancellationToken)
2015-07-24 01:40:54 +02:00
{
var list = new List<MediaSourceInfo>();
2015-08-16 20:37:53 +02:00
if (!channelId.StartsWith(ChannelIdPrefix, StringComparison.OrdinalIgnoreCase))
{
return list;
}
2016-02-24 19:45:11 +01:00
var hdhrId = GetHdHrIdFromChannelId(channelId);
2015-08-16 20:37:53 +02:00
2015-07-24 04:48:10 +02:00
try
{
2016-12-08 07:53:46 +01:00
var model = await GetModelInfo(info, cancellationToken).ConfigureAwait(false);
model = model ?? string.Empty;
if ((model.IndexOf("hdtc", StringComparison.OrdinalIgnoreCase) != -1))
2015-07-24 04:48:10 +02:00
{
2016-12-08 07:53:46 +01:00
list.Add(await GetMediaSource(info, hdhrId, "native").ConfigureAwait(false));
2016-09-30 08:50:06 +02:00
2016-12-08 07:53:46 +01:00
if (info.AllowHWTranscoding)
2016-09-30 08:50:06 +02:00
{
list.Add(await GetMediaSource(info, hdhrId, "heavy").ConfigureAwait(false));
2015-07-24 17:20:11 +02:00
2016-09-30 08:50:06 +02:00
list.Add(await GetMediaSource(info, hdhrId, "internet540").ConfigureAwait(false));
list.Add(await GetMediaSource(info, hdhrId, "internet480").ConfigureAwait(false));
list.Add(await GetMediaSource(info, hdhrId, "internet360").ConfigureAwait(false));
list.Add(await GetMediaSource(info, hdhrId, "internet240").ConfigureAwait(false));
list.Add(await GetMediaSource(info, hdhrId, "mobile").ConfigureAwait(false));
}
2015-07-24 04:48:10 +02:00
}
}
catch
2015-07-24 04:48:10 +02:00
{
2015-08-16 20:37:53 +02:00
2015-07-24 04:48:10 +02:00
}
2016-12-08 07:53:46 +01:00
if (list.Count == 0)
{
list.Add(await GetMediaSource(info, hdhrId, "native").ConfigureAwait(false));
}
2015-07-24 04:48:10 +02:00
return list;
2015-07-24 01:40:54 +02:00
}
2015-08-19 21:25:18 +02:00
protected override bool IsValidChannelId(string channelId)
{
2015-10-05 05:24:24 +02:00
if (string.IsNullOrWhiteSpace(channelId))
{
throw new ArgumentNullException("channelId");
}
2015-08-19 21:25:18 +02:00
return channelId.StartsWith(ChannelIdPrefix, StringComparison.OrdinalIgnoreCase);
}
2016-09-25 20:39:13 +02:00
protected override async Task<LiveStream> GetChannelStream(TunerHostInfo info, string channelId, string streamId, CancellationToken cancellationToken)
2015-07-24 01:40:54 +02:00
{
2016-09-25 20:39:13 +02:00
var profile = streamId.Split('_')[0];
Logger.Info("GetChannelStream: channel id: {0}. stream id: {1} profile: {2}", channelId, streamId, profile);
2015-09-01 21:18:25 +02:00
2015-08-16 20:37:53 +02:00
if (!channelId.StartsWith(ChannelIdPrefix, StringComparison.OrdinalIgnoreCase))
{
2015-10-14 04:41:46 +02:00
throw new ArgumentException("Channel not found");
2015-08-16 20:37:53 +02:00
}
2016-02-24 19:45:11 +01:00
var hdhrId = GetHdHrIdFromChannelId(channelId);
2015-08-16 20:37:53 +02:00
2016-09-25 20:39:13 +02:00
var mediaSource = await GetMediaSource(info, hdhrId, profile).ConfigureAwait(false);
2016-10-12 20:23:09 +02:00
var liveStream = new HdHomerunLiveStream(mediaSource, streamId, _fileSystem, _httpClient, Logger, Config.ApplicationPaths, _appHost);
liveStream.EnableStreamSharing = true;
return liveStream;
2015-07-24 01:40:54 +02:00
}
2015-07-23 15:23:22 +02:00
public async Task Validate(TunerHostInfo info)
{
2016-03-08 06:00:03 +01:00
if (!info.IsEnabled)
2015-08-24 04:08:20 +02:00
{
2016-03-08 06:00:03 +01:00
return;
}
2016-09-30 08:50:06 +02:00
lock (_modelCache)
{
_modelCache.Clear();
}
2016-07-08 05:22:16 +02:00
try
2016-03-08 06:00:03 +01:00
{
2016-07-08 05:22:16 +02:00
// Test it by pulling down the lineup
using (var stream = await _httpClient.Get(new HttpRequestOptions
{
Url = string.Format("{0}/discover.json", GetApiUrl(info, false)),
2016-10-06 20:55:01 +02:00
CancellationToken = CancellationToken.None,
BufferContent = false
2016-07-08 05:22:16 +02:00
}))
{
var response = JsonSerializer.DeserializeFromStream<DiscoverResponse>(stream);
info.DeviceId = response.DeviceID;
}
}
catch (HttpException ex)
2016-03-08 06:00:03 +01:00
{
2016-07-08 05:22:16 +02:00
if (ex.StatusCode.HasValue && ex.StatusCode.Value == System.Net.HttpStatusCode.NotFound)
{
// HDHR4 doesn't have this api
return;
}
2016-03-08 06:00:03 +01:00
2016-07-08 05:22:16 +02:00
throw;
2015-08-24 04:08:20 +02:00
}
2015-07-23 15:23:22 +02:00
}
2015-10-30 17:40:12 +01:00
protected override async Task<bool> IsAvailableInternal(TunerHostInfo tuner, string channelId, CancellationToken cancellationToken)
{
var info = await GetTunerInfos(tuner, cancellationToken).ConfigureAwait(false);
return info.Any(i => i.Status == LiveTvTunerStatus.Available);
}
2016-02-28 22:31:54 +01:00
public class DiscoverResponse
{
public string FriendlyName { get; set; }
public string ModelNumber { get; set; }
public string FirmwareName { get; set; }
public string FirmwareVersion { get; set; }
public string DeviceID { get; set; }
public string DeviceAuth { get; set; }
public string BaseURL { get; set; }
public string LineupURL { get; set; }
}
2015-07-20 20:32:55 +02:00
}
}