Videojs Mirror View

Mirror view for Videojs with Nuevo plugin

Nuevo plugin for Videojs another nice feature is the option to switch between the normal and mirrored view (horizontally). Mirror view option is disabled by default (false). If enabled (true) Mirror button appears in control bar and becomes active as soon as the video started to play. It allows to switch video view horizontally (mirror effect.)
Check mirror button in the video example above and see 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>