qsv 10 bit

This commit is contained in:
HaveAGitGat 2023-10-09 07:39:53 +01:00
parent bd1638716c
commit 4775ce37a6
2 changed files with 14 additions and 2 deletions

View file

@ -31,7 +31,13 @@ var plugin = function (args) {
for (var i = 0; i < args.variables.ffmpegCommand.streams.length; i += 1) {
var stream = args.variables.ffmpegCommand.streams[i];
if (stream.codec_type === 'video') {
stream.outputArgs.push('-pix_fmt:v:{outputTypeIndex}', 'p010le', '-profile:v:{outputTypeIndex}', 'main10');
stream.outputArgs.push('-profile:v:{outputTypeIndex}', 'main10');
if (stream.outputArgs.includes('qsv')) {
stream.outputArgs.push('-vf', 'scale_qsv=format=p010le');
}
else {
stream.outputArgs.push('-pix_fmt:v:{outputTypeIndex}', 'p010le');
}
}
}
return {

View file

@ -35,7 +35,13 @@ const plugin = (args:IpluginInputArgs):IpluginOutputArgs => {
for (let i = 0; i < args.variables.ffmpegCommand.streams.length; i += 1) {
const stream = args.variables.ffmpegCommand.streams[i];
if (stream.codec_type === 'video') {
stream.outputArgs.push('-pix_fmt:v:{outputTypeIndex}', 'p010le', '-profile:v:{outputTypeIndex}', 'main10');
stream.outputArgs.push('-profile:v:{outputTypeIndex}', 'main10');
if (stream.outputArgs.includes('qsv')) {
stream.outputArgs.push('-vf', 'scale_qsv=format=p010le');
} else {
stream.outputArgs.push('-pix_fmt:v:{outputTypeIndex}', 'p010le');
}
}
}