A PeerTube extension for MediaWiki. https://www.mediawiki.org/wiki/Extension:PeerTubeEmbed
Go to file
Alex be5491f534
Merge branch 'proper-default-value'
Reviewed-on: #16
2023-10-22 13:16:02 +02:00
i18n add @metadata field 2023-02-08 21:07:59 +01:00
src Revert style changes 2023-02-11 19:47:37 +01:00
CHANGELOG.md CHANGELOG corrections 2023-02-12 15:27:04 +01:00
CONTRIBUTING.md add "And aditionally" 2023-02-09 12:55:28 +01:00
LICENSE Initial commit 2023-01-02 13:20:32 +00:00
README.md Correct PHP syntax errors in README 2023-05-01 13:40:02 +02:00
extension.json Change PeerTubeEmbedHostFilterMode to a proper default 2023-10-22 13:08:31 +02:00

README.md

PeerTubeEmbed

An extension for embedding PeerTube videos in MediaWiki articles.

Installation

Download the latest release from the Releases tab, then make a directory called PeerTubeEmbed in your extensions folder and uncompress it there.

Then add wfLoadExtension('PeerTubeEmbed'); to your LocalSettings.php file.

Usage

Simply put <peertube>URL</peertube> wherever you want the video to be embedded.

For example: <peertube>https://tilvids.com/w/vsMQtvP2Nc6dkKVue7dFt2</peertube>

Configuration

This extension has 3 configuration variables. You can add these to your LocalSettings.php file.

  • $wgPeerTubeEmbedDisableP2P: If set to true, disable P2P playback in embeds. Example: $wgPeerTubeEmbedDisableP2P = true;.
  • $wgPeerTubeEmbedHostFilterMode: Accepts one of two values, allow ($wgPeerTubeEmbedHostFilterMode = "allow";), which only creates the embed if the host is in the host filter, and deny ($wgPeerTubeEmbedHostFilterMode = "deny";), which refuses to create the embed if the host is in the host filter.
  • $wgPeerTubeEmbedHostFilterList: An array holding a list of domains. How this array is interpreted depends on what PeerTubeEmbedHostFilterMode is set to. To add entries add $wgPeerTubeEmbedHostFilterList[] = "DOMAINNAME.TLD"; on your LocalSettings.php. For example: $wgPeerTubeEmbedHostFilterList[] = "tilvids.com";.

See also $wgCSPHeader.

License

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.