I run a forum and want to automatically replace any link to a YouTube video with a youtube video player. I can't really find anything like this on the ineternet, but I have seen it in Wordpress.

I'm running PHP.

This is what i'm talking about:

http://en.support.wordpress.com/videos/youtube/

link|improve this question

Have you thought of using BBCode? – vascowhite Jul 8 '11 at 8:32
I don't want to use anything extra that the uesr has to do. Just past in the URL and my code will replace the URL with a video player. wordpress does it.. – David Jul 8 '11 at 9:32
I'm not 100% on how to do this, but I assume it's an easy task to create a regular expression that will find a youtube link and extract the video ID. You can then insert that ID into a template of the embed codes and replace the link with it. – Codemonkey Jul 8 '11 at 10:39
Yea, thats how I see it as well. I have found a number of regex commands but none of them seem to allow me to find a youtube address in a block of text, extract the video id and replace the entire link with a video player. If i can't find a way to do this, im going to have to go down a bbcode method – David Jul 8 '11 at 12:35
feedback

3 Answers

up vote 1 down vote accepted

There are many, many questions on SO about regexping Youtube video IDs - just do a Google or site search. I took the liberty to modify this answer by ridgerunner to do what you want, ie. replace a Youtube URL with the embed code. Have a look and edit the pattern or embed code if needed. For example, you might want to wrap the embedded video in a div.

<?php

// Replace Youtube URLs with embed code
function embedYoutube($text)
{
    $search = '%          # Match any youtube URL in the wild.
        (?:https?://)?    # Optional scheme. Either http or https
        (?:www\.)?        # Optional www subdomain
        (?:               # Group host alternatives
          youtu\.be/      # Either youtu.be,
        | youtube\.com    # or youtube.com
          (?:             # Group path alternatives
            /embed/       # Either /embed/
          | /v/           # or /v/
          | /watch\?v=    # or /watch\?v=
          )               # End path alternatives.
        )                 # End host alternatives.
        ([\w\-]{10,12})   # Allow 10-12 for 11 char youtube id.


        (?:               # Group unwanted &feature extension
            &feature=related      # Either &feature=related
        )  
    ([\w\-]{0})       # Allow 0 Characters of &feature=related (hide)


        \b                # Anchor end to word boundary.
        %x';

    $replace = '<object width="425" height="344">
        <param name="movie" value="http://www.youtube.com/v/$1?fs=1"</param>
        <param name="allowFullScreen" value="true"></param>
        <param name="allowScriptAccess" value="always"></param>
        <embed src="http://www.youtube.com/v/$1?fs=1"
            type="application/x-shockwave-flash" allowscriptaccess="always" width="425" height="344">
        </embed>
        </object>';

    return preg_replace($search, $replace, $text);
}

$string = 'This is the forum post content with some Youtube links:'."\n".
    'http://www.youtube.com/watch?v=NLqAF9hrVbY'."\n".
    'http://www.youtube.com/v/u1zgFlCw8Aw?fs=1&hl=en_US';

echo embedYoutube($string);

?>
link|improve this answer
feedback

You don't need to generate embedable HTML by hands, Youtube supports oEmbed protocol: http://oembed.com/#section5

link|improve this answer
feedback

You can try a tiny class for generating player's code - http://github.com/chernikovalexey/Livar. I've found it interesting ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.