diff --git a/Community/Tdarr_Plugin_rr01_drpeppershaker_extract_subs_to_SRT.js b/Community/Tdarr_Plugin_rr01_drpeppershaker_extract_subs_to_SRT.js index d6869df6c..fad9fb495 100644 --- a/Community/Tdarr_Plugin_rr01_drpeppershaker_extract_subs_to_SRT.js +++ b/Community/Tdarr_Plugin_rr01_drpeppershaker_extract_subs_to_SRT.js @@ -57,7 +57,7 @@ const plugin = (file, librarySettings, inputs, otherArguments) => { return response; } - const subsArr = file.ffProbeData.streams.filter((row) => row.codec_name === 'subrip'); + const subsArr = file.ffProbeData.streams.filter((row) => (['subrip', 'ass', 'ssa', 'text'].includes(row.codec_name))); if (subsArr.length === 0) { response.infoLog += 'No subs in file to extract!\n';