The plugin allows you to display the subtitles menu from the settings menu, and the CC button is only used to turn subtitles on/off.
Code snippet
// Load javascript files<script src="/videojs/videojs.min.js"></script><script src="/videojs/nuevo.min.js"></script><script src="/videojs/plugins/videojs.ccsubmenu.js"></script>// Initialize the player and pluginsconst player = videojs("my_player", {license: "license-key"})player.nuevo({ contextMenu:false, pipButton:false});player.ccsubmenu();Code snippet
const player = videojs("my_player", {license: "license-key", ccButton:false, contextMenu:false, pipButton:false })orplayer.nuevo({ ccButton:false, contextMenu:false, pipButton:false });