Disable autostart from external embed Kaltura video

I added the below video to my website however…I am trying to disable the autostart option.
Is this option only available from the source or can I add code? Any suggestions:

video platform<a
etc…(cant add more than 2 links)

You can do it from KMC->Studio. Select your player and uncheck “Automatically play video on page load”

Thanks for the reply. Unfortunately that only helps if I setting up a player for my own content. I am adding a video to my site which is external. The video is a Verizon Fios News1 video that is using a Kaltura player (id="kaltura_player_1453415652). Is there a way to prevent the autoplay option from loading?

I see.
Try adding:

flashvars: { autoPlay: false }

unfortunately that doesn’t seem to be the correct code for the format.

See the embed code below.

video platform

this is video:
http://www.fios1news.com/lowerhudsonvalley/new-film-east-ramapo-school-district#.VqFc11MrLfB

Hello,

So this embed code has:
kaltura_swf.addParam(“flashVars”, “uid=Anonymous&externalInterfaceDisabled=false&layoutId=fullLarge&pd_original_url=http%3A%2F%2Fwww.fios1news.com%2Flowerhudsonvalley%2Fnew-film-east-ramapo-school-district”);

you can add autoPlay=false to that, which should work.
This utlises our legacy KDP player as opposed to the new HTML5 one.

However, I must say that at least for me, when loading the link you provided, the video did not auto play. Does it auto play on your browser?

That is a different code from what I am getting when I click the share button. A pop up comes and provide the embed copy and say copy to clip board. this is the code:

object name=“kaltura_player_1453415652” id=“kaltura_player_1453415652” type=“application/x-shockwave-flash” allowScriptAccess=“always” allowNetworking=“all” allowFullScreen=“true” height=“300” width=“533” data=“http://www.kaltura.com/index.php/kwidget/wid/1_su6kma7a/uiconf_id/8700151”>
param name=“allowScriptAccess” value=“always” />
param name=“allowFullScreen” value=“true” />
param name=“bgcolor” value="#000000" />
param name=“movie” value=“http://www.kaltura.com/index.php/kwidget/wid/1_su6kma7a/uiconf_id/8700151”/>
param name=“flashVars” value=""/> a href=“http://corp.kaltura.com”>video platform

href=“http://corp.kaltura.com/video_platform/video_management”>video management<a

href=“http://corp.kaltura.com/video_platform/video_publishing”>video player

The code I put in was taken from doing view source on the HTML page you’ve provided.
As far as the code you posted, you have:
param name="flashVars" value=""/> a href="http://corp.kaltura.com">
so you can

param name=“flashVars” value=“autoPlay=false”/>
And:
param name=“autoPlay” value=“false” />

Should also work.