mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 01:48:52 -07:00
Backport pull request #12575 from jellyfin/release-10.9.z
Fix subtitle and attachment extraction when input path contains quotes
Original-merge: 3c3ebe8344
Merged-by: Bond-009 <bond.009@outlook.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
e10b986ea0
commit
84b20afe1f
@ -284,7 +284,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||||||
|
|
||||||
if (extractableAttachmentIds.Count > 0)
|
if (extractableAttachmentIds.Count > 0)
|
||||||
{
|
{
|
||||||
await CacheAllAttachmentsInternal(mediaPath, inputFile, mediaSource, extractableAttachmentIds, cancellationToken).ConfigureAwait(false);
|
await CacheAllAttachmentsInternal(mediaPath, _mediaEncoder.GetInputArgument(inputFile, mediaSource), mediaSource, extractableAttachmentIds, cancellationToken).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@ -323,7 +323,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||||||
|
|
||||||
processArgs += string.Format(
|
processArgs += string.Format(
|
||||||
CultureInfo.InvariantCulture,
|
CultureInfo.InvariantCulture,
|
||||||
" -i \"{0}\" -t 0 -f null null",
|
" -i {0} -t 0 -f null null",
|
||||||
inputFile);
|
inputFile);
|
||||||
|
|
||||||
int exitCode;
|
int exitCode;
|
||||||
|
@ -529,11 +529,11 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
|||||||
List<MediaStream> subtitleStreams,
|
List<MediaStream> subtitleStreams,
|
||||||
CancellationToken cancellationToken)
|
CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
var inputPath = mediaSource.Path;
|
var inputPath = _mediaEncoder.GetInputArgument(mediaSource.Path, mediaSource);
|
||||||
var outputPaths = new List<string>();
|
var outputPaths = new List<string>();
|
||||||
var args = string.Format(
|
var args = string.Format(
|
||||||
CultureInfo.InvariantCulture,
|
CultureInfo.InvariantCulture,
|
||||||
"-i \"{0}\" -copyts",
|
"-i {0} -copyts",
|
||||||
inputPath);
|
inputPath);
|
||||||
|
|
||||||
foreach (var subtitleStream in subtitleStreams)
|
foreach (var subtitleStream in subtitleStreams)
|
||||||
@ -704,7 +704,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
|||||||
|
|
||||||
var processArgs = string.Format(
|
var processArgs = string.Format(
|
||||||
CultureInfo.InvariantCulture,
|
CultureInfo.InvariantCulture,
|
||||||
"-i \"{0}\" -copyts -map 0:{1} -an -vn -c:s {2} \"{3}\"",
|
"-i {0} -copyts -map 0:{1} -an -vn -c:s {2} \"{3}\"",
|
||||||
inputPath,
|
inputPath,
|
||||||
subtitleStreamIndex,
|
subtitleStreamIndex,
|
||||||
outputCodec,
|
outputCodec,
|
||||||
|
Loading…
Reference in New Issue
Block a user