The information appears on each user's active status and stays on top when the player is paused. There are several parameters that allow you to control the appearance of the title and description.
- videoInfo - set true to display video info. The default is false (* required).
- title - video title text (* required).
- description - optional video description text.
- infoIcon - optional URL of the icon image to show.
- url - optional URL to go on video info click.
Code snippet
<script>const player = videojs('my_player', {license: "key"});player.nuevo({videoInfo: true,infoUrl: 'https://www.nuevodevel.com/nuevo/order',title: 'Nuevo plugin for VideoJs',description: 'Order the most advanced plugin for Videojs by Nuevodevel.com',url: 'https://www.nuevodevel.com/nuevo/order',infoIcon: "//url-to-icon-image.png"});</script>