DVD Talk Forum

DVD Talk Forum (https://forum.dvdtalk.com/)
-   Forum Feedback and Support (https://forum.dvdtalk.com/forum-feedback-support-4/)
-   -   Not allowed to embed anymore? (https://forum.dvdtalk.com/forum-feedback-support/633422-not-allowed-embed-anymore.html)

Spiderbite 03-22-16 12:55 PM

Re: Not allowed to embed anymore?
 
So what's the deal? Are we just stuck with a broken forum from here on out? Is there any time frame to fix anything here?

IBJoel 03-23-16 05:00 PM

Re: Not allowed to embed anymore?
 
Tech is now working on an AME video embed.

Solid Snake 04-02-16 03:07 AM

Re: Not allowed to embed anymore?
 
Are we broken for life now or....?

K&AJones 04-04-16 02:04 PM

Re: Not allowed to embed anymore?
 
I got it...I had the same problem and actually posted in the Tech side because I couldn't post a video on any forum. I tried posting a Overwatch game trailer and got a white space. The code is this....

iframe-disabled-disabled-disabled-disabled width="640" height="360" src="https://www.youtube.com/embed/FqnKB22pOC0?feature=player_embedded" frameborder="0" allowfullscreen></iframe-disabled-disabled-disabled-disabled>

Note...there is a "<" before iframe-disabled-disabled-disabled-disabled at the start....

I put the [y*] & [/y*] in front and behind the FqnKB22pOC0....erased everything else and it works.....(* is actually a "t")



TheBang 04-07-16 08:49 PM

Re: Not allowed to embed anymore?
 
I spent about 5 hours today working on creating a modern Auto YouTube Embed mod for my vBulletin 3.8 board (though it should also work for 4.x boards), and I thought I would share it here. This is a simple way for bare YouTube URL's in posts to be automatically converted to embedded video.

What it detects/auto-converts:

It will only match on URL's that are in BB code [url] links. I tried to make it match non-linked URLs, but it was a bad idea because it wreaked havoc with BB code tags that might have YouTube URL's in them, like [code] or custom [youtube] tags.

By default, vBulletin auto-[url] links text that starts with www, http, or https. That means this will match most YouTube URLs that users might put in their post, but text like m.youtube.com/watch?v=XXXXXXXXXXX would not match, unless the user explicitly puts [url] tags around it, because vBulletin would not auto-link it.

It will handle both HTTP and HTTPS URLs

It will handle www, m, or no prefix.

It will handle youtu.be and youtube.com URLs. Besides .com, it will also handle de, jp, ca, co, ch, au, net, and be.

It will handle YouTube URL's in the following forms: watch?v=, v/, e/, embed/

It will not pass through parameters in the URL like "autoplay=1" or "loop=1" or, unfortunately, start times (t=4m3s, for example), but it will not be tripped up by them either.

What it outputs:

It outputs i-frame embedding code, which is the YouTube-preferred embedding method. This allows either the HTML5 player or Flash player to be used, depending on the browser's capabilities.

Fullscreen is enabled

16:9 embedded aspect ratio (700x394 pixels). If you want to change the size, simply edit the width and height in the XML file.

I also created a version of the mod that outputs the older Flash object embedding code which is deprecated as of 2015.

The mod can be downloaded from here:

http://www.vbulletin.org/forum/showp...8&postcount=68

TheBang 04-07-16 08:55 PM

Re: Not allowed to embed anymore?
 

Originally Posted by HN (Post 12757064)
I think they implemented your recommendation; the YT embeds are no longer postage stamp size

*edit*
i take that back; some are updated to the larger size, most still showing the smaller version

They did implement it. I'm not sure why it's giving inconsistent results though. Even within the same thread, it's embedding at different sizes. And ridiculously, even the same post will appear small or widescreen in the original post or when it's quoted, like here:

http://forum.dvdtalk.com/other-talk/...-week-268.html

If they implement the above auto-embedding, it should be easier though, and eliminate the inconsistency.

TheBang 04-07-16 09:19 PM

Re: Not allowed to embed anymore?
 
And based on my research today into the YouTube iframe embedding, the [yt] BB code on this board should be updated to the following:

Code:

<iframe width="700" height="394" src="https://www.youtube.com/embed/{param}" frameborder="0" allowfullscreen></iframe>
I've implemented the above BB code on my board without issue.

kd5 04-11-16 10:03 AM

Re: Not allowed to embed anymore?
 
Are we EVER going to get this resolved??? Getting tired of jumping through hoops to post a video, then not even being able to go fullscreen with it. I might as well just go to You Tube to see the fullscreen trailer, fuck trying to watch it here.

Jaymole 04-26-16 08:59 AM

Re: Not allowed to embed anymore?
 

Originally Posted by kd5 (Post 12774126)
Are we EVER going to get this resolved??? Getting tired of jumping through hoops to post a video, then not even being able to go fullscreen with it. I might as well just go to You Tube to see the fullscreen trailer, fuck trying to watch it here.

Agreed...changes should be for the better, not worse.

Groucho 04-26-16 09:09 AM

Re: Not allowed to embed anymore?
 
It's driving me up the wall too. I'll ask about it.

TheBang 04-26-16 09:36 PM

Re: Not allowed to embed anymore?
 
Just FYI, the youtube-autoembed mod I produced above, as well as the [yt] BB code enhancement I posted, have been working beautifully on my board for about 3 weeks now.

Norm de Plume 05-04-16 10:18 PM

Re: Not allowed to embed anymore?
 

Originally Posted by Groucho (Post 12786773)
It's driving me up the wall too. I'll ask about it.

Did you ask via snail mail, or was the response not worth posting?;)

IBJoel 05-05-16 03:38 PM

Re: Not allowed to embed anymore?
 
TheBang, as is my understanding (not a tech guy), your solution won't work on DVDTalk, because we're now on an Autocomm version of it. However, they ARE working on working out the bugs of embedding YouTube.

kd5 05-10-16 10:13 AM

Re: Not allowed to embed anymore?
 
Cool! Looking forward to 2017...:thumbsup:

TheBang 05-17-16 06:48 PM

Re: Not allowed to embed anymore?
 

Originally Posted by IBJoel (Post 12794274)
TheBang, as is my understanding (not a tech guy), your solution won't work on DVDTalk, because we're now on an Autocomm version of it. However, they ARE working on working out the bugs of embedding YouTube.

I don't know what "Autocomm" means. Still, looking at the product XML that I linked should still be quite helpful to the developers in crafting the solution. The substitution regex in there is a bit complicated, but solid and elegant for doing auto-embedding.

bd007h 05-17-16 09:23 PM

Re: Not allowed to embed anymore?
 
I don't mind doing the [ yt] [ /yt] tags, but I wish the same could be done with sites like vimeo lol

TheBang 05-20-16 06:13 PM

Re: Not allowed to embed anymore?
 
OK, i just whipped up a BB code for vimeo. This is tested and working on my board, so if an Admin wants to put this into this site also, it'd work. Here are the settings:

Title: Vimeo
BB Code Tag Name: vimeo
Replacement:
Code:

<iframe src="https://player.vimeo.com/video/{param}" width="700" height="394" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
Example: [vimeo]2619976[/vimeo]
Description: Use the movie code from the Vimeo URL in your browser. For example, https://vimeo.com/2619976
Use {option}: No
Remove Tag If Empty: Yes
Disable BB Code Within This BB Code: Yes
Disable Smilies within this BB Code: Yes
Disable Word Wrapping Within This BB Code: Yes
Disable Automatic Link Parsing Within This BB Code: Yes

islandclaws 08-01-16 12:17 PM

Re: Not allowed to embed anymore?
 
Is this stupid shit EVER going to be fixed? I don't give two shits if we've found a workaround or whatever. There is a MAJOR problem on these boards. Fucking fix it. Jesus.

ibobi 08-02-16 09:30 PM

Re: Not allowed to embed anymore?
 
Still working on it...

ibobi 08-04-16 05:09 PM

Re: Not allowed to embed anymore?
 


https://youtu.be/kxqxZEhtSlQ

" frameborder="0" allowfullscreen>

ibobi 08-04-16 05:10 PM

Re: Not allowed to embed anymore?
 
It's fixed.


fumanstan 08-05-16 09:46 AM

Re: Not allowed to embed anymore?
 
Finally :banana:

OldBoy 08-05-16 11:20 AM

Re: Not allowed to embed anymore?
 
What exactly is fixed? YouTube embeds or can anything be embed like before?

Dan 08-05-16 02:31 PM

Re: Not allowed to embed anymore?
 
Testing YouTube embed (not YT BB code, but iframe)

<iframe width="560" height="315" src="https://www.youtube.com/embed/b3_lVSrPB6w" frameborder="0" allowfullscreen></iframe>


Testing Vimeo embed (iframe)

<iframe src="https://player.vimeo.com/video/53219652" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<p><a href="https://vimeo.com/53219652">RHINOS</a> from <a href="https://vimeo.com/user8187641">Scooby Two</a> on <a href="https://vimeo.com">Vimeo</a>.</p>


edit: yeah... I'm gonna go with no. It's not working.

fumanstan 08-05-16 04:18 PM

Re: Not allowed to embed anymore?
 
It worked for me when I posted a video in the PC Gaming thread.

<iframe width="560" height="315" src="https://www.youtube.com/embed/vTUt8lmm_7s" frameborder="0" allowfullscreen></iframe>

But not anymore? Weird.


All times are GMT -5. The time now is 06:08 AM.


Copyright © 2026 MH Sub I, LLC dba Internet Brands. All rights reserved. Use of this site indicates your consent to the Terms of Use.