Skip to content

Commit

Permalink
Merge pull request #90 from Marnalas/flowPluginSetSubtitleDefaultStream
Browse files Browse the repository at this point in the history
Corrected logs
  • Loading branch information
Marnalas authored Jan 10, 2025
2 parents bce2171 + a6e0d5b commit 18f26cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ var plugin = function (args) {
|| isDescriptiveSubtitleStream
|| isForcedSubtitleStream)) {
args.jobLog("Stream ".concat(index, " (language ").concat(streamLanguage, ", descriptive ").concat(isDescriptiveSubtitleStream, ", ")
+ "forced ".concat(isForcedSubtitleStream, " set has not default"));
+ "forced ".concat(isForcedSubtitleStream, ") set has not default"));
stream.outputArgs.push("-c:".concat(index), 'copy', "-disposition:".concat(index), getFFMPEGDisposition(false, dispositions));
shouldProcess = true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const plugin = (args: IpluginInputArgs): IpluginOutputArgs => {
|| isDescriptiveSubtitleStream
|| isForcedSubtitleStream)) {
args.jobLog(`Stream ${index} (language ${streamLanguage}, descriptive ${isDescriptiveSubtitleStream}, `
+ `forced ${isForcedSubtitleStream} set has not default`);
+ `forced ${isForcedSubtitleStream}) set has not default`);
stream.outputArgs.push(
`-c:${index}`,
'copy',
Expand Down

0 comments on commit 18f26cc

Please sign in to comment.