Custom Video Tag Player
Design and Skin Customization
There's two basic concept angles to come at it from:
1) include it as part of your skin.
2) create it as a stand alone module.
The first is probably simpler to get setup but not as flexible the second takes more effort to get setup but is much more reusable/distributable.
An example of it in a skin is: Take a look through the code base search for 'jrPost_video_action_player' You will find it in /skins/jrPost/include.php in the _init() function and also as a file in /skins/jrPost/jrPost_video_action_player.tpl
then in use like this
{jrCore_media_player type="jrPost_video_action_player" module="jrVideo" field="video_file" item_id=$item.action_item_id autoplay=false}
Thats an example of a skin over-ride of the player code with new player code.
(I haven't looked at this area in a few years)
The second method involves creating a module, i'll need to get refreshed on how this would work.