// e.g. -> 4/13. The Doctor's Wife: Science fiction drama. When he follows a Time Lord distress signal, the Doctor puts Amy, Rory and his beloved TARDIS in grave danger. Also in HD. [AD,S]
// e.g. -> CBeebies Bedtime Hour. The Mystery: Animated adventures of two friends who live on an island in the middle of the big city. Some of Abney and Teal's favourite objects are missing. [S]
if(string.IsNullOrWhiteSpace(subTitle)&&!string.IsNullOrWhiteSpace(description)&&description.Substring(0,Math.Min(description.Length,MaxSubtitleDescriptionExtractionLength)).Contains(":"))// Check within the Subtitle size limit, otherwise from description it can get too long creating an invalid filename
if(string.IsNullOrWhiteSpace(subTitle)
&&!string.IsNullOrWhiteSpace(description)
&&description.AsSpan().Slice(0,Math.Min(description.Length,MaxSubtitleDescriptionExtractionLength)).IndexOf(':')!=-1)// Check within the Subtitle size limit, otherwise from description it can get too long creating an invalid filename