You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Akamai Streaming With Tokenization Created Nov 3, 2009

This thread is solved

Views: 1611     Replies: 3     Last reply Aug 7, 2011  
You must login first before you can use this feature

feinss

Posts: 3

Registered:
Sep 24, 2009

Akamai Streaming With Tokenization

Posted: Nov 3, 2009

We can successfully stream Akamai (via RTMP) ... but as soon as we add akamai tokenization to the URL, all we get is a blackbox where the video wants to be played...


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>

<script type="text/javascript" src="/scripts/flowplayer-3.1.4.min.js"></script>

</head><body>

	<div id="page">
		<center>
		<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
		<a  
			 style="display:block;width:480px;height:360px"  
			 id="player"> 
		</a> 
		</center>
		
	
		<!-- this will install flowplayer inside previous A- tag. -->
		<script language="javascript"> 
            // our custom configuration is given in third argument 
                flowplayer("player", "/flash/flowplayer-3.1.5.swf",{ 
                plugins: {    
                    akamai: {   
                        url: '/flash/flowplayer.akamai-3.1.4-dev.swf'  
                    },  
                    rtmp: {  
                        url: '/flash/flowplayer.rtmp-3.1.2.swf'  
                    }  
                },   
                clip: { 
                        url : 'http://rsa.edgeboss.net/flash/rsa/gtfe/stream/081120_envisionpochowto8x6_custom_6x4.flv?timestamp=1257254889&ttl=120000&iprange=0.0.0.0/0&cryptosignature=BD486D0B4DFE9C3DF2CC15720326E40534E52871',  
                   provider: 'rtmp'  
                } 
          }); 
          </script> 

		
	</div>

	</body></html>

Any ideas?

Thanks.

-sjf

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» Akamai Streaming With Tokenization

Posted: Nov 3, 2009

Reply to: Akamai Streaming With Tokenization, from feinss
try escaping the URL:


url: escape('http://rsa.edgeboss.net/flash/rsa/gtfe/stream/081120_envisionpochowto8x6_custom_6x4.flv?timestamp=1257254889&ttl=120000&iprange=0.0.0.0/0&cryptosignature=BD486D0B4DFE9C3DF2CC15720326E40534E52871'),   

feinss

Posts: 3

Registered:
Sep 24, 2009

It worked... thanks Anssi.

Posted: Nov 4, 2009

Reply to: » Akamai Streaming With Tokenization, from Anssi
It worked... thanks Anssi.