BatchGuy.App.Eac3To.Abstracts.AbstractEAC3ToOutputNamingService.GetSubtitleCommentary C# (CSharp) Method

GetSubtitleCommentary() protected method

protected GetSubtitleCommentary ( BluRayTitleSubtitle subtitle ) : string
subtitle BatchGuy.App.Parser.Models.BluRayTitleSubtitle
return string
        protected string GetSubtitleCommentary(BluRayTitleSubtitle subtitle)
        {
            string commentary = string.Empty;
            if (subtitle.IsCommentary)
                commentary = "-commentary";
            return commentary;
        }