Skip to content

Commit 40cf581

Browse files
committed
Update readme to discourage muxed streams
1 parent e343d44 commit 40cf581

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Readme.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ var duration = video.Duration; // 00:07:20
7878
Every YouTube video has a number of streams available, differing in containers, video quality, bitrate, framerate, and other parameters.
7979
Additionally, the streams are further divided into 3 categories based on their content:
8080

81-
- Muxed streams — contain both video and audio
81+
- ~~Muxed streams — contain both video and audio~~ (no longer provided by YouTube)
8282
- Audio-only streams — contain only audio
8383
- Video-only streams — contain only video
8484

@@ -110,13 +110,10 @@ using YoutubeExplode.Videos.Streams;
110110

111111
// ...
112112
113-
// Get highest quality muxed stream
114-
var streamInfo = streamManifest.GetMuxedStreams().GetWithHighestVideoQuality();
115-
116-
// ...or highest bitrate audio-only stream
113+
// Get the highest bitrate audio-only stream
117114
var streamInfo = streamManifest.GetAudioOnlyStreams().GetWithHighestBitrate();
118115

119-
// ...or highest quality MP4 video-only stream
116+
// ...or the highest quality MP4 video-only stream
120117
var streamInfo = streamManifest
121118
.GetVideoOnlyStreams()
122119
.Where(s => s.Container == Container.Mp4)

0 commit comments

Comments
 (0)