Custom iframe URL

Hello All,

How can I change iframe URL on universal studio?
Thanks

By changing the Embed Options you can change the iframe URL corresponding parameters. You can’t override it completely in studio using the “Share and Embed” configuration panel. If you need additional control options or you need to override it completely, please let me know.

Hi @amir_chervinsky1

Thank you for your interest,
How can I change default iframe URL on player.

cdnapi.kaltura.com
to
emirtekin.com

Hello again
Is it enough if i make changes in the file?

v2.31/modules/KalturaSupport/components/share/share.js

I am trying to do the same thing. I want to “replace” the “src” url.

This can be done via JavaScript API no need to change core files, add the following to kWidget.embed;

PS. Change 102’s with your partner ID.

"share": {
                    "embedCodeTemplate": "<iframe src=http://video.xxx.com/p/102/sp/10200/embedIframeJs/uiconf_id/'.$atts['uiconfid'].'/partner_id/102?iframeembed=true&playerId='.$divId.'&entry_id='.$atts['entryid'].'&flashvars[streamerType]=auto width=640 height=360 allowfullscreen webkitallowfullscreen mozAllowFullScreen frameborder=0></iframe>",
                    embedOptions: {
                        "streamerType": "auto",
                        "uiconfID": null,
                        "width": 640,
                        "height": 360,
                        "borderWidth": 0
                    }
                }
            }            
        });