Hello people,
there's an interesting conference at this page
http://www.radioradicale.it/scheda/3...deuropa-subito
From the page source I extracted this piece:
Code:
,streams: [{"url": 'mp4:roma/2010/01//FL610753.f4v',"duration": 14858,"start": 19} ]
,netConnectionUrl: 'rtmp://video-3.radioradicale.it:1935/store-51/'
};
but this command line doesn't work as the requested file seems to be non existent
Code:
mplayer -streamdump rtmp://video-3.radioradicale.it:1935/store-51/mp4:roma/2010/01//FL610753.f4v
I used wireshark to take a look at the two sessions (the one originating from Firefox and the one originated from the command line above) and they are slightly different
The working session, the one from Firefox, shows a couple of lines like this
play('mp4:roma/2010/01/FL610753.f4v')
instead the one from mplayer shows
connect('store-51/mp4:roma')
...
play('mp4/2010/01/FL.610753f')
the last one has no file extension and it misses the "roma" part after the colon. Also, the app URL (the one in the connect function) includes the "mp4:roma" part and it shouldn't
So I suppose that's why it doesn't find the file
How do I instruct mplayer to decompose the URL in the same way as the embedded flowplayer does ?
Or what else could I attempt ?
Thanks