Again I found a minor bug and cannot submit patch directly to master branch.
In the file: https://phabricator.wikimedia.org/diffusion/EMMV/browse/master/MultimediaViewerHooks.php
Line 157
$wgDefaultUserOptions['multimediaviewer-enable'] = true;
Should be changed to
$wgDefaultUserOptions['multimediaviewer-enable'] = 1;
I am really surprised that a official extension not following the official guide......
https://www.mediawiki.org/wiki/Manual:$wgDefaultUserOptions
Examples
To disable section editing links by default (for new and anonymous users), set the following in LocalSettings.php:
$wgDefaultUserOptions['editsection'] = 0;