Embed Video
4 posters
Page 1 of 1
Embed Video
Hi! First of all thanks a lot for your help, your tutorials are superb.
Now, my pain is with the embed video for streamable, a very nice hosting short video.
I have the automatic embed video for youtube and dailymotion on my forum, but i don't know how to make the streamable videos do the same.
Sorry for my bad english, my question is: How can the streamable videos embed in my topics?
Now, my pain is with the embed video for streamable, a very nice hosting short video.
I have the automatic embed video for youtube and dailymotion on my forum, but i don't know how to make the streamable videos do the same.
Sorry for my bad english, my question is: How can the streamable videos embed in my topics?
Last edited by Simone Boi on November 28th 2020, 11:52 am; edited 1 time in total
Re: Embed Video
You will have to get the share coding from the video and post it on your forum. Also you will have to enable HTML for the whole forum.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Embed Video
No chance to add an iframe code to just put the "naked" link in a topic like for youtube and dailymotion?
Re: Embed Video
Most of the web page players already deliver an <iframe> code in their videos, you just have to look for it in another way, you must create it by hand and insert it in your theme.
I use this Javascript for autoembedding youtube videos, I only place the url of the youtube video in the theme and the script does the embed:
only just put the simple youtube url https://youtu.be/GfR3VP8cmrA and the script will do the rest.
when creating the JS place it in the topics.
»Administration Panel> Modules> HTML & JAVASCRIPT> Management of JavaScript codes
Position: In topics
I use this Javascript for autoembedding youtube videos, I only place the url of the youtube video in the theme and the script does the embed:
- Code:
jQuery(function(){
var ancho = "560";
var alto = "315";
jQuery('.postbody a[href*="youtube.com/watch"]').each(function(){
var ytid = jQuery(this).attr('href').split("v=")[1].split("&")[0];
jQuery(this).html("<iframe width="+ancho+" height="+alto+" src=https://www.youtube.com/embed/"+ytid+" frameborder=0 allowfullscreen></iframe><br>");
});
jQuery('.postbody a[href*="youtu.be/"]').each(function(){
var ytid = jQuery(this).attr('href').split("youtu.be/")[1].split("?")[0];
jQuery(this).html("<iframe width="+ancho+" height="+alto+" src=https://www.youtube.com/embed/"+ytid+" frameborder=0 allowfullscreen></iframe><br>");
});
});
only just put the simple youtube url https://youtu.be/GfR3VP8cmrA and the script will do the rest.
when creating the JS place it in the topics.
»Administration Panel> Modules> HTML & JAVASCRIPT> Management of JavaScript codes
Position: In topics
TonnyKamper and The Last Outlaw like this post
Re: Embed Video
I solved in this way thanks to MattiaDes from another forum
Thank you guys!
- Code:
$(function() {
$('.postbody a[href*="streamable.com"]').each(function() {
var ytid = $(this).attr('href').split("streamable.com/")[1].split("?")[0];
$(this).html("<div style='width: 100%; height: 0px; position: relative; padding-bottom: 56.250%;'><iframe src=https://www.streamable.com/e/" + ytid + " frameborder=0 allowfullscreen style='width: 100%; height: 100%; position: absolute;'></iframe></div><br />")
});
});
Thank you guys!
Re: Embed Video
Please do not open similar threads to multiple support forums.
|
https://aiuto.forumattivo.it/t20560-video-embed-in-topic
Problem solved & topic archived.
|
Similar topics
» embed video
» video embed javascript
» Embed video or something alike
» I Cannot embed video in my forum
» Is it at all possible to embed video from Google Drive?
» video embed javascript
» Embed video or something alike
» I Cannot embed video in my forum
» Is it at all possible to embed video from Google Drive?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum