oui_audio is a oui_player v2+ extension to easily embed HTML video provided videos in Textpattern powered websites.
oui_audio’s minimum requirements:
- Textpattern CMS v4.6+;
- oui_player v2+;
- oui_provider v1+.
- Download the compiled plugin file or the source to compile a customized file.
- Paste the content of the compiled plugin file under the “Admin > Plugins”:?event=plugin tab and click the Upload button.
- Confirm the plugin install by clicking the Install button on the plugin preview page.
- Enable the plugin and click the Options link (or visit the Preferences tab) to set the provider preferences.
After installing Composer
- Target your project directory:
$ cd /path/to/your/textpattern/installation/dir
- If it’s not already done, lock your version of Txp:
$ composer require textpattern/lock:4.6.2
, where4.6.2
is the Txp version in use. - Install oui_audio:
$ composer require nicolasgraph/oui_audio
- Follow the installation instruction above.
$ composer update nicolasgraph/oui_audio
- Check the box on the left of the plugin row under the “Admin > Plugins”:?event=plugin.
- open the select list at the bottom of the plugins table and choose Delete.
- confirm the plugin deletion.
$ composer remove nicolasgraph/oui_audio
While the <txp:oui_player />
tag is able to embed any video from any extension-related provider, the <txp:oui_audio />
tag is a shortcut to embed HTML audio videos only. It is strictly equivalent to <txp:oui_player provider="audio" />
.
Check the oui_player documentation for more informations.
- comma separated list of File ID’s;
- comma separated list of filenames using one of the following extension:
.mp3
,.ogg
,.oga
,.wav
,aac
or.flac
; - comma separated list of URL’s using one of the following extensions:
.mp3
,.ogg
,.oga
,.wav
,aac
or.flac
.
When using the <txp:oui_player />
tag (vs <txp:oui_audio />
), the right provider needs to be set if the play
value or its field related one is an ID. It is optional, but can fasten the rendering, if the value is an URL.
While some player customization elements, related to the media to play, should be used through attributes, these used as global settings should preferrably be set through the plugin preferences to avoid a massive use of tag attributes.
Of course, it is still possible to override a preference value via an attribute when needed.
width
Integer; initially not set;
The width of the player in pixels.responsive
true
orfalse
; initially set tofalse
.
Adapts the final player size from the provided width and/or height and/or ratio values to fit the container width.
Wraps the player and adds some styles.
From Txp 4.7, paramaters accepting 0
and 1
as valid values can be enable through boolean/valueless attributes.
autoplay
0
or1
; initially set to1
.
Enables the automatic playing if set to1
.controlse
0
or1
; initially set to0
.
Displays the player controls.loop
0
or1
; initially set to0
.
Reads the video over and over.muted
0
or1
; initially set to0
.
Disables the sound if set to1
.poster
URL; initially not set.
Specifies a start shot URL.preload
none
,metadata
orauto
; initially set toauto
.
Specifies the way the browser load the media.volume
0
or1
; initially not set.
Set the sound volume.
While the <txp:oui_if_player>…</txp:oui_if_player>
tag is able to check an URL against any URL from any extension related provider, the <txp:oui_if_audio>…</txp:oui_if_audio>
tag is a shortcut to check an URL against HTML audio related URL schemes only. It is strictly equivalent to <txp:oui_if_player provider="audio">…</txp:oui_if_player>
.
Check the oui_player documentation for more informations.
<txp:oui_player />
oui_player preference related field value: https://www.w3schools.com/html/horse.ogg, https://www.w3schools.com/html/horse.mp3
.
<txp:oui_player provider="audio" play="3" />
…or:
<txp:oui_audio play="3" />
<txp:oui_if_player provider="audio" play="horse.ogg">
<txp:oui_player />
</txp:oui_if_player>
…or:
<txp:oui_if_audio play="horse.ogg">
<txp:oui_audio />
</txp:oui_if_audio>
Nicolas Morand
Thank you to the Textpattern community and the core team.
This plugin is distributed under GPL v2.0.
oui_audio version 1.0.0-BETA4, Copyright © 2018 Nicolas Morand
This Textpattern plugin comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under certain conditions.
- oui_audio v1.0.0-BETA4 (2018-08-15)
- Added: MIME types managements;
- added: player width management;
- added:
.aac
and.flac
support; - changed: does not try to play non existing files (triggers errors).
- oui_player v1.3.0 (2017-05-24)