Add rename command for movies
This commit is contained in:
parent
ca4e4dcf5b
commit
5d7f9cd8bc
@ -6,6 +6,7 @@ import { help } from "./commands/help.js";
|
|||||||
import { preferAudio } from "./commands/prefer-audio.js";
|
import { preferAudio } from "./commands/prefer-audio.js";
|
||||||
import { preferSubtitles } from "./commands/prefer-subs.js";
|
import { preferSubtitles } from "./commands/prefer-subs.js";
|
||||||
import { removeSubtitles } from "./commands/remove-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 { saveSubtitlesToFile } from "./commands/save-subtitles-to-file.js";
|
||||||
import { convertToMkv } from "./commands/to-mkv.js";
|
import { convertToMkv } from "./commands/to-mkv.js";
|
||||||
import { convertToMp4 } from "./commands/to-mp4.js";
|
import { convertToMp4 } from "./commands/to-mp4.js";
|
||||||
@ -25,10 +26,16 @@ export const CommandConfig = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Finalize File Names',
|
name: 'Finalize File Names',
|
||||||
commands: ['-o', '-output-as', '-rename'],
|
commands: ['-o', '-output-as', '-rename-series'],
|
||||||
params: ['ShowName'],
|
params: ['ShowName'],
|
||||||
func: finalizeFileNames,
|
func: finalizeFileNames,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Force Rename',
|
||||||
|
commands: ['-rn', '-rename', '-force-rename'],
|
||||||
|
params: ['Name'],
|
||||||
|
func:forceRename,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Add Subtitle Track',
|
name: 'Add Subtitle Track',
|
||||||
commands: ['-s', '-subtitle', '-add-subtitles'],
|
commands: ['-s', '-subtitle', '-add-subtitles'],
|
||||||
|
|||||||
10
src/commands/rename.js
Normal file
10
src/commands/rename.js
Normal 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}`);
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user