Hi all, i am very new with this stuff, and i need your help.
I have this website:
and dumped response of it:
Code:
<script type='text/javascript' src='http://castalba.tv/js/jwplayer.js'></script>
<script type="text/javascript">
jwplayer("mediaspace").setup({
'flashplayer': "http://static.castalba.tv/player5.9.swf",
'width': '650',
'height': '400',
'allowfullscreen':'true',
'allowscriptaccess':'always',
'wmode':'opaque',
'controlbar':'over',
'dock':'true',
'dock.position':'left',
'mute':'false',
'stretching':'',
'autostart': 'true',
'provider': 'http://castalba.tv/bae3.swf',
'file': 'http://ndr_fs-lh.akamaihd.net/z/ndrfs_nds@119224/manifest.f4m',
'plugins': 'http://castalba.tv/ova-jw2.swf',
'config': 'http://castalba.tv/ova.php',
'logo.file':'http://i62.tinypic.com/10pwzsk.png',
'logo.hide':'false',
'logo.position':'top-right',
'logo.link':'http://castalba.tv/channel/23651',
'rtmp.tunneling': 'false',
'abouttext':'CastAlba.TV - Stream Live Video',
'aboutlink':'http://castalba.tv',
'skin':'http://static.castalba.tv/bluez.zip'
});
</script>
Please note i have this just as example, i have other link with dynamically rtmp link provided, also this stream is domain protected.
I would figure out how to obtain domain protected response of server but:
- using above example how can i build pageUrl playpath and rest things what are needed to play via VLC and example command if possible.
Can anyone explain me how can i do it manually?
as of its domain protected i need a little generator written in php, to curl its page to obtain that required data.
Please anyone have any thoughts?.
Basically i need to convert from java to type like that
Code:
rtmp://dynamic.ip/live playpath=dynamicplaypath swfUrl=http://whateverneeded pageUrl=http://castalba.tv/channel/itschannelid
That is what i thinking it would be but just correct me if im wrong please.
Code:
http://ndr_fs-lh.akamaihd.net/z/ndrfs_nds@119224 playpath=manifest.f4m swfUrl=http://static.castalba.tv/player5.9.swf pageUrl=http://castalba.tv/channel/23651
so in java request:
'file' section need to be splitted to two different things:
This is beggining of rtmp link?
'http://ndr_fs-lh.akamaihd.net/z/ndrfs_nds@119224
and this is playpath? without backslash??
/manifest.f4m' -->manifest.f4m
swfUrl would be --->
http://static.castalba.tv/player5.9.swf
but i have tried to play it and wont play why?
I have tried in simpletv player.
Any thoughs? Thanks for any help guys!