12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using MediaBrowser.Controller.MediaEncoding;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.MediaInfo;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace MediaBrowser.MediaEncoding.Encoder
- {
- public static class EncodingUtils
- {
- public static string GetInputArgument(List<string> inputFiles, MediaProtocol protocol)
- {
- if (protocol == MediaProtocol.Http)
- {
- var url = inputFiles.First();
- return string.Format("\"{0}\"", url);
- }
- if (protocol == MediaProtocol.Rtmp)
- {
- var url = inputFiles.First();
- return string.Format("\"{0}\"", url);
- }
- return GetConcatInputArgument(inputFiles);
- }
- /// <summary>
- /// Gets the concat input argument.
- /// </summary>
- /// <param name="inputFiles">The input files.</param>
- /// <returns>System.String.</returns>
- private static string GetConcatInputArgument(IReadOnlyList<string> inputFiles)
- {
- // Get all streams
- // If there's more than one we'll need to use the concat command
- if (inputFiles.Count > 1)
- {
- var files = string.Join("|", inputFiles);
- return string.Format("concat:\"{0}\"", files);
- }
- // Determine the input path for video files
- return GetFileInputArgument(inputFiles[0]);
- }
- /// <summary>
- /// Gets the file input argument.
- /// </summary>
- /// <param name="path">The path.</param>
- /// <returns>System.String.</returns>
- private static string GetFileInputArgument(string path)
- {
- return string.Format("file:\"{0}\"", path);
- }
- public static string GetProbeSizeArgument(bool isDvd)
- {
- return isDvd ? "-probesize 1G -analyzeduration 200M" : string.Empty;
- }
- /// <summary>
- /// Gets the number of audio channels to specify on the command line
- /// </summary>
- /// <param name="request">The request.</param>
- /// <param name="audioStream">The audio stream.</param>
- /// <returns>System.Nullable{System.Int32}.</returns>
- public static int? GetNumAudioChannelsParam(EncodingOptions request, MediaStream audioStream)
- {
- if (audioStream != null)
- {
- var codec = request.AudioCodec ?? string.Empty;
- if (audioStream.Channels > 2 && codec.IndexOf("wma", StringComparison.OrdinalIgnoreCase) != -1)
- {
- // wmav2 currently only supports two channel output
- return 2;
- }
- }
- if (request.MaxAudioChannels.HasValue)
- {
- if (audioStream != null && audioStream.Channels.HasValue)
- {
- return Math.Min(request.MaxAudioChannels.Value, audioStream.Channels.Value);
- }
- return request.MaxAudioChannels.Value;
- }
- return request.AudioChannels;
- }
- }
- }
|