2014-06-17 16:03:14 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-03-30 16:49:40 +00:00
|
|
|
|
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
|
|
|
|
{
|
2017-01-18 06:05:33 +00:00
|
|
|
|
if (protocol != MediaProtocol.File)
|
2016-10-11 06:46:59 +00:00
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
2015-01-03 19:38:22 +00:00
|
|
|
|
var files = string.Join("|", inputFiles.Select(NormalizePath).ToArray());
|
2014-03-30 16:49:40 +00: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)
|
|
|
|
|
{
|
2017-05-08 17:15:26 +00:00
|
|
|
|
if (path.IndexOf("://") != -1)
|
|
|
|
|
{
|
|
|
|
|
return string.Format("\"{0}\"", path);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-03 19:38:22 +00:00
|
|
|
|
// Quotes are valid path characters in linux and they need to be escaped here with a leading \
|
|
|
|
|
path = NormalizePath(path);
|
|
|
|
|
|
2014-03-30 16:49:40 +00:00
|
|
|
|
return string.Format("file:\"{0}\"", path);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-03 19:38:22 +00: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 16:49:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|