View Single Post
  #2  
Old 01-18-2015, 08:34 PM
biezom biezom is offline
Senior Member
 
Join Date: Sep 2014
Posts: 1,025
biezom is on a distinguished road
Default

Re: Save video from i-cable.com


you can use rtmpdump it works

for exemple for this video

http://cablenews.i-cable.com/webapps...news_id=450238

Code:
rtmpdump -r "rtmp://61.10.2.137/vod_ts/_definst_" -a "vod_ts/_definst_" -f "WIN 16,0,0,235" -W "http://cablenews.i-cable.com/webapps/js/players/jwplayer/icable_player_201309.swf" -p "http://cablenews.i-cable.com/webapps/news_video/index.php?news_id=450238&urlc=4" -y "4-58ba8a5c-1421636965-1421637265-8b004c56d5b44e388176d182ff5633d0-8d201eff08ad2fe_5b7-03/news2/2015/01/19/mp4:f-hkprop_150119.mp4" -o "f-hkprop_150119.flv"
but the problem the playpath '-y' changes and works just once only
so you need read the source code and find your own code

So for each video you change the pageUrl '-p' playpath '-y' and '-o' the name you want

exemple for an other video

http://cablenews.i-cable.com/webapps...news_id=450211

Code:
rtmpdump -r "rtmp://61.10.2.137/vod_ts/_definst_" -a "vod_ts/_definst_" -f "WIN 16,0,0,235" -W "http://cablenews.i-cable.com/webapps/js/players/jwplayer/icable_player_201309.swf" -p "http://cablenews.i-cable.com/webapps/news_video/index.php?news_id=450211" -y "4-58ba8a5c-1421637957-1421638257-e890fc361ca0aa42da665135c9643888-8d201f23f8342b3_880-03/news2/2015/01/19/mp4:army0100_150119.mp4" -o "army0100_150119.flv"
for your request
http://cablenews.i-cable.com/webapps...news_id=449781


Code:
rtmpdump -r "rtmp://61.10.2.137/vod_ts/_definst_" -a "vod_ts/_definst_" -f "WIN 16,0,0,235" -W "http://cablenews.i-cable.com/webapps/js/players/jwplayer/icable_player_201309.swf" -p "http://cablenews.i-cable.com/webapps/news_video/index.php?news_id=449781" -y "4-58ba8a5c-1421640211-1421640511-5624cb99fd2e9ee3da4e790191409298-8d201f77efee587_697-03/news2/2015/01/12/mp4:chairman_150112.mp4" -o "chairman_150112.mp4.flv"
just change the playpath '-y' after you read source code and find your own code

Last edited by biezom : 01-18-2015 at 09:13 PM.
Reply With Quote