aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt39
1 files changed, 25 insertions, 14 deletions
diff --git a/readme.txt b/readme.txt
index 4ccdcdb..aeefb6e 100644
--- a/readme.txt
+++ b/readme.txt
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=94ETC
Tags: video, wpvideo, HTML5, videojs, mobile, playlists, embed video, librevideojs, player, video player, embed, lightweight, minimal, myvideo, responsive
requires at least: 4.2
Tested up to: 4.7.2
-Stable tag: 1.0.3
+Stable tag: 1.1.0
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -31,7 +31,7 @@ Embed video files with LibreVideoJS beautifully in WordPress, adaptable to diffe
To embed a video in a new post/page use the following Shortcode:
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" url_calidad="1080p" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" url_calidad="1080p" code="webm"]`
Here, "url" is the location of the source file of WebM Video (VP8 and VP9 encoded). You need to replace the 'url' with the actual link of the video file.
When you don't want to use multiple resolutions, there is no need to write 'url_calidad' to specify the video quality.
@@ -47,27 +47,30 @@ The parameter url is the URL of the video and url_calidad (example: 4k, 2k, 1080
Do not forget to put code="webm" or code="ogv" depending on the format of your file.
Then it is also necessary to specify with the command selector="resolution to show" the default resolution (720p, 480p, 360p, 240p, 144p), for example:
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" code="webm" url_calidad="1080p" selector="360p"]
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" code="webm" url_calidad="1080p" selector="360p"]
[calidades lvjs_calidad="720p" src_video="video720.webm" lvjs_code="webm"]
[calidades lvjs_calidad="480p" src_video="video480.webm" lvjs_code="webm"]
[calidades lvjs_calidad="360p" src_video="video360.webm" lvjs_code="webm"]
[/librevideojs_video]
`
-Solved from graphics.
**Subtitles or captions**
-To add subtitles use the command 'track' followed by the parameters: 'kind', 'subt', srclang','Label', 'default' (optional) from HTML. Solved from graphics.
-It is recommended that the subtitles are in your web site, i.e., if your website is https://www.example.com/ subtitles should be in
-https://www.example.com/subtitles/mi_subtitulo.vtt or in a similar URL. Subtitles will not be loaded if you import them from another website (http://www.another_website.com/subs/subtitles.vtt).
+To add subtitles use the command 'track' followed by the parameters: 'kind', 'subt', 'srclang', 'Label', 'default' (optional) from HTML.
+It is recommended that the subtitles are in your web site, i.e., if your website is 'https://www.example.com/' subtitles should be in 'https://www.example.com/subtitles/mysubtitles.vtt' or in a similar URL. Subtitles will not be loaded if you import them from another website (http://www.another_website.com/subs/subtitles.vtt).
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" url_calidad="1080p" code="webm" selector="360p"]
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" url_calidad="1080p" code="webm" selector="360p"]
[track kind="captions" subt="http://localhost/web/wp-content/uploads/subtitles/en.vtt" srclang="en" label="English"]
[track kind="captions" subt="http://localhost/web/wp-content/uploads/subtitles/es.vtt" srclang="es" label="Spanish" default="true"]
[track kind="captions" subt="http://localhost/web/wp-content/uploads/subtitles/pt.vtt" srclang="pt" label="Portuguese"]
[/librevideojs_video]
`
+**Skin**
+To change the color and style of the player use 'skin', by adding the name of the style ('mixblue', 'mixgrey','mixpurple', 'mixred', 'mixteal', 'mixyellow', 'materialblue', 'materialgrey', 'materialpurple', 'materialred', 'materialteal', 'materialyellow'), example:
+
+`[librevideojs_video url="myvideo.webm" code="webm" skin="mixteal"][/librevideojs_video]`
+
**Preload**
Specifies how the video must be loaded when you load the page. By default this is set to "Auto" (the video should be fully charged when the page is loaded). There area other options:
@@ -75,13 +78,13 @@ Specifies how the video must be loaded when you load the page. By default this i
* "metadata" - only the metadata must be loaded when you load the page.
* "none" - the video should not be loaded when you load the page.
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" preload="metadata" url_calidad="1080p" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" preload="metadata" url_calidad="1080p" code="webm"]`
**Controls**
Specifies that the video controls must be shown. Its default value is "true". In order to hide the controls, set this parameter to "false".
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" controls="false" url_calidad="1080p" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" controls="false" url_calidad="1080p" code="webm"]`
When you disable the controls, users will not be able to interact with your videos. It is therefore recommended that you enable the playback without using the command controls.
@@ -89,25 +92,25 @@ When you disable the controls, users will not be able to interact with your vide
Makes the video file to play automatically when the page is loaded.
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" autoplay="true" url_calidad="1080p" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" autoplay="true" url_calidad="1080p" code="webm"]`
**Poster**
Defines the image to display as a placeholder before the video is played.
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" poster="http://example.com/wp-content/uploads/poster.jpg" url_calidad="1080p" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" poster="http://example.com/wp-content/uploads/poster.jpg" url_calidad="1080p" code="webm"]`
**Loop**
Makes the video play again from the beginning when it finishes.
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" loop="true" url_calidad="1080p" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" loop="true" url_calidad="1080p" code="webm"]`
**Mute**
Specifies that the audio output of the video must be muted.
-`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvid.webm" muted="true" code="webm"]`
+`[librevideojs_video url="http://example.com/wp-content/uploads/videos/myvideo.webm" muted="true" code="webm"]`
For detailed documentation, please visit the website of the plugin [LibreVideoJS HTML5 Player](https://notabug.org/Heckyel/librevideojs-html5-player)
@@ -171,8 +174,16 @@ None
== Changelog ==
+= 1.1.0 =
+* Smart shortcode
+* New multicolors skin-material and skin-mix
+* Debugging cliplibrejs.dev.js
+
= 1.0.3 =
* Ordering the subtitles and tracks
= 1.0.2 =
* First Commit
+
+== More infos ==
+For more information, you can visit the following videos [LibreVideoJS in HTML5 Player](http://www.roaming-initiative.net/mediagoblin/u/cybersy/collection/librevideojs/) for the moment in Spanish.