Compare commits

...

2 Commits

Author SHA1 Message Date
70002b2ba7 more messaging 2025-06-24 17:46:26 -04:00
5d7f9cd8bc Add rename command for movies 2025-06-24 17:38:43 -04:00
3 changed files with 21 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import { help } from "./commands/help.js";
import { preferAudio } from "./commands/prefer-audio.js";
import { preferSubtitles } from "./commands/prefer-subs.js";
import { removeSubtitles } from "./commands/remove-subs.js";
import { forceRename } from "./commands/rename.js";
import { saveSubtitlesToFile } from "./commands/save-subtitles-to-file.js";
import { convertToMkv } from "./commands/to-mkv.js";
import { convertToMp4 } from "./commands/to-mp4.js";
@ -25,10 +26,16 @@ export const CommandConfig = [
},
{
name: 'Finalize File Names',
commands: ['-o', '-output-as', '-rename'],
commands: ['-o', '-output-as', '-rename-series'],
params: ['ShowName'],
func: finalizeFileNames,
},
{
name: 'Force Rename',
commands: ['-rn', '-rename', '-force-rename'],
params: ['Name'],
func:forceRename,
},
{
name: 'Add Subtitle Track',
commands: ['-s', '-subtitle', '-add-subtitles'],

10
src/commands/rename.js Normal file
View File

@ -0,0 +1,10 @@
import fs from 'fs';
import { getFilenameObject } from '../parsing/parse-filename.js';
export async function forceRename(inputDir, inputFile, outputDir, { Name }) {
const filenameObject = getFilenameObject(inputFile);
const toWrite = `${outputDir}${Name}${filenameObject.extension}`;
fs.cpSync(`${inputDir}${inputFile}`, `${toWrite}`);
}

View File

@ -49,6 +49,8 @@ export function CreatePipeline(inputParams) {
}
// Copy /temp/Step-L/* -> /output
console.log(`Copying to ${Folders.OUTPUT} ...`);
if(fs.existsSync(Folders.OUTPUT)) {
fs.rmSync(Folders.OUTPUT, { recursive: true, force: true });
}
@ -56,6 +58,7 @@ export function CreatePipeline(inputParams) {
fs.cpSync(getTempFolderName(this.commands.length), Folders.OUTPUT, { recursive: true });
// remove /temp/*
console.log('Cleaning up temporary files');
fs.rmSync(Folders.TEMP, { recursive: true, force: true });
},
};