I would like to embed a video (www.bnn.ca/Video/player.aspx?vid=564163) onto my site and specify start and end times for playback. Similar to the way youtube allows this through its start and end parameters. Here's the embed code:
<iframe src="https://bmplayer-a.akamaihd.net/shareable/embedssl.html?dc=bnn_web&cid=564163&col=766&w=480&h=270&pl=0&plh=0&adSite=ctv.bnn&adZone=shows/marketcall&omniAcct=ctvgmtvebnndesktop,ctvgmglobal§ion=video - hub&site=bnn&shareUrl=&v7=player&v8=&v9=&v10=" width="480" height="270" scrolling="no" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" ></iframe>
Any help is appreciated.
Thanks
Related
I have some youtube videos embedded in my webpage. They display fine, but when I click on them, they wont play, just display the error above.
Here's my code:
'''
<div class="music-videos">
<iframe class="music-video" width="575" height="425"
src="https://www.youtube.com/embed?v=zM32nQ21O9E">
</iframe>
<iframe class="music-video" width="575" height="425"
src="https://www.youtube.com/embed?v=Jbg5BXUlXrs">
</iframe>
</div>
'''
When the link has the word embed on it, the VIDEO_ID is separated with a slash /.
Hence, you should change your URLs as follows:
https://www.youtube.com/embed/zM32nQ21O9E
Modified code:
<div class="music-videos">
<iframe class="music-video" width="575" height="425"
src="https://www.youtube.com/embed/zM32nQ21O9E">
</iframe>
<iframe class="music-video" width="575" height="425"
src="https://www.youtube.com/embed/Jbg5BXUlXrs">
</iframe>
</div>
If you keep getting errors, please, test this code in another computer or while you're logged out from your account. This error might be some undocumented bug or any conflict with your browser add-ons.
I am working with a Iframe code for a web page. When I embed it on the page, I find that when I come back the form values are what I had previously inputed. I want to have the values of the form to be cleared.
Here is my code: <iframe src="https://go.sabertorch.com/l/902951/2021-01-20/4wl1" width="100%" height="500" type="text/html" frameborder="0" allowTransparency="true" style="border: 0"></iframe>
Is there anything that I can add to make sure that values are cleared.
I want to embed an iframe in a Confluence page, e.g. Google Calendar.
I insert the iframe code in Confluence page, it should show the calendar as follows:
But it just display the text of code as follows:
<iframe src="https://calendar.google.com/calendar/embed?src=3g3ie767f4ji0e72icgtfjg%40group.calendar.google.com&c" style="border: 0" width="800" height="600" frameborder="0" scrolling="auto"></iframe>
How to embed an iframe in Confluence page?
Log in as your Confluence Admin, go to manage add-ons
Enable all the modules of the Confluence HTML Macros
Insert the Include HTML Macro when you are creating/editing a page.
a) Go To Insert More Content > Other macros
b) Search for HTML macro
c) Paste the following code inside the macro
Save the page
<iframe src="https://calendar.google.com/calendar/embed?src=3g3ie767f4ji0e72icgtfjg%40group.calendar.google.com&c" noborder="0" width="830"
height="800" scrolling="yes" seamless></iframe>
<iframe src="https://calendar.google.com/calendar/embed?src=3g3ie767f4ji0e72icgtfjg%40group.calendar.google.com&c" noborder="0" width="830"
height="800" scrolling="yes" seamless></iframe>
When adding a macro I did the following:
"Other Macros"
Search for "iframe"
Select "Iframe" macro
Enter only the iframe url, and any other required settings.
I have a ASP.Net Web form application project.
I use Google iframe but it does not work.
Please help me.
My code:
Location="https://www.google.com/maps/place/%D8%B4%D8%B1%DA%A9%D8%AA+%D8%AC%D9%87%D8%A7%D9%86+%D8%B4%DB%8C%D9%85%DB%8C+%D8%A8%D8%B3%D9%BE%D8%A7%D8%B1%E2%80%AD/#35.7743752,51.3679948,14z/data=!4m8!1m2!2m1!1sjahan+shimi+baspar!3m4!1s0x0:0x9f32a31df4793a64!8m2!3d35.7721173!4d51.3661373"
<iframe width="100%" height="400px" scrolling="no"
src="location"></iframe>
Just use google's provided embed code:
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d25896.326046334627!2d51.3679948!3d35.7743752!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x9f32a31df4793a64!2z2LTYsdqp2Kog2KzZh9in2YYg2LTbjNmF24wg2KjYs9m-2KfYsQ!5e0!3m2!1sen!2sus!4v1473145596653" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
Your src="location" doesn't automatically read some "location" variable/parameter/whatever, it just tries to use the value "location" as url and fails.
So you need to use some way to inject the contents of your Location variable as value of src.
How to do that depends on how you generate that HTML:
For webforms you may need something like src="<%= Location %>".
For MVC it will be something like src="#Location".
The old Google form embed code looked like:
<iframe src="https://docs.google.com/spreadsheet/embeddedform?formkey=dFdXNHV2aGthMW4sdg32enZsd2VkZWc6MQ" height="2200" width="700" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
The new Google form embed code looks like:
<iframe src="https://docs.google.com/forms/d/1fh95JfDQsElkjfdgLH234PwzA2bGTTwhRs7Tk6Eg/viewform?embedded=true" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
I am using a CMS plugin that takes an arbitrary formkey and generates the embed code.
Does anyone know how to get the formkey value using the new Google forms?
If you are using an "old" Google form (if you can see a menu bar at the top with "file" in it, then it's an old form), then look in the URL of the edit page for the form. The hash string appearing before "/edit" seems to work as the formkey. For example, suppose your edit page's URL is
https://docs.google.com/a/forms/d/###formkey_hash/edit
and it generates HTML for embedding this form in your website, as follows:
<iframe src="https://docs.google.com/forms/d/e/###embed_hash/viewform?embedded=true" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
and in your embedded form, you want the spreadsheet title to be hidden. You could accomplish this like
<iframe src="https://docs.google.com/forms/d/e/###embed_hash/viewform?embedded=true&formkey=###formkey_hash&ttl=0" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">
The ttl=0 pair turns off the title, but this won't work without the formkey pair.
This trick doesn't work for new Google forms, however. I don't know whether that's because (a) URL parameters don't work for new forms, (b) they do work, but the formkey is found by some other method, or (c) none of the above.