Add rename command for movies

This commit is contained in:
walcutt 2025-06-24 17:38:43 -04:00
parent ca4e4dcf5b
commit 5d7f9cd8bc
2 changed files with 18 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}`);
}