Home > Learning Center > Tutorials > Embedding a Meeting Recording on a Web Page
Embedding a Meeting Recording on a Web Page
David Yun
October 2008
Expertise Level: Intermediate
0 Votes
gajett recently posted this great tip in the forums on how to embed a meeting recording on a web page:
Sample HTML Code
<iframe src="http://myserver.com/myrecording"
height="600"
width="700"
frameborder="0"
marginheight="0"
marginwidth="0"
>
</iframe>
You'll notice the code is nearly identical to the code posted by Alistair about how to embed a Presenter Presentation.
Here it is in action, with a recording of the Best Practices User Group meeting.
<< Back to Tutorials main menu. ?>




Member Comments
Share your thoughts. Tell us what you think about this tutorial.
RobinGood
SEPTEMBER 15, 2009
Great presentation indeed.One question:
How can I prevent an embed like this one of a Connect Pro recorded event from autoplaying automatically?
Thanks in advance and keep these events rolling!
gajett
MAY 03, 2010
You may wish to alter the code like so:[code]
[/code]
notice ?launcher=false after the actual recording url. Connect 7.5 (? i think) introduced the 'improved' recording experience that will either launch full-screen if you've got the add-in installed, or prompt you to install if not installed.
appending ?launcher=false prevents the add-in from launching the recording full-screen. users will be prompted to install the add-in, but there is a 'cancel' button.
this should keep most users 'within' your page.
greg
gajett
MAY 03, 2010
well, that didn't work -- here's the altered code:--g--
gajett
MAY 03, 2010
ok, just append ?launcher=false to your recording url....Jstegenga
OCTOBER 11, 2011
Hey - great tips, as always - but how do you keep the recording from auto-starting??