Example #1
0
        public override ConversionInformation ConvertToStreamable()
        {
            var youTubeTrack = new YouTubeTrack
            {
                Duration       = Duration,
                Title          = Title,
                Uploader       = Uploader,
                YouTubeVideoId = _videoId
            };

            return(new ConversionInformation(youTubeTrack, Artist, null));
        }
Example #2
0
        public override ConversionInformation ConvertToStreamable()
        {
            var youTubeTrack = new YouTubeTrack
            {
                Duration = Duration,
                Title = Title,
                Uploader = Uploader,
                YouTubeVideoId = _videoId
            };

            return new ConversionInformation(youTubeTrack, Artist, null);
        }