View Single Post
  #21  
Old 09-15-2011, 05:30 AM
nullacht nullacht is offline
Senior Member
 
Join Date: Jan 2010
Posts: 230
nullacht will become famous soon enoughnullacht will become famous soon enough
Cool

Re: www.skynet.be: Need help recording stream (RTMPTE)


Quote:
Originally Posted by nicodestavelot View Post
how did you do to get the XML file that was embedded ?

I did try to get it with swfdecompiler with no luck.
Source code:

Code:
base:'http://static.generation.portal.skynet.be/swf/'
Code:
plugins:'./festivalplugin-20110621.swf,timeslidertooltipplugin-1'
=

Code:
http://static.generation.portal.skynet.be/swf/festivalplugin-20110621.swf
Now we need to decompress the .swf file.

Flasm:

Code:
flasm -x festivalplugin-20110621.swf
festivalplugin-20110621.swf successfully decompressed, 59118 bytes
Open this file with WinHex and search for the following section: <settings>

Code:
<settings>
	<festival id="-1" name="Location detection streamer" streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_" />
	<!-- TESTING NODE -->
	<festival id="0" name="FAKE" streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_">
		<preroll file="mp4:graspop_preroll_###lang###_###bw###.mp4" />
		<promo file="mp4:RW_Pukkelpop_QualityA.mp4" />
		<live streamer="rtmpte://live.flash.streampower.be/festivals_2k11" file="festivals_live_2k11_###bw###" />
		<vod />
	</festival>
	
	<!-- 2010 VOD CONTENT -->
	<festival id="28" name="Rock Werchter 2010" streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_">
		<preroll streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_" file="mp4:preroll/rock_werchter_preroll_###lang###_hi.mp4" />
		<promo />
		<live />
		<vod />
	</festival>
	<festival id="29" name="Graspop Metal Meeting 2010" streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_">
		<preroll streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_" file="mp4:preroll/graspop_preroll_###lang###_hi.mp4" />
		<promo />
		<live />
		<vod />
	</festival>
	<festival id="30" name="Rimpelrock 2010" streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_">
		<promo />
		<live />
		<vod />
	</festival>
	<festival id="31" name="Pukkelpop 2010" streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_">
		<preroll streamer="rtmpte://flash.streampower.be/festivals_2k10_pu/_definst_" file="mp4:preroll/pukkelpop_preroll_###lang###_hi.mp4" />
		<promo />
		<live />
		<vod />
	</festival>
	
	<!-- 2011 LIVE AND VOD CONTENT -->
	<festival id="36" name="Graspop Metal Meeting 2011" streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_">
		<preroll file="mp4:preroll/graspop_preroll_###lang###_###bw###.mp4" />	
		<promo file="mp4:promo/graspop_promo_###lang###_###bw###.mp4" />
		<live streamer="rtmpte://live.flash.streampower.be/festivals_2k11" file="festivals_live_2k11_###bw###" />
		<vod streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_" />
	</festival>
	<festival id="37" name="Rock Werchter 2011" streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_">
		<preroll file="mp4:preroll/rock_werchter_preroll_###lang###_###bw###.mp4" />	
		<promo file="mp4:promo/rw_pp_promo_###lang###_###bw###.mp4" />
		<live streamer="rtmpte://live.flash.streampower.be/festivals_2k11" file="festivals_live_2k11_###bw###" />
		<vod streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_" />
	</festival>
	<festival id="38" name="Pukkelpop 2011" streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_">
		<preroll file="mp4:preroll/pukkelpop_preroll_###lang###_###bw###.mp4" />	
		<promo file="mp4:promo/rw_pp_promo_###lang###_###bw###.mp4" />
		<live streamer="rtmpte://live.flash.streampower.be/festivals_2k11" file="festivals_live_2k11_###bw###" />
		<vod streamer="rtmpte://flash.streampower.be/festivals_2k11_pu/_definst_" />
	</festival>
</settings>
Reply With Quote