You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.plugin = exports.details = void 0;
|
|
/* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */
|
|
var details = function () { return ({
|
|
name: 'Check 10 Bit Video',
|
|
description: 'Check if a file is 10 bit video',
|
|
style: {
|
|
borderColor: 'orange',
|
|
},
|
|
tags: 'video',
|
|
isStartPlugin: false,
|
|
pType: '',
|
|
requiresVersion: '2.11.01',
|
|
sidebarPosition: -1,
|
|
icon: 'faQuestion',
|
|
inputs: [],
|
|
outputs: [
|
|
{
|
|
number: 1,
|
|
tooltip: 'File is 10 bit video',
|
|
},
|
|
{
|
|
number: 2,
|
|
tooltip: 'File is not 10 bit video',
|
|
},
|
|
],
|
|
}); };
|
|
exports.details = details;
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
var plugin = function (args) {
|
|
var _a, _b;
|
|
var lib = require('../../../../../methods/lib')();
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign
|
|
args.inputs = lib.loadDefaultValues(args.inputs, details);
|
|
var is10Bit = false;
|
|
if (Array.isArray((_b = (_a = args === null || args === void 0 ? void 0 : args.inputFileObj) === null || _a === void 0 ? void 0 : _a.ffProbeData) === null || _b === void 0 ? void 0 : _b.streams)) {
|
|
for (var i = 0; i < args.inputFileObj.ffProbeData.streams.length; i += 1) {
|
|
var stream = args.inputFileObj.ffProbeData.streams[i];
|
|
if (stream.codec_type === 'video'
|
|
&& (stream.bits_per_raw_sample === 10
|
|
|| stream.pix_fmt === 'yuv420p10le')) {
|
|
is10Bit = true;
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
throw new Error('File has not stream data');
|
|
}
|
|
return {
|
|
outputFileObj: args.inputFileObj,
|
|
outputNumber: is10Bit ? 1 : 2,
|
|
variables: args.variables,
|
|
};
|
|
};
|
|
exports.plugin = plugin;
|