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

GetAudioCommentary() protected method

protected GetAudioCommentary ( BluRayTitleAudio audio ) : string
audio BatchGuy.App.Parser.Models.BluRayTitleAudio
return string
        protected string GetAudioCommentary(BluRayTitleAudio audio)
        {
            string commentary = string.Empty;
            if (audio.IsCommentary)
                commentary = "-commentary";
            return commentary;
        }