Anyone know the quickest way to disable autoplay / autostart (even if users enables it in the MEDIA tags) ?
Is it possible to hardcode a value of 0 / no / false somewhere for the autoplay value?
Maybe something around here in includes/class_anymedia.php?
PHP Code:
var $_mediaInfo = array(
'width' => 0,
'height' => 0,
'autoplay' => '',
'extension' => '',
'loop' => 0,
'url' => '',
'link' => '',
'mime' => '',
'type' => '',
'id' => 0,
'layout' => 0,
'extra' => array()
);
Or maybe it would just be easier to strip the media tag flags when they are submitted (if you're worried about getting thread-DOS'ed via autoplay)