Html Agility Pack finding video source
See the question and my original answer on StackOverflowDim node = doc.DocumentNode.SelectSingleNode("//object/param[@name='movie']").Attributes("value").Value
should give you what you need
Dim node = doc.DocumentNode.SelectSingleNode("//object/param[@name='movie']").Attributes("value").Value
should give you what you need