You would have to have something to parse it like:
if xml.parse(data)
videos=[]
for each object in xml.media
video={}
video.streamquality=[object.streamquality.gettext()]
video.streambitrate=[object.streambitrate.gettext().toint()]
video.streamurl=[object.streamurl.gettext]
videos.push(video)
end for
end if
video.SwitchingStrategy="full-adaptation"
and then feed that into your video playback function. But you should ideally have more data than just the videos, such as title, shortdescriptionLine1 and thumbnail images.
also, you need to check the device mode - if SDTV mode you would override the streamQuality with ["SD"] or playback will fail in SDTV mode.
- Joel