crazyleggs wrote:
...
Looking forward to trying it out.
Ok, alpha5 is out.
Changelog vs. alpha4:
- Patched JW Mediaplayer (temporary fix until 3.14 is out).
- Mootools compatibility fix (thanks to Ole Bang Ottosen).
- Disable express updater, if window is smaller than 214x137.
- Provide a custom event for use from within a module.
- Added 'auto' and 'autoremote' tags.
- Added scripting (enablejs param).
Furthermore, the the promised mod_avreloaded is out too

The module has just one single parameter: The video code. There, you enter the desired tag of the avreloaded plugin.
The plugin supports overwriting all parameters from within the tag (until now undocumented) and you will need this feature in order to use the module. So here is an excerpt of the doc I'm currently writing (I know, some remarks missing - simply hadnt the time yet):
The plugin parameters can be set in two ways: First, in the administration backend of the plugin, you can preset global parameters which affect all videos. Second, you can override these global settings in each tag individually. When overriding parameters, you add them - separated by spaces - inside the first part of the tag like this: {flv width="180" height="150" autostart="true"}party{/flv}. Overriding always uses a lowercase attribute name, followed by an equal sign, followed by the attribute's value quoted in double quotation marks.
The following table shows the supported parameter names, their attribute counterparts (the name to use when overriding) and their possible values:
Global SectionGlobal ParamterAttribute NameValues
Plugin ParametersContainer classavcssany class name
Plugin ParametersMaster video widthwidtha pixel value
Plugin ParametersMaster video heightheighta pixel value
Plugin ParametersiFilm video widthiwidtha pixel value
Plugin ParametersiFilm video heightiheighta pixel value
Plugin ParametersMetacafe video widthmwidtha pixel value
Plugin ParametersMetacafe video heightmheighta pixel value
Plugin ParametersFlash display modewmodewindow, transparent or opaque
Plugin ParametersFlash background colorbgcolora color value 1)
Plugin ParametersMaster audio widthawidtha pixel value
Plugin ParametersMaster audio heightaheighta pixel value
Advanced ParametersControls colorpbgcolora color value 1)
Advanced ParametersControls text colorpfgcolora color value 1)
Advanced ParametersControls highlight colorphicolora color value 1)
Advanced ParametersVideo backgroundpsccolora color value 1)
Advanced ParametersAutostartautostarttrue or false
Advanced ParametersShow digitsshowdigitstrue or false
Advanced ParametersShow volumeshowvolumetrue or false
Advanced ParametersShow iconsshowiconstrue or false
Advanced ParametersShow stopshowstoptrue or false
Advanced ParametersShow downloadshowdownloadtrue or false
Advanced ParametersShow fullscreen buttonusefullscreentrue or false
Advanced ParametersLogologoURL/relative path 2)
Advanced ParametersVideo screen modescreenmodemode identifier 3)
Advanced ParametersPlaylist sizeplsizea pixel value
Advanced ParametersStretch contentstretchstretch mode 4)
Remarks:
1. Color values can be specified in any of the following formats and are converted to the correct format automatically:
* A 6-digit hexadecimal value, preceeded by a hash sign (e.g.: #223344 like ordinary HTML syntax)
* A 3-digit hexadecimal value, preceeded by a hash sign (e.g.: #234 like CSS short syntax)
* 3 decimal values following the word rgb in parenthesis (e.g.: rgb(99,140,235) - like CSS rgb syntax)
* A 1-6-digit hexadecimal value, preceeded by 0x (e.g.: 0x2345 like in JavaScript)
* One of the 16 standardized color names as specified in HTML 4.0.1 (e.g.: red)
2. Logo images can be specified either by their absolute URL (e.g.:
http://host/logo.png) or - if locally stored on the same server - by their local path (e.g.: /images/stories/logo2.png). The logo should be png (preferred) or gif in order to support transparency. The logo is always positioned in the upper right corner of the video screen. If you like a different position you can work around this limitation by creating a larger image where most of the image is transparent.