MediaElement.js search results are mixed

Asked 1 years ago, Updated 1 years ago, 29 views

I am using MediaElement.js, and the following message will be reflected in Google's search results.

Initializing...stage:500x375 file:[Video path] autoplay:false 
                preload: none isvideo:true smoothing:false 
                timerrate:250 displayState:true 
                ExternalInterface.available: true ExternalInterface.objectID

I would appreciate it if you could tell me how to solve this problem.
Thank you for your cooperation.

add

Below is the code I am using.

$('audio,video') .mediaelementplayer({
    defaultVideoWidth:320,
    defaultVideoHeight: 240,
    startVolume: 0,
    pauseOtherPlayers: true,
    success: function(player, node) {
        $('#'+node.id+'-mode') .html('mode:'+player.pluginType);
    }
});

Additional 2
The reason seemed to be because of the flash in MediaElement.js.

javascript

2022-09-30 19:27

1 Answers

MediaElement.js debug option is enabled. Add the following to options to disable debugging options:

enablePluginDebug:false, 

It is unclear from the question why, where, and why it was enabled.There may be a problematic description elsewhere in the source.Try washing the words "debug" that appear in the source.


2022-09-30 19:27

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.