public Resolution CalculateSize(TranscoderProfile profile, decimal displayAspectRatio) { return Resolution.Calculate(displayAspectRatio, profile.MaxOutputWidth, profile.MaxOutputHeight, 2); }
public Resolution CalculateSize(TranscoderProfile profile, MediaSource source, WebMediaInfo info = null) { try { if (!profile.HasVideoStream) return new Resolution(0, 0); if (info == null) { info = MediaInfoHelper.LoadMediaInfoOrSurrogate(source); } if (info.VideoStreams.Count > 0) { var res = Resolution.Calculate(info.VideoStreams.First().DisplayAspectRatio, profile.MaxOutputWidth, profile.MaxOutputHeight, 2); if (res.Width == 0 && res.Height == 0) return new Resolution(info.VideoStreams.First().Width, info.VideoStreams.First().Height); return res; } } catch (Exception ex) { Log.Warn("Failed to calculate size of output stream", ex); } // default return Resolution.Calculate(MediaInfoHelper.DEFAULT_ASPECT_RATIO, profile.MaxOutputWidth, profile.MaxOutputHeight, 2); }
public string StartStream(string identifier, TranscoderProfile profile, long position = 0, int audioId = STREAM_DEFAULT, int subtitleId = STREAM_DEFAULT) { // there's a theoretical race condition here between the insert in InitStream() and this, but the client should really, really // always have a positive result from InitStream() before continuing, so their bad that the stream failed. if (!Streams.ContainsKey(identifier) || Streams[identifier] == null) { Log.Warn("Stream requested for invalid identifier {0}", identifier); return null; } if (profile == null) { StreamLog.Warn(identifier, "Stream requested for non-existent profile"); return null; } try { lock (Streams[identifier]) { StreamLog.Debug(identifier, "StartStream for file {0}", Streams[identifier].Context.Source.GetDebugName()); // initialize stream and context ActiveStream stream = Streams[identifier]; stream.Context.StartPosition = position; stream.Context.Profile = profile; stream.UseActivityForTimeout = profile.Transport == "httplive"; stream.Context.MediaInfo = MediaInfoHelper.LoadMediaInfoOrSurrogate(stream.Context.Source); stream.Context.OutputSize = CalculateSize(stream.Context); StreamLog.Debug(identifier, "Using {0} as output size for stream {1}", stream.Context.OutputSize, identifier); Reference<WebTranscodingInfo> infoRef = new Reference<WebTranscodingInfo>(() => stream.Context.TranscodingInfo, x => { stream.Context.TranscodingInfo = x; }); sharing.StartStream(stream.Context, infoRef); // get transcoder stream.Transcoder = (ITranscoder)Activator.CreateInstance(Type.GetType(profile.Transcoder)); stream.Transcoder.Identifier = identifier; stream.Transcoder.Context = stream.Context; // get audio and subtitle id if (stream.Context.MediaInfo.AudioStreams.Any(x => x.ID == audioId)) { stream.Context.AudioTrackId = stream.Context.MediaInfo.AudioStreams.First(x => x.ID == audioId).ID; } else if (audioId == STREAM_DEFAULT) { string preferredLanguage = Configuration.Streaming.DefaultAudioStream; if (stream.Context.MediaInfo.AudioStreams.Any(x => x.Language == preferredLanguage)) { stream.Context.AudioTrackId = stream.Context.MediaInfo.AudioStreams.First(x => x.Language == preferredLanguage).ID; } else if (preferredLanguage != "none" && stream.Context.MediaInfo.AudioStreams.Any()) { stream.Context.AudioTrackId = stream.Context.MediaInfo.AudioStreams.First().ID; } } if (stream.Context.MediaInfo.SubtitleStreams.Any(x => x.ID == subtitleId)) { stream.Context.SubtitleTrackId = stream.Context.MediaInfo.SubtitleStreams.First(x => x.ID == subtitleId).ID; } else if (subtitleId == STREAM_DEFAULT) { string preferredLanguage = Configuration.Streaming.DefaultSubtitleStream; if (stream.Context.MediaInfo.SubtitleStreams.Any(x => x.Language == preferredLanguage)) { stream.Context.SubtitleTrackId = stream.Context.MediaInfo.SubtitleStreams.First(x => x.Language == preferredLanguage).ID; } else if (preferredLanguage == "external" && stream.Context.MediaInfo.SubtitleStreams.Any(x => x.Filename != null)) { stream.Context.SubtitleTrackId = stream.Context.MediaInfo.SubtitleStreams.First(x => x.Filename != null).ID; } else if (preferredLanguage == "first" && stream.Context.MediaInfo.SubtitleStreams.Any()) { stream.Context.SubtitleTrackId = stream.Context.MediaInfo.SubtitleStreams.First().ID; } } StreamLog.Debug(identifier, "Final stream selection: audioId={0}, subtitleId={1}", stream.Context.AudioTrackId, stream.Context.SubtitleTrackId); // build the pipeline stream.Context.Pipeline = new Pipeline(identifier); stream.Context.TranscodingInfo = new WebTranscodingInfo(); stream.Transcoder.BuildPipeline(); // start the pipeline, but imm bool assembleResult = stream.Context.Pipeline.Assemble(); bool startResult = assembleResult ? stream.Context.Pipeline.Start() : true; if (!assembleResult || !startResult) { StreamLog.Warn(identifier, "Starting pipeline failed"); return null; } // get the final stream and return it Stream finalStream = Streams[identifier].Context.Pipeline.GetFinalStream(); if (finalStream != null) { Streams[identifier].OutputStream = new ReadTrackingStreamWrapper(finalStream); } StreamLog.Info(identifier, "Started stream"); Streams[identifier].LastActivity = DateTime.Now; return stream.Transcoder.GetStreamURL(); } } catch (Exception ex) { StreamLog.Error(identifier, "Failed to start stream", ex); return null; } }