firstly I should write that I am not good in javascript at all :). What I need to do. Lets say I have some webpage, for example http://mediathek.rbb-online.de/rbb-fernsehen/heimatjournal/ulli-zelle-ist-in-brandenburg-unterwegs-ein-ausflug-nach?documentId=15725820
There is video in this page and I want to get straight link to this video and play it from straight typing to url address bar.
<script type="text/javascript">
<![CDATA[
something...
something...
function initPlayer(){
jQuery("#player-15725820").empty();
something...
mediaCollection.addMedia(0);
mediaCollection.addMediaStream(0, 1,
"rtmp://ondemand.rbb-online.de/ondemand/",
"mp4:rbb/heimatjournal/sendung/heimatjournal_20130706_sdg_m_16_9_512x288.mp4", "akamai");
mediaCollection.addMedia(1);
mediaCollection.addMediaStream(1, 1, "", "http://http-stream.rbb-online.de/rbb/heimatjournal/sendung/heimatjournal_20130706_sdg_m_16_9_512x288.mp4", "akamai");
Is there any way to setup video
"mp4:rbb/heimatjournal/sendung/heimatjournal_20130706_sdg_m_16_9_512x288.mp4
straightly from url like stream??