2014-06-17 09:03:14 -07:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-03-30 09:49:40 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Encoder
|
|
|
|
|
{
|
|
|
|
|
public static class EncodingUtils
|
|
|
|
|
{
|
2014-06-16 18:56:23 -07:00
|
|
|
|
public static string GetInputArgument(List<string> inputFiles, MediaProtocol protocol)
|
2014-03-30 09:49:40 -07:00
|
|
|
|
{
|
2014-06-16 18:56:23 -07:00
|
|
|
|
if (protocol == MediaProtocol.Http)
|
2014-03-30 09:49:40 -07:00
|
|
|
|
{
|
2014-06-16 18:56:23 -07: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 09:49:40 -07:00
|
|
|
|
}
|
2014-10-16 21:52:41 -07:00
|
|
|
|
if (protocol == MediaProtocol.Rtsp)
|
|
|
|
|
{
|
|
|
|
|
var url = inputFiles.First();
|
|
|
|
|
|
|
|
|
|
return string.Format("\"{0}\"", url);
|
|
|
|
|
}
|
2014-03-30 09:49:40 -07:00
|
|
|
|
|
|
|
|
|
return GetConcatInputArgument(inputFiles);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the concat input argument.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputFiles">The input files.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2014-04-19 22:21:08 -07:00
|
|
|
|
private static string GetConcatInputArgument(IReadOnlyList<string> inputFiles)
|
2014-03-30 09:49:40 -07:00
|
|
|
|
{
|
|
|
|
|
// Get all streams
|
|
|
|
|
// If there's more than one we'll need to use the concat command
|
|
|
|
|
if (inputFiles.Count > 1)
|
|
|
|
|
{
|
2015-01-03 12:38:22 -07:00
|
|
|
|
var files = string.Join("|", inputFiles.Select(NormalizePath).ToArray());
|
2014-03-30 09:49:40 -07:00
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2015-01-03 12:38:22 -07:00
|
|
|
|
// Quotes are valid path characters in linux and they need to be escaped here with a leading \
|
|
|
|
|
path = NormalizePath(path);
|
|
|
|
|
|
2014-03-30 09:49:40 -07:00
|
|
|
|
return string.Format("file:\"{0}\"", path);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-03 12:38:22 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Normalizes the path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
private static string NormalizePath(string path)
|
|
|
|
|
{
|
|
|
|
|
// Quotes are valid path characters in linux and they need to be escaped here with a leading \
|
|
|
|
|
return path.Replace("\"", "\\\"");
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-30 09:49:40 -07:00
|
|
|
|
public static string GetProbeSizeArgument(bool isDvd)
|
|
|
|
|
{
|
|
|
|
|
return isDvd ? "-probesize 1G -analyzeduration 200M" : string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|