VideoId: eHei739O3jw
var client = new YoutubeClient();
var streamInfoSet = await client.GetVideoMediaStreamInfosAsync("eHei739O3jw");
Debug Error in YoutubeClient.Video.cs at line 441:
var itag = streamInfoDic["itag"].ParseInt();
Now, I resolved by add code:
if (streamInfoDic.Count > 0)
{
var itag = streamInfoDic["itag"].ParseInt();
This video seems to only have one stream but I can't reproduce this issue.
Is this still reproducible for you?
Thank you !!! In new version code, everything's ok.
Great :)