====== Video Share Plugin ====== ---- plugin ---- description: Easily embed videos from various Video Sharing sites like YouTube or Vimeo author : Andreas Gohr email : andi@splitbrain.org type : syntax lastupdate : 2024-03-24 compatible : !Hogfather, !Igor, Jack Jackrum, Kaos depends : conflicts : dailymotion similar : dailymotion, slideshare, oEmbed tags : media, video, embed, youtube, gdpr downloadurl: https://github.com/splitbrain/dokuwiki-plugin-vshare/zipball/master bugtracker : https://github.com/splitbrain/dokuwiki-plugin-vshare/issues sourcerepo : https://github.com/splitbrain/dokuwiki-plugin-vshare donationurl: http://donate.dokuwiki.org/vshare ---- This plugin allows you to embed video players from various video sharing sites. New services can be added by just editing a config file. This is **not** for displaying local video files. ===== Download and Install ===== Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually. ===== Usage/Syntax ===== The basic syntax looks like this: ''%%{{%%//videosite//>//videoid//?//parameter1¶meter2//|title%%}}%%'' * Where ''//videosite//'' is one of the identifiers listed in [[#Supported Services]] chapter * and ''//videoid//'' is the identifier of the video at the respective site * The ''//parameters//'' are optional. You start these with a ''?'' and separate more of them by a ''&''. Look in [[#Parameters]] chapter * The title is optional as well. Look in [[#Examples]] chapter * The video can be aligned by adding spaces on the left or right inside the curly brackets (like in the image syntax). Look in [[#Examples]] chapter A toolbar button pops up a prompt where you can simply paste the full URL to the page of the video you want to embed. The plugin will then try to figure out the video ID by itself. For some services you may need to paste a special URL. See the table below. === Parameters === When embedding a video you should add a size parameter. You can either give it in the form: * ''//width//x//height//'' like ''500x300'' * or use the keywords ''small'', ''medium'' or ''large'' * you can also use the keywords ''full'' or ''half'' to have the video adjust to the available screen width (either 100% or 50% width) All additional parameters will be passed on as-is to the video service. Refer to their documentation for what is available. There are also hints in the table below. ==== Examples ==== Display a YouTube Video: {{youtube>L-WM8YxwqEU}} Show a larger player: {{youtube>L-WM8YxwqEU?large}} Right-align the player: {{ youtube>L-WM8YxwqEU}} Show a small, centered player: {{ youtube>L-WM8YxwqEU?small }} Show a small, centered player with a title (look for right space!): {{ youtube>L-WM8YxwqEU?small |Some funny video}} Some other additional parameters are supported (depending on video service) as well: {{youtube>L-WM8YxwqEU?small&start=30&end=45|A random segment of 15 seconds}} ==== Supported Services ==== Copy paste the video url in the toolbar pop-up prompt to generate the syntax ^ Identifier ^ Website ^ Comments ^ Supported parameters ^ | youtube | [[https://www.youtube.com/|YouTube]] | | start, end, rel, autoplay | | vimeo | [[https://www.vimeo.com/|Vimeo]] | | autoplay | | slideshare | [[https://www.slideshare.com|Slideshare]] | paste the Wordpress shortcode | startSlide | | dailymotion | [[https://www.dailymotion.com/|Daily Motion]] | | start | | twitchtv | [[https://www.twitch.tv|Twitch.tv]] | | chapter_id, initial_time | | archiveorg | [[https://archive.org/|Archive.org]] | | | | soundcloud | [[https://soundcloud.com|SoundCloud]] | | | | niconico | [[https://www.nicovideo.jp|NicoNico]] | | | | break | [[https://www.break.com|Break]] | | | | bitchute | [[https://www.bitchute.com|BitChute]] | | | | coub | [[https://coub.com|Coub]] | | | | odysee | [[https://odysee.com/|Odysee LBRY]] | paste the embed or download URL | | | youku | [[https://youku.com|Youku]] | unclear if working | | | bilibili | [[https://www.bilibili.com|bili bili]] | | | | msoffice | | unclear if working | | | msstream | | unclear if working | | For other video sharing sites not supported by vshare, particularly those using [[https://joinpeertube.org|PeerTube]], you could use the [[plugin:oembed|oEmbed plugin]] to embed videos and other medias ===== Configuration ===== When enabling the ''gdpr'' option, videos will not be embedded right away. Instead the user needs to click on the embed first. This will embed the video. The ''extrahard'' option will set a whole bunch of extra attributes on the iframe, instructing the browser to access the video in it's own sandboxed context. This will send less personal data to the video site but will also disable features logged in users might usually expect. Eg. ad-less videos for premium subscribers, the use of watch-later lists, etc. Enabling the ''debug'' option enables the syntax macro ''%%~~vshare-debug~~%%''. Using that macro in a page, will embed a video from each of the configured video sites. This makes it easy to check that all services still work as expected. It is probably only useful for developers. ===== Adding new services ===== New services can easily be added by editing the ''sites.ini'' file in the plugin's main directory. Each service expects the following settings: | url | The URL that will be loaded into an iframe, should contain at least @VIDEO@ placeholder which will be replaced by the video ID. | | vid | A public sample video ID used for testing | | web | The full URL to the website for the video identified by ''vid'' above | | emb | An optional special URL to use for extracting the ''vid'', sometimes needed when the VideoID is only available in special URLs | | rex | A regular expression that can extract the ''vid'' from the ''web'' or ''emb' url. It has to contain a single capturing group. It's used in the toolbar mechanism | | nfo | An option hint on how to find the right URL to paste, currently not used anywhere | Pull requests providing this data are welcome. ===== Changes ===== {{rss>https://github.com/splitbrain/dokuwiki-plugin-vshare/commits/master.atom date}} Please report bugs and request features at the [[https://github.com/splitbrain/dokuwiki-plugin-vshare/issues|issue tracker]].