Quote:
Originally Posted by e0nblue
Hello everyone,
I'm trying to write a plugin to view streams off the french-canadian site www.tou.tv for the XBMC software (a popular HTPC frontend).
Judging from what I read, I though that the tou.tv stream might be RTMPE (I'm not sure how to tell if it's RTMP or RTMPE), but I haven't been able to get rtmpdump to download them.
Here's an example video:
Code:
http://www.tou.tv/les-parent/S02E19
Once the main video starts (after the preroll video), GetFLV detects the following stream:
rtmp://medias-flash.tou.tv:443/ondemand/?auth=daEdrd3cTbycId7dDbiafbpdtbvbNcucrci-blE_Lu-T-9tsAzkGqBDE&aifp=v0001&slist=002/MOV/HR/2010-02-15_PARENT_0043_hr;002/MOV/MR/2010-02-15_PARENT_0043_mr;002/MOV/BR/2010-02-15_PARENT_0043_brmp4:002/MOV/HR/2010-02-15_PARENT_0043_hr.mov
Can anybody tell me what I did wrong? Any hints would be greatly appreciated 
|
Port 443 is for https, that is, HTTP over SSL. This URL indicates that you should be using RTMPS to access the stream (RTMP tunneled over https). The rtmpdump code does not support any of the RTMP-tunneled-over-HTTP protocols.