1.1.0 • Published 3 years ago
hexo-tag-dailymotion v1.1.0
hexo-tag-dailymotion
A tag plugin to embed Dailymotion video player in your Hexo blog
Installation
npm install hexo-tag-dailymotionUsage
{% dailymotion [player:player_id] [video:video_id] [playlist:playlist_id] %}Parameters
player:player_id: (optional) Identifier of your custom player configuration (See Getting Started section in Dailymotion Video player documentation.video:video_id: (optional) Identifier of the video to be loaded within the playerplaylist:playlist_id: (optional) Identifier of the playlist to be loaded within the player
All parameters are optional, but you must add either a video or playlist or the player will remains an empty black rectangle.
See Video player documentation – Dailymotion for Developers for details about how Dailymotion player works.
Example usages
Embed a video
{% dailymotion player:xakn video:x84sh87 %}will inject the following into hexo rendered page or post
<script src="https://geo.dailymotion.com/player/xakn.js" data-video="x84sh87" ></script>Embed a playlist
{% dailymotion player:xakn playlist:x79dlo %}will inject the following into hexo rendered page or post
<script src="https://geo.dailymotion.com/player/xakn.js" data-playlist="x79dlo"></script>Embed a video and a playlist
{% dailymotion player:xakn video:x84sh87 playlist:x79dlo %}will inject the following into hexo rendered page or post
<script src="https://geo.dailymotion.com/player/xakn.js" data-video="x84sh87" data-playlist="x79dlo"></script>Embed a default player
{% dailymotion video:x84sh87 %}will inject the following into hexo rendered page or post
<script src="https://geo.dailymotion.com/player.js" data-video="x84sh87"></script>Embed a player with parameters
{% dailymotion player:xakn video:x84sh87 params:startTime=15 %}will inject the following into hexo rendered page or post
<script src="https://geo.dailymotion.com/player/xakn.js" data-video="x84sh87" data-params="startTime=15"></script>{% dailymotion player:xakn video:x84sh87 params:startTime=15&mute=true&loop=true %}will inject the following into hexo rendered page or post
<script src="https://geo.dailymotion.com/player/xakn.js" data-video="x84sh87" data-params="startTime=15&mute=true&loop=true"></script>