I try to get "has_b_frames" value of video, but failed at select xml node.
The code:
var videoInfo = new FFProbe();
var root = videoInfo.GetMediaInfo(filename).Result.CreateNavigator();
root.Select("/ffprobe/streams");
root.MoveToNextAttribute();
the value of root is
root value 1 and root value 2 respectively,
and the value of outerxml is outerxml value with XML visualizer.
So how can I get the attribute "has_b_frames" ?
Thank you