public async Task User_can_download_a_video_by_merging_best_streams_into_a_single_ogg_file() { // Arrange var youtube = new YoutubeClient(); var outputFilePath = Path.ChangeExtension(_tempOutputFixture.GetTempFilePath(), "ogg"); // Act await youtube.Videos.DownloadAsync("AI7ULzgf8RU", outputFilePath); // Assert MediaFormat.IsOggFile(outputFilePath).Should().BeTrue(); }