Hi there- is it possible to get a videos data, and instead of writing it to a path, write it to a MemoryStream instead? Thanks!
GetMediaStreamAsync
var stream = await YoutubeClient.GetMediaStreamAsync(info)
Or
DownloadMediaStreamAsync
var ms = new MemoryStream();
YoutubeClient.DownloadMediaStreamAsync(info, ms);
Wonderful! thank you!
Most helpful comment
GetMediaStreamAsync
var stream = await YoutubeClient.GetMediaStreamAsync(info)Or
DownloadMediaStreamAsync