Videojs Mirror View

Mirror view for Videojs with Nuevo plugin

Another nice feature of the Nuevo plugin is the option to switch between the normal and mirrored view (horizontally). If you enable this option (true), the mirror button appears in the control bar and becomes active as soon as the video starts to play. The button allows you to switch video view horizontally (mirror effect).
Check the mirror button in the video example above and see the Nuevo plugin setup code example below with the mirror option enabled.
Code snippet
<script>
var player = videojs('example_video_1');
player.nuevo({
mirrorButton: true
});
</script>