Esempio n. 1
0
        public string[] GetPlayableStreamFileNames()
        {
            var videoType = VideoType;

            if (videoType == VideoType.Iso && IsoType == Model.Entities.IsoType.BluRay)
            {
                videoType = VideoType.BluRay;
            }
            else if (videoType == VideoType.Iso && IsoType == Model.Entities.IsoType.Dvd)
            {
                videoType = VideoType.Dvd;
            }
            else
            {
                return(new string[] { });
            }
            return(MediaEncoder.GetPlayableStreamFileNames(Path, videoType));
        }