Grazie per la risposta!

Io fin ora ho preparato questo:

codice:
$.getJSON('http://api.new.livestream.com/accounts/57501?callback=?', callback_event);
function callback_event(data){
$.getJSON('http://api.new.livestream.com/accounts/57501/events/'+data.past_events.data[0].id+'?callback=?', callback_play);
function callback_play(data){
var xml_url = data.stream_info.play_url;

//aprire file xml

}
}
la variabile xml_url è l'indirizzo del file xml. io ora ho la necessita di estrarre da questo file xml il contenuto del tag video.

Spero di essere stato chiaro