feat(extract-subs): don't log when no subs in video file
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-01-28 01:36:06 -05:00
parent d624d33b01
commit c9cdbaf525

View file

@ -123,8 +123,6 @@ const main = async(): Promise<void> => {
const data = await ffprobe(videoPath);
if (!data?.streams) {
console.error('Couldn\'t find streams in video file');
return;
}