207 lines
5.1 KiB
JavaScript
207 lines
5.1 KiB
JavaScript
'use strict';
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const path_1 = require("path");
|
|
const fs_extra_1 = require("fs-extra");
|
|
const exec_1 = require("exec");
|
|
let system = {};
|
|
let TMPDIR;
|
|
/**
|
|
* Add padding to a number to 5 places. Return a string.
|
|
*
|
|
* @param {integer} i Integer to pad
|
|
*
|
|
* @returns {string} Padded string
|
|
**/
|
|
function padded_frame(i) {
|
|
let len = (i + '').length;
|
|
let str = i + '';
|
|
for (let x = 0; x < 5 - len; x++) {
|
|
str = '0' + str;
|
|
}
|
|
return str;
|
|
}
|
|
/**
|
|
* Render a single frame from a video or image to a png.
|
|
*
|
|
* @param {object} state State object containing file data
|
|
* @param {object} light Object containing color information for frame
|
|
*
|
|
* @returns {string} Path of frame
|
|
**/
|
|
async function frame(state, light) {
|
|
const frameNum = state.frame;
|
|
const video = state.path;
|
|
const w = state.info.width;
|
|
const h = state.info.height;
|
|
const padded = padded_frame(frameNum);
|
|
let ext = 'tif';
|
|
let rgb = light.color;
|
|
let tmpoutput;
|
|
let cmd;
|
|
let output;
|
|
let cmd2;
|
|
let output2;
|
|
let scale = '';
|
|
if (w && h) {
|
|
scale = `,scale=${w}:${h}`;
|
|
}
|
|
//console.dir(state)
|
|
//if (system.platform !== 'nix') {
|
|
ext = 'png';
|
|
//}
|
|
tmpoutput = path_1.join(TMPDIR, `export-${padded}.${ext}`);
|
|
rgb = rgb.map((e) => {
|
|
return parseInt(e);
|
|
});
|
|
//
|
|
cmd = `ffmpeg -y -i "${video}" -vf "select='gte(n\\,${frameNum})'${scale}" -vframes 1 -compression_algo raw -pix_fmt rgb24 "${tmpoutput}"`;
|
|
cmd2 = `convert "${tmpoutput}" -resize ${w}x${h} -size ${w}x${h} xc:"rgb(${rgb[0]},${rgb[1]},${rgb[2]})" +swap -compose Darken -composite "${tmpoutput}"`;
|
|
//ffmpeg -i "${video}" -ss 00:00:07.000 -vframes 1 "export-${time}.jpg"
|
|
//ffmpeg -i "${video}" -compression_algo raw -pix_fmt rgb24 "export-%05d.tiff"
|
|
//-vf "select=gte(n\,${frame})" -compression_algo raw -pix_fmt rgb24 "export-${padded}.png"
|
|
try {
|
|
console.log(cmd);
|
|
output = await exec_1.exec(cmd);
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
if (output && output.stdout)
|
|
console.log(`"${output.stdout}"`);
|
|
if (rgb[0] !== 255 || rgb[1] !== 255 || rgb[2] !== 255) {
|
|
try {
|
|
console.log(cmd2);
|
|
output2 = await exec_1.exec(cmd2);
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
}
|
|
if (output2 && output2.stdout)
|
|
console.log(`"${output2.stdout}"`);
|
|
return tmpoutput;
|
|
}
|
|
/**
|
|
* Render all frames in a video to the temp directory.
|
|
* Not in use.
|
|
*
|
|
* @param {string} video Path to video
|
|
* @param {object} obj Not sure
|
|
*
|
|
* @returns {?}
|
|
**/
|
|
async function frames(video, obj) {
|
|
const tmppath = TMPDIR;
|
|
let ext = 'tif';
|
|
let tmpoutput;
|
|
//if (system.platform !== 'nix') {
|
|
ext = 'png';
|
|
//}
|
|
tmpoutput = path_1.join(tmppath, `export-%05d.${ext}`);
|
|
try {
|
|
await fs_extra_1.mkdir(tmppath);
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
//ffmpeg -i "${video}" -compression_algo raw -pix_fmt rgb24 "${tmpoutput}"
|
|
}
|
|
/**
|
|
* Clears a specific frame from the tmp directory
|
|
*
|
|
* @param {integer} frame Integer of frame to clear
|
|
*
|
|
* @returns {boolean} True if successful, false if not
|
|
**/
|
|
async function clear(frame) {
|
|
const padded = padded_frame(frame);
|
|
let ext = 'tif';
|
|
let tmppath;
|
|
let tmpoutput;
|
|
let cmd;
|
|
let fileExists;
|
|
//if (system.platform !== 'nix') {
|
|
ext = 'png';
|
|
//}
|
|
tmppath = path_1.join(TMPDIR, `export-${padded}.${ext}`);
|
|
try {
|
|
fileExists = await fs_extra_1.exists(tmppath);
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
if (!fs_extra_1.exists)
|
|
return false;
|
|
try {
|
|
await fs_extra_1.unlink(tmppath);
|
|
console.log(`Cleared frame ${tmppath}`);
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
return true;
|
|
}
|
|
/**
|
|
* Delete all frames in temp directory.
|
|
*
|
|
**/
|
|
async function clearAll() {
|
|
const tmppath = TMPDIR;
|
|
let files;
|
|
try {
|
|
files = await fs_extra_1.readdir(tmppath);
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
if (files) {
|
|
files.forEach(async (file, index) => {
|
|
try {
|
|
await fs_extra_1.unlink(path_1.join(tmppath, file));
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
/**
|
|
* Checks if mcopy temp directory exists. If it doesn't,
|
|
* create it.
|
|
**/
|
|
async function checkDir() {
|
|
let fileExists;
|
|
try {
|
|
fileExists = await fs_extra_1.exists(TMPDIR);
|
|
}
|
|
catch (err) {
|
|
console.error('Error checking for tmp dir', err);
|
|
}
|
|
if (!fileExists) {
|
|
try {
|
|
await fs_extra_1.mkdir(TMPDIR);
|
|
console.log(`Created tmpdir ${TMPDIR}`);
|
|
}
|
|
catch (err) {
|
|
console.error('Error creating tmp dir', err);
|
|
}
|
|
}
|
|
try {
|
|
await clearAll();
|
|
}
|
|
catch (err) {
|
|
console.error(err);
|
|
}
|
|
}
|
|
module.exports = (sys) => {
|
|
system = sys;
|
|
TMPDIR = path_1.join(system.tmp, 'mcopy_digital');
|
|
checkDir();
|
|
return {
|
|
frames,
|
|
frame,
|
|
clear,
|
|
clearAll
|
|
};
|
|
};
|
|
//# sourceMappingURL=index.js.map
|