Use flash var grabbed by another function JS

126 Views Asked by At

so this is what I need to do. So this function is called when the Flash video recorder on the page saves the video:

function onSaveOk(streamName,streamDuration,userId,cameraName,micName,recorderId){
        //alert("onSaveOk("+streamName+","+streamDuration+","+userId+","+cameraName+","+micName+")");

        //the user pressed the [save] button inside the recorder and the save_video_to_db.XXX script returned save=ok
        //recorderId: the recorderId sent via flash vars, to be used when there are many recorders on the same web page
            $('#record').hide();
            $('#jwplayer').show();

    }

I then have my JWplayer script that I would like to use the streamName flash var. Here is my JWPlayer script with my current attempt:

<div id="jwplayer">
<center>
<div id='mediaplayer'></div>
<script type="text/javascript">
  jwplayer('mediaplayer').setup({
    'flashplayer': 'jwplayer/player.swf',
    'id': 'playerID',
    'width': '640',
    'height': '580',
    'provider': 'rtmp',
    'streamer': 'rtmp://domain/recorder/_definst_',
    'file': 'onSaveOk("+streamName+")'
  });
</script>
</center>

This is where I try to use the flash var,

'file': 'onSaveOk("+streamName+")'

As it is like that, it does not work, could someone show me the correct way to do this? Thanks.

1

There are 1 best solutions below

0
On

This site makes understanding and implementing a flash var as no-brainer as it gets. Copy and paste code:

http://www.justthecodeplease.com/category/urls-flashvars/