Videojs - Video Title Overlay

Video title overlay for videojs with Nuevo plugin.

videoInfo option available for Nuevo plugin allows to overlay video title and optional video description on player.
Video info appears on each user active status and on pause event.
There are several optional parameters that allow you to control video info appearance.
  • infoTitle - optional custom title text that you may wish to display. *
  • infoDescription - optional video description text.
  • infoIcon - optional Url of the icon image to show.
  • infoUrl - optional URL to go on info click.
* If infoTitle not defined, the player will examine the title Nuevo plugin option. If both not defined, video info will not show.


See Nuevo plugin setup code example below.
Code snippet
<script>
var player = videojs('example_video_1');
player.nuevo({
videoInfo: true,
infoUrl: 'https://www.nuevodevel.com/nuevo/order',
infoTitle: 'Nuevo plugin for VideoJs',
infoDescription: 'Order the most advanced plugin for Videojs by Nuevodevel.com',
url: 'https://www.nuevodevel.com/nuevo/order',
infoIcon: "//url-to-icon-image.png"
});
</script>