Erweiterung:YouTube

From mediawiki.org
This page is a translated version of the page Extension:YouTube and the translation is 20% complete.
MediaWiki-Erweiterungen
YouTube
Freigabestatus: stabil
Einbindung Tag , Medien
Beschreibung Allows to embed YouTube and Niconico movies, as well as Archive.org audio and video
Autor(en) Przemek Piotrowski
Letzte Version 1.9.3
MediaWiki >= 1.34.0
Datenbankänderungen Nein
Lizenz GNU General Public License 2.0 oder neuer
Herunterladen
Beispiel Any ShoutWiki site
  • $wgYouTubeEnableLazyLoad
Quarterly downloads 272 (Ranked 26th)
Public wikis using 1,691 (Ranked 204th)
Übersetze die YouTube-Erweiterung, wenn sie auf translatewiki.net verfügbar ist
Vagrant-Rolle youtube

The YouTube extension allows users to embed YouTube and Niconico movies, as well as Archive.org audio and video.

Originally made by and for Fandom , though Fandom no longer uses this extension.

Installation

  • Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens YouTube im Ordner extensions/ ablegen.
    Entwickler und Code-Beitragende sollten stattdessen die Erweiterung von Git installieren, mit:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/YouTube
  • Folgenden Code am Ende deiner LocalSettings.php -Datei einfügen:
    wfLoadExtension( 'YouTube' );
    
  • Yes Erledigt – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Verwendung

To embed a YouTube video:

‎<youtube>foo‎</youtube>

where foo is the video ID from the URL. i.e. if the video's URL is https://www.youtube.com/watch?v=VyBSS48E4xI, then the embed code would be:

<youtube>VyBSS48E4xI</youtube>

Other supported services

See ShoutWiki's help page on using the YouTube extension for more information, such as using alternate, non-YouTube providers to embed content.

The YouTube extension allows also to embed content from these services:

Archive.org video ‎<aovideo>
Archive.org audio ‎<aoaudio>
Nicovideo ‎<nicovideo>

Setting width and height

Beispiel:

<youtube width="200" height="120">CCz1kmfqL7g</youtube>

You can change the width and height of the video box

  • Width is controlled with width="xxx", where xxx is the number of pixels.

The default is 640 pixels.

  • Height is controlled in the same way with height="xxx".

The default is 385 pixels.