2014-03-30 16:49:40 +00:00
|
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-06-17 01:56:23 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-03-30 16:49:40 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Encoder
|
|
|
|
|
{
|
|
|
|
|
public static class EncodingUtils
|
|
|
|
|
{
|
2014-06-17 01:56:23 +00:00
|
|
|
|
public static string GetInputArgument(List<string> inputFiles, MediaProtocol protocol)
|
2014-03-30 16:49:40 +00:00
|
|
|
|
{
|
2014-06-17 01:56:23 +00:00
|
|
|
|
if (protocol == MediaProtocol.Http)
|
2014-03-30 16:49:40 +00:00
|
|
|
|
{
|
2014-06-17 01:56:23 +00:00
|
|
|
|
var url = inputFiles.First();
|
|
|
|
|
|
|
|
|
|
return string.Format("\"{0}\"", url);
|
|
|
|
|
}
|
|
|
|
|
if (protocol == MediaProtocol.Rtmp)
|
|
|
|
|
{
|
|
|
|
|
var url = inputFiles.First();
|
|
|
|
|
|
|
|
|
|
return string.Format("\"{0}\"", url);
|
2014-03-30 16:49:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GetConcatInputArgument(inputFiles);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the concat input argument.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputFiles">The input files.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2014-04-20 05:21:08 +00:00
|
|
|
|
private static string GetConcatInputArgument(IReadOnlyList<string> inputFiles)
|
2014-03-30 16:49:40 +00:00
|
|
|
|
{
|
|
|
|
|
// 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)
|
|
|
|
|
{
|
2014-03-31 21:04:22 +00:00
|
|
|
|
var codec = request.AudioCodec ?? string.Empty;
|
|
|
|
|
|
|
|
|
|
if (audioStream.Channels > 2 && codec.IndexOf("wma", StringComparison.OrdinalIgnoreCase) != -1)
|
2014-03-30 16:49:40 +00:00
|
|
|
|
{
|
|
|
|
|
// 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|