{{TNT|Extension |name = EmbedVideo |license = MIT |status = stable |type = parser function |author = Alexia E. Smith ([[User:Alexia E. Smith|Alexia E. Smith]]), Andrew Whitworth ([[User:Whiteknight|Whiteknight]]), Jim R. Wilson ([[User:Jimbojw|Jimbojw]]), and Mohammad Derakhshani ([[User:Mderakhs|Mderakhs]]) |version = 2.7.4 |update = 2018-07-16 |mediawiki = 1.25+ |php = 5.4+ |download = {{TNT|GithubDownload|HydraWiki|mediawiki-embedvideo}} |image = EmbedVideoExample1.jpg |imagesize = 350px |hook1 = ParserFirstCallInit |description = Adds a parser function called #ev for embedding video clips from popular video sharing services. |example = [http://help.gamepedia.com/Extension:EmbedVideo/Example Gamepedia Help Wiki] |vagrant-role = embedvideo }} The '''EmbedVideo''' extension adds a parser function called #ev for embedding video clips from over 24 popular video sharing services in multiple languages and countries. It also adds video and audio media handlers to support transforming standard [[File:Example.mp4]] file links into embedded HTML5 and tags. ;Project Homepage: [https://github.com/HydraWiki/mediawiki-embedvideo Documentation at Github] ;Source Code: [https://github.com/HydraWiki/mediawiki-embedvideo Source code at Github] ;Bugs:[https://github.com/HydraWiki/mediawiki-embedvideo/issues issues at Github] ;Licensing: EmbedVideo is released under [http://www.opensource.org/licenses/mit-license.php The MIT License]. Notice: As of the 2.x series the EmbedVideo extension has a new maintainer and an entirely rewritten code base. It retains backwards compatibility with EmbedVideo 1.0 and EmbedVideoPlus. ==Installation== {{TNT|ExtensionInstall |registration=required |download-link=[https://github.com/HydraWiki/mediawiki-embedvideo/archive/v2.7.3.zip Download] |custom-steps=* [[#Configuration|Configure as required]] }} ==Usage== === Media Handler === For locally uploaded content the process for displaying it on a page is the same as an image. [https://www.mediawiki.org/wiki/Help:Images#Syntax See the image syntax documentation] on MediaWiki.org for complete reference on this feature. This example would display a video in page using a HTML5 tag.
[[File:Example.mp4]]
To specify the start and end timestamps in the media use the start and end parameters. The timestamp can be formatted as one of: ss, :ss, mm:ss, hh:mm:ss, or dd:hh:mm:ss.
[[File:Example.mp4|start=2|end=6]]
=== Tags === The EmbedVideo parser function expects to be called in any of the following ways: ====#ev - Classic Parser Tag==== * {{#ev:service|id}} * {{#ev:service|id|dimensions}} * {{#ev:service|id|dimensions|alignment}} * {{#ev:service|id|dimensions|alignment|description}} * {{#ev:service|id|dimensions|alignment|description|container}} * {{#ev:service|id|dimensions|alignment|description|container|urlargs}} * {{#ev:service|id|dimensions|alignment|description|container|urlargs|autoresize}} * {{#ev:service|id|dimensions|alignment|description|container|urlargs|autoresize|valignment}} However, if needed optional arguments may be left blank by not putting anything between the pipes: * {{#ev:service|id|||description}} ====#evt - Parser Tag for Templates==== The #evt parser tag allows for key=value pairs which allows for easier templating and readability.
{{#evt:
service=youtube
|id=https://www.youtube.com/watch?v=pSsYTj9kCHE
|alignment=right
}}
====#evu - Parser Tag for URLs==== The #evu parser tag is like the #evt tag, but its first parameter is a URL that will be parsed to determine the service automatically.
{{#evu:https://www.youtube.com/watch?v=pSsYTj9kCHE
|alignment=right
}}
==== - Tag Hook==== Videos can easily be embedded with the tag hook. The ID/URL goes as the input between the tags and parameters can be added as the tag arguments.
https://www.youtube.com/watch?v=pSsYTj9kCHE
Alternativly, you can also use the service id as the tag (assuming another extension isn't already using this tag).
https://www.youtube.com/watch?v=pSsYTj9kCHE
=== Attributes for Parser Tags === {| class="wikitable" |- ! Attribute ! Description |- | service="(See Supported Services below.)" | '''Required:''' yes :The video service to call. |- | id="[id|url]" | '''Required:''' yes :The raw ID of the video or URL from the player page. |- | dimensions="[WIDTH|WIDTHxHEIGHT|xHEIGHT]" | '''Required:''' no, '''Default:''' 640 :Dimensions in pixels to size the embed container. The standard format is width x height where either can be omitted, but the x must proceed height to indicate it as the height. :Examples: 480, 480x320, x320. If the height is not provided it will be calculated automatically from the width and service default ratio. :Some services such as ''Gfycat'' do not have standard heights and should be specified for each embed. $wgEmbedVideoDefaultWidth can be set in LocalSettings.php to override the default width. |- | alignment="[left|center|right|inline]" | '''Required:''' no, '''Default:''' none :Align the placement of the video either to the left, centered, or to the right. Inline will allow multiple videos to display side by side without forced line breaks. |- | description="[wiki text]" | '''Required:''' no, '''Default:''' none :Display a description under the embed container. |- | container="[frame]" | '''Required:''' no, '''Default:''' none :Specifies the container type to use for the embed. ::frame: Wrap the video player in a Mediawiki thumbnail box. |- | urlargs="modestbranding=1&version=3" | '''Required:''' no, '''Default:''' none :Allows extra URL arguments to be appended to the generated embed URL. This is useful for obscure options only supported on one service. |- | autoresize="false" | '''Required:''' no, '''Default:''' true :Automatically resize videos when their size will cause them to break outside of their container element. |- | valignment="[top|middle|bottom|baseline]" | '''Required:''' no, '''Default:''' none :Align the vertical placement of the video either to the top, middle, bottom, or baseline of the parent element. Using this parameter forces the alignment parameter to be inline. |} === Examples === [[File:EmbedVideoExample1.jpg|thumb|Example #1]] For example, a video from YouTube uses the 'youtube' service selector. You can specify either the raw ID:
{{#ev:youtube|pSsYTj9kCHE}}
Or specify the full URL:
{{#ev:youtube|https://www.youtube.com/watch?v=pSsYTj9kCHE}}
[[File:EmbedVideoExample2.jpg|thumb|Example #2]] To display the same video as a right aligned large thumbnail with a description:
{{#ev:youtube|https://www.youtube.com/watch?v=pSsYTj9kCHE|1000|right|Let eet GO|frame}}
For YouTube to have the video start at a specific time code utilize the urlargs(URL arguments) parameter. Take the rest of the URL arguments from the custom URL and place them into the urlargs. Please note that not all video services support extra URL arguments or may have different keys for their URL arguments.
https://www.youtube.com/watch?v=pSsYTj9kCHE&start=76
{{#ev:youtube|https://www.youtube.com/watch?v=pSsYTj9kCHE|||||start=76}}
URL arguments can be used to chop up a video and loop it:
https://www.youtube.com/watch?v=pSsYTj9kCHE&start=160&end=180&loop=1
{{#ev:youtube|https://www.youtube.com/watch?v=pSsYTj9kCHE|||||start=160&end=180&loop=1}}
== Support for VideoLink Tags == Support for the unmaintained VideoLink extension’s tags has been added since version 2.5. From the original extension documentation:
The VideoLink extension allows embedding of YouTube videos in articles; allowing for multiple linked videos to be played in a single embedded video player, first shown when a user clicks on a video link.

The <evlplayer /> specifies where the player should appear within the page, and the {{#vlink}} parser function allows creation of links that load a specific video.
=== <evlplayer> - Tag Hook for Video Container === ''Note that the use of the <evlplayer> tag is also acceptable here for backwards compatibility.'' This evlplayer tag is used to position the video player container within the page.
<evlplayer id="player id" w="width" h="height" class="class" style="style">default content</evlplayer>
A default video can be set to fill the container by default instead of default content as well.
<evlplayer id="player1" w="480" h="360" service="youtube" defaultid="pSsYTj9kCHE" />
{| class="wikitable" !width="11%"| Attributes !width="10%"| Required !width="23%"| Default !width="54%"| Description |- | id | no | default | An optional unique identifier for this container |- | w | no | 800 | Width to send to the embedded player when its generated |- | h | no | achieve 16:9 from width | Height to send to the embedded player when its generated |- | class | no | | Additional CSS class to add to the container div |- | style | no | | Additional in-line CSS to apply to the container div |- | defaultid | no | | Video ID of default video, if you want a default video. |- | service | no | | Service of default video, if you want a default video. |} An important caveat to make note of, is that the w and h attributes only effect the video that is being included into the container div, and not the actual container. For styling of the container, please use the class or style attributes. === #evl - Parser Function for Video Links === ''Note that the use of the {{#vlink}} parser function is also acceptable here for backwards compatibility.''
{{#evl:<video id>|<Link text>>|<video to play>|service=youtube|player=<player id>}}
In addition to all of the attributes supported by the #evt tag, these specific attributes apply to the #evl (and #vlink) tags. To maintain backwards compatibility, if you do not define a service then youtube is assumed. {|class="wikitable" !width="5%"| Attributes !width="4%"| Required !width="3%"| Default !width="86%"| Description |- | video id | yes | none | The ID of the video you would like to play or a comma separated list of videos to play. ''Please note that the use of multiple video IDs separated by a semicolon is now deprecated.'' |- | link text | yes | none | The text to display inside the link |- | video to play | no | none | The number that represents the video to play from video id if its is a comma separated list of ids. |- | player | no | ‘default’ | Player container to load video in. ''Note that the ID ‘default’ will only exist if you’ve defined a player with no ID.'' |- | initial video | ''deprecated'' | | In the original VideoLink, this would define what video to play first if multiple videos were define. Please see notes about in video id and start. |- | start | ''deprecated'' | 0:00 | In the original VideoLink, this defined the start time of a video. Since we support multiple video services, this feature can now be replicated with the urlargs parameter. For backwards compatibility, this attribute will be respect on videos with the service youtube. |} === Video link Examples === Creating a video list allows video links to create a playlist on the fly using the ''youtube'' and ''youtubevideolist'' service. ''Note: even if you define a service the system will use youtube if a list of videos is provided.''
<evlplayer id="player id" w="width" h="height" class="class" style="style" id="example-player">default content</evlplayer>
{{#evl:pSsYTj9kCHE,pSsYTj9kCHE,pSsYTj9kCHE|Play All|player=example-player}}
{{#evl:pSsYTj9kCHE,pSsYTj9kCHE,pSsYTj9kCHE|Let eet Go|1|player=example-player}}
{{#evl:pSsYTj9kCHE,pSsYTj9kCHE,pSsYTj9kCHE|Let eet Go|2|player=example-player}}
{{#evl:pSsYTj9kCHE,pSsYTj9kCHE,pSsYTj9kCHE|Let eet Go|3|player=example-player}}
== Supported Services == As of version 2.x, EmbedVideo supports embedding video content from the following services: {| class="wikitable" |- ! Site ! colspan="2"|Service Name(s) ! ID Example ! URL Example(s) |- ! [https://archive.org/details/movies Archive.org Videos] | colspan="2"|archiveorg | electricsheep-flock-244-80000-6 | https://archive.org/details/electricsheep-flock-244-80000-6 https://archive.org/embed/electricsheep-flock-244-80000-6 |- ! [http://bambuser.com/ Bambuser] | bambuser - Broadcasts | bambuser_channel - Channels | 5262334 | http://bambuser.com/v/5262334 |- ! [https://beam.pro/ Beam] | colspan="2"|beam - Streams | RocketBear | https://beam.pro/RocketBear |- ! [http://www.bing.com/videos/ Bing] | colspan="2"|bing | 31ncp9r7l | http://www.bing.com/videos/watch/video/adorable-cats-attempt-to-eat-invisible-tuna/31ncp9r7l |- ! [http://www.blip.tv/ Blip.tv] | colspan="2"|blip - Blip requires the full URL to the video page and does not accept the raw ID. | |http://blip.tv/vinylrewind/review-6864612 |- ! [https://media.ccc.de/ C3TV] | colspan="2"|mediacccde | 32c3-7305-quantum_cryptography | https://media.ccc.de/v/32c3-7305-quantum_cryptography |- ! [http://www.collegehumor.com/ CollegeHumor] | colspan="2"|collegehumor | 6875289 | http://www.collegehumor.com/video/6875289/batman-says-his-goodbyes |- ! [http://www.dailymotion.com/ Dailymotion] | colspan="2"|dailymotion | x1adiiw_archer-waking-up-as-h-jon-benjamin_shortfilms | http://www.dailymotion.com/video/x1adiiw_archer-waking-up-as-h-jon-benjamin_shortfilms |- ! [http://tvpot.daum.net/ Daum TVPot] | colspan="2"|tvpot - Obtain the URL or ID from the share menu URL. | s9011HdLzYwpLwBodQzCHRB | http://tvpot.daum.net/v/s9011HdLzYwpLwBodQzCHRB |- ! [http://www.divshare.com Div Share] | colspan="2"|divshare | | |- ! [http://edutopia.org Edutopia] | colspan="2"|Edutopia content moved to YouTube. Please use the youtube service selector below. | | |- ! [http://www.funnyordie.com/ FunnyOrDie] | colspan="2"|funnyordie | c61fb67ac9 | http://www.funnyordie.com/videos/c61fb67ac9/to-catch-a-predator-elastic-heart-edition |- ! [http://gfycat.com/ Gfycat] | colspan="2"|gfycat | BruisedSilentAntarcticfurseal | http://www.gfycat.com/BruisedSilentAntarcticfurseal |- ! [http://www.hitbox.tv/ Hitbox] | colspan="2"|hitbox | Washuu | http://www.hitbox.tv/Washuu |- ! [https://www.jwplayer.com/ JW Player] | colspan="2"|jwplayer | cr5d8nbu-8ZpoNmmJ | https://content.jwplatform.com/players/cr5d8nbu-8ZpoNmmJ.html |- ! [http://www.kickstarter.com/ Kickstarter] | colspan="2"|kickstarter | elanlee/exploding-kittens | https://www.kickstarter.com/projects/elanlee/exploding-kittens |- ! [http://www.metacafe.com/ Metacafe] | colspan="2"|metacafe | 11404579 | http://www.metacafe.com/watch/11404579/lan_party_far_cry_4/ |- ! [http://www.nicovideo.jp/ Nico Nico Video] | colspan="2"|nico | sm24394325 | http://www.nicovideo.jp/watch/sm24394325 |- ! [http://rutube.ru/ RuTube] | colspan="2"|rutube | b698163ccb67498db74d50cb0f22e556 | http://rutube.ru/video/b698163ccb67498db74d50cb0f22e556/ |- ! [http://soundcloud.com/ SoundCloud] | colspan="2"|soundcloud | use full url | https://soundcloud.com/skrillex/skrillex-rick-ross-purple-lamborghini |- ! [http://teachertube.com TeacherTube] | colspan="2"|teachertube | 370511 | http://www.teachertube.com/video/thats-a-noun-sing-along-hd-version-370511 |- ! [http://www.ted.com/talks/browse/ TED Talks] | colspan="2"|ted | bruce_aylward_humanity_vs_ebola_the_winning_strategies_in_a_terrifying_war | http://www.ted.com/talks/bruce_aylward_humanity_vs_ebola_the_winning_strategies_in_a_terrifying_war |- ! [https://tubitv.com Tubi TV] | colspan="2"|tubitv | 318409 | http://tubitv.com/video/318409 |- ! [http://www.tudou.com/ Tudou] | colspan="2"|tudou | mfQXfumwiew | http://www.tudou.com/listplay/mfQXfumwiew.html |- ! [http://www.twitch.tv Twitch] | twitch - Live Streams | twitchvod - Archived Videos on Demand | twitchplayspokemon | http://www.twitch.tv/twitchplayspokemon |- ! [http://89.160.51.62/recordme/spelain.htm Videomaten] | colspan="2"|videomaten | | |- ! [http://www.vimeo.com Vimeo] | colspan="2"|vimeo | 105035718 | http://vimeo.com/105035718 |- ! [http://vine.co Vine] | colspan="2"|vine | h2B7WMtuX2t | https://vine.co/v/h2B7WMtuX2t |- ! [http://screen.yahoo.com/ Yahoo Screen] | colspan="2"|yahoo | katy-perry-dances-sharks-2015-024409668 | https://screen.yahoo.com/videos-for-you/katy-perry-dances-sharks-2015-024409668.html |- ! [http://www.youtube.com/ YouTube] | youtube - Single Videos | youtubeplaylist - Playlists | youtubevideolist - Video List | pSsYTj9kCHE | https://www.youtube.com/watch?v=pSsYTj9kCHE https://www.youtube.com/watch?v=CW_PbErQ_c8&list=PL76E80C7F756A2047 https://www.youtube.com/watch?v=CW_PbErQ_c8&playlist=CW_PbErQ_c8,CW_PbErQ_c8 |- ! [http://www.youku.com/ Youku] | colspan="2"|youku | XODc3NDgzMTY4 | http://v.youku.com/v_show/id_XODc3NDgzMTY4.html |- |} ==Configurations== {| class="wikitable" |-- ! Variable ! Default Value ! Description |-- | $wgEmbedVideoAddFileExtensions | true | Boolean - Enable or disable adding video/audio file extensions to the list of allowable files to be uploaded. |-- | $wgEmbedVideoEnableVideoHandler | true | Boolean - Enable or disable the video media handlers for displaying embedded video in articles. |-- | $wgEmbedVideoEnableAudioHandler | true | Boolean - Enable or disable the audio media handlers for displaying embedded audio in articles. |-- | $wgEmbedVideoDefaultWidth | '' | Integer - Globally override the default width of video players. When not set this uses the video service's default width which is typically 640 pixels. |-- | $wgEmbedVideoMinWidth | '' | Integer - Minimum width of video players. Widths specified below this value will be automatically bounded to it. |-- | $wgEmbedVideoMaxWidth | '' | Integer - Maximum width of video players. Widths specified above this value will be automatically bounded to it. |-- | $wgFFmpegLocation | /usr/bin/ffmpeg | String - Set the location of the ffmpeg binary. |-- | $wgFFprobeLocation | /usr/bin/ffprobe | String - Set the location of the ffprobe binary. |} ==Version history== ; v2.7.4 * Added support for playlist to evlplayer * Added support for youtube video list * Updated Documentation for evlplayer * Added missing dependency for evlplayer in extension.json ; v2.7.3 * Default Twitch VOD to autoplay=false by default * Allow videos to be sized in 1:1 aspect ratios for special use cases. ; v2.7.2 * Added feature to evlplayer to allow default video content ; v2.7.1 * Fixed issue with youku videos not embedding properly on https enabled wikis. ; v2.7.0 * Added SoundCloud support * Added ability to use service name as a parser tag (if not defined previously) ; v2.6.1 * Added new configuration options to disable adding media handlers and file extensions. ** https://github.com/HydraWiki/mediawiki-embedvideo/issues/76 * Fixed an uninitialized array. ** https://github.com/HydraWiki/mediawiki-embedvideo/issues/77 * Fixed undefined indexes in the AudioHandler class. ** https://github.com/HydraWiki/mediawiki-embedvideo/issues/78 * Fixed class properties that were unintentionally declared as static. ** https://github.com/HydraWiki/mediawiki-embedvideo/issues/75 * Fixed RTL language issues with CSS. ** https://github.com/HydraWiki/mediawiki-embedvideo/pull/73 ; v2.6.0 * Added support for vertically aligning videos. * Improved sizing of video and audio tags in Chrome and Firefox when using the media handler tags. * Fixed an undefined variable. ** https://github.com/HydraWiki/mediawiki-embedvideo/issues/71 ; v2.5.2 * If ffmpeg is not installed on the server the FFProbe class will no longer attempt to use and instead just return generic descriptions. * Fixed properties on FFProbe being incorrectly declared as static. * Fixed issues with not returning generic descriptions when the local file being accessed by ffprobe is not readable. ; v2.5.1 * Added URL argument support to Twitch services. ; v2.5.0 * Added support for VideoLink tags * Support for Disclose.tv added * Twitch VOD support updated. * Added #evu parser tag ; v2.4.1 * Merged Sophivorus' improvements and fixes. ** Support for TubiTV.com with the tubitv service identifier. ** Fixed vimeo aspect ratio. ** Fixed dailymotion ID regex. * Fixed error messages being double parsed. ; v2.4.0 * New media handlers to embed locally uploaded video and audio files. ** Requires ffmpeg and ffprobe binaries to be installed. ** Uses HTML5 and tags. * Two new settings: ** $wgFFmpegLocation - Set the location of the ffmpeg binary. ** $wgFFprobeLocation - Set the location of the ffprobe binary. ; v2.3.3 * Support for JW Player. ; v2.3.2 * Fix auto resize breaking when leaving full screen. ; v2.3.1 * Fixed issue #54 (EmbedVideo doesn't work with mw-collapsible class) * Fixed issue #50 ("arg" should be "args" in addService) * Added "inline" alignment option * Fixed center alignment option css * Auto Resize now targets mobile as well ; v2.3.0 * Hard cut off of support for versions older then MediaWiki 1.25 * Auto Resize attribute added * Reverted array_key_exists() regression to fix the tag being broken. ; v2.2.9 * Fixed issue with Twitch.tv switching over to HTTPS. * [https://github.com/HydraWiki/mediawiki-embedvideo/pull/52 Added support for http://media.ccc.de] * [https://github.com/HydraWiki/mediawiki-embedvideo/pull/46 New services can now be added from other extensions programmatically.] ; v2.2.8 * [https://github.com/HydraWiki/mediawiki-embedvideo/pull/38 Support for Daum TVPot] * [https://github.com/HydraWiki/mediawiki-embedvideo/pull/40 Fix for URL arguments for youtube and youtubeplaylist]. * Support for Beam.pro. * Support for Hitbox.tv. ; v2.2.7 * [https://github.com/HydraWiki/mediawiki-embedvideo/pull/35 Compatible with MediaWiki 1.24.0+] ; v2.2.6 * NicoNico Video ID fixes; will work with new ID formats. ; v2.2.5 * XSS flaws reported by [https://github.com/Mischanix/ Mischanix]. ; v2.2.4 * Fix Bing to work with their new URLs. * Remove MSN as their new video service does not support embedding. * Standardize Tudou support per their wiki. ; v2.2.3 * Added support for Youku and Tudou. ; v2.2.2 * Updated regular expression replacement pattern for Twitch URLs. Old Twitch embed URLs do not automatically redirect. ; v2.2.1 * Fixed E_NOTICE being thrown for [https://github.com/HydraWiki/mediawiki-embedvideo/issues/25 undefined array indexes]. * Back ported some [https://github.com/HydraWiki/mediawiki-embedvideo/issues/23 PHP 5.3 compatibility changes]. Please note that future releases of EmbedVideo may not support PHP 5.3 as it is an outdated version. Upgrading to PHP 5.4 at a minimum is recommended. ; v2.2.0 * Fixed a bug with alignment that would cause the left align to not work similar to how MediaWiki handles images and other media. * New parser tag better suited for templates; #evt. * New HTML like tag format that can take parameters. ; v2.1.0 * The width parameter was changed to dimensions. See parameter documentation above. * New container parameter to use a standard MediaWiki thumb frame or default to a generic container. * The description parameter no longer forces the thumb frame to be used. * Added support for Archive.org, Blip.tv, CollegeHumor, Gfycat, Nico Nico Video, TED Talks, and Vine. * Ability to center align embeds. * CSS resource module. ; v2.0 * URLs from the player pages that contain the raw video ID can now be used as the ID parameter. * Validation of the raw IDs is improved. * Code base rewritten to have a VideoService class for future extensibility. * Switched to HTML5 iframes wherever possible for embeds. * All services overhauled to be up to date and working. * The 'auto' and 'center' alignment values were removed as they were not working. They are planned to be implement properly in the future. ==Developer Notes== The major benefit of using a parser function as the injection mechanism for video clips (as opposed to an extension tag) is that parser functions can utilize template parameters (of the form {{{1}}}). For example, say you found yourself making a lot of YouTube videos in thumbnail size, right-aligned like an image. You might make a template called Template:Youtube_tn which could contain this:
{{#ev:youtube|{{{1}}}|{{{2|100}}}}}
And then call it like this:
{{youtube tn|someYoutubeId}}
===Reporting Bugs=== There is an issue tracker set up on the [https://github.com/HydraWiki/mediawiki-embedvideo/issues Github project page]. ===Contributing=== Bug reports, feature requests, and patches are always welcome. New contributors can be added to the Github project if there is sufficient interest. ==Weblinks== * [http://help.gamepedia.com/Extension:EmbedVideo/Example Gamepedia Help Wiki] / [http://fr.wikimini.org/wiki/Aide:Ins%C3%A9rer_une_vid%C3%A9o French] / [http://krefeld-wiki.de/wiki/Hilfe:Video German] [[Category:Video player extensions]] [[Category:YouTube extensions]]