Hey, i just recently found out about Drupal and am still toying around with all of its features. I have since set up a fully working install with the video module, using the default flowplayer.
What i would like to know is, how to use the video module with a different flv player, more specifically, http://jeroenwijering.com/?item=Flash_Video_Player, because it has the volume controls feature and also a full screen function. Although i am no programmer, i do know that by using this simple script in the body of my posts i can play flash videos using the other player.
var FO = {
movie:"http://website.com/Player.swf",width:"450",height:"350",majorversion:"7",build:"0",bgcolor:"#FFFFFF";,
flashvars:"file=/files/videos/video.flv&showdigits=true&autostart=false"
};
UFO.create(FO,"player1");
What i would however like to do is, make it so when you click on the play tab of a video post, the flash video is played using the other flash video player. I have set the video.module settings to use the Player.swf file, which is the new flash video player, Although the flash player loads on the play page, it doesn't load the video.
I would like to know if i can edit the video.module file and make it so that when i click on the play tab of my
video post it uses my flash player and plays the video.
I understand that this might be a really basic question, but i have searched google and the community for a solution, i even unsuccessfully attempted to edit the video.module myself.