feat(node-syncsub): don't resync files
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
c9ded1c22d
commit
f184ffa4bf
1 changed files with 17 additions and 3 deletions
|
@ -33,6 +33,14 @@ const main = () => {
|
||||||
lang = 'eng';
|
lang = 'eng';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const OUT_FILE = `${BASE_NAME}.synced.${lang.substring(0, 2)}.srt`;
|
||||||
|
const OUT_PATH = `${DIR}/${OUT_FILE}`;
|
||||||
|
|
||||||
|
if (files.includes(OUT_FILE)) {
|
||||||
|
console.warn('Synced subtitles already exist, not doing anything');
|
||||||
|
process.exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
const availLangs = data.streams
|
const availLangs = data.streams
|
||||||
.filter((s) => s.codec_type === 'audio')
|
.filter((s) => s.codec_type === 'audio')
|
||||||
.map((s) => s['tags']['language']);
|
.map((s) => s['tags']['language']);
|
||||||
|
@ -45,8 +53,8 @@ const main = () => {
|
||||||
'--ref-stream-by-type "audio"',
|
'--ref-stream-by-type "audio"',
|
||||||
|
|
||||||
`--sub '${FILE}'`,
|
`--sub '${FILE}'`,
|
||||||
`--out '${DIR}/${BASE_NAME}.synced.${lang.substring(0, 2)}.srt'`,
|
`--out '${OUT_PATH}'`,
|
||||||
// `--out '${FILE}'`,
|
// `--out '${PATH}'`,
|
||||||
`--ref '${VIDEO}'`,
|
`--ref '${VIDEO}'`,
|
||||||
|
|
||||||
// '--overwrite',
|
// '--overwrite',
|
||||||
|
@ -61,8 +69,14 @@ const main = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (FILE) {
|
if (FILE) {
|
||||||
|
if (FILE.includes('synced.srt')) {
|
||||||
|
console.warn('Won\'t sync already synced subtitles, not doing anything');
|
||||||
|
process.exit(0);
|
||||||
|
}
|
||||||
|
else {
|
||||||
main();
|
main();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
console.error('Error: no argument passed');
|
console.error('Error: no argument passed');
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
|
Loading…
Reference in a new issue