Go Back   Free website templates > Web Template Help > Flash
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Join now to share free website templates or post on the forum. If you have never been on a forum before read the FAQ. It's quick, easy and free to join!
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-07-2008, 10:25 AM
vareside's Avatar
Senior Member
 
Join Date: Jul 2007
Posts: 254
vareside is on a distinguished road
Post jeroenwijering flv player

Hi folks,

I found a nice player that I'm currently using on my website as well. You easily add your videos, playlists, advertisements, images, colors, buttons, your logo and much more. The player was made by Jeroen Wijering and is available for download at http://www.jeroenwijering.com/. For an example check out the videos on http://www.vareside.com/en/content.php?page=videos!

Hope that some of you may use and recommend it.

Kind regards,
Max
Reply With Quote
  #2 (permalink)  
Old 06-07-2008, 01:19 PM
pezboy45's Avatar
Mod/Design & Coder [Pro]
 
Join Date: Nov 2006
Location: Hawaii
Posts: 685
pezboy45 is on a distinguished road
Send a message via AIM to pezboy45 Send a message via MSN to pezboy45
Default

Excellent!
Thank you!
I might actually use this!
Reply With Quote
  #3 (permalink)  
Old 06-27-2008, 01:02 PM
vareside's Avatar
Senior Member
 
Join Date: Jul 2007
Posts: 254
vareside is on a distinguished road
Default

Sorry, example URL has been changed to http://www.vareside.com/portal/content.php?vid=118
Reply With Quote
  #4 (permalink)  
Old 07-03-2008, 06:02 PM
Senior Member
 
Join Date: Apr 2008
Location: United Kingdom
Posts: 310
djwilson is on a distinguished road
Default

hi, i found this a couple of weeks ago and this is my 1st attempt but on the coding:

<script type="text/javascript" src="http://www.jeroenwijering.com/embed/swfobject.js"></script>

<div id="player">This text will be replaced</div>

<script type="text/javascript">
var so = new SWFObject('http://www.jeroenwijering.com/embed/player.swf','mpl','470','320','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=/upload/flash.flv');
so.write('player');
</script> In the bits in blue what do i hcnage them to? please can you show me an example and ill change to the code i reqire. Thanks.
__________________
I drive the transit you pay for petrol
Reply With Quote
  #5 (permalink)  
Old 07-04-2008, 03:36 PM
vareside's Avatar
Senior Member
 
Join Date: Jul 2007
Posts: 254
vareside is on a distinguished road
Post Coding

This is your entire script to display the player including the video.

<script type="text/javascript" src="http://www.jeroenwijering.com/embed/swfobject.js"></script>
(This above is to embed the player into the website. When you download the entire player with all required files and datas, you have to change this url and all others to the specific file location on your database.)

<div id="player">This text will be replaced</div>
(This above is the place where the player will replace the text which can be used as an information for people who have not the required Flash Player or JavaScript installed.)

<script type="text/javascript">
var so = new SWFObject('http://www.jeroenwijering.com/embed/player.swf','mpl','470','320','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=/upload/flash.flv');
so.write('player');
</script>
(The url to the player you will need to replace with the path to your file location and the path behind the variable &file= should become replaced with the path to the video file location.)

For example, the code of the player on my website:
<script type="text/javascript" src="data/swfobject.js"></script><div id="mediaspace" name="mediaspace"><embed src="data/mediaplayer.swf" width="370" height="300" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" flashvars="height=300&width=370&fullscreen=true&fi le=/portal/data/videos/vid87.flv&image=/portal/data/images/layer.jpg&enablejs=true&plugins=ltas&channel=601"> </embed></div>
It is customized to my requirements and restrictions using an object code instead of a javascript object.

A live example:
http://www.vareside.com/portal/content.php?vid=87
Reply With Quote
  #6 (permalink)  
Old 07-04-2008, 04:52 PM
Senior Member
 
Join Date: Apr 2008
Location: United Kingdom
Posts: 310
djwilson is on a distinguished road
Default

thank still slighty unsure.

<script type="text/javascript" src="audio/swfobject.js"></script>
<div id="player"><br />
This text will be replaced</div>
<script type="text/javascript">var so = new SWFObject('video/sna.flv','mpl','300','200','9');so.addParam('allowscriptac cess','always');so.addParam('allowfullscreen','tru e');so.addParam('flashvars','&file=http://www.brokenmachine.co.uk/video/sna.flv&controlbar=none');so.write('player');</script>

this is my C: set-up;

Templates 7:
all HTML pages.
Audio - swfobject
Video - sna.flv video


is this correct thanks
Reply With Quote
  #7 (permalink)  
Old 07-05-2008, 08:55 AM
vareside's Avatar
Senior Member
 
Join Date: Jul 2007
Posts: 254
vareside is on a distinguished road
Post Coding

No problem. I'd love to help.

If this is your root:
http://www.brokenmachine.co.uk/audio/swfobject.js
http://www.brokenmachine.co.uk/video/sna.flv
and your html files with the player are located in the main root at:
http://www.brokenmachine.co.uk/

Your code has to be the following:

<script type="text/javascript" src="audio/swfobject.js"></script>

<div id="player"><br>This text will be replaced</div>
<script type="text/javascript">
var so = new SWFObject('video/mediaplayer.swf','mpl','300','200','9');
so.addParam('allowscriptac cess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=video/sna.flv&controlbar=none');
so.write('player');</script>

The red part marks the Mediaplayer. You can catch up the from my website instantly here:
http://www.vareside.com/portal/data/mediaplayer.swf (right click, save as)
You have to save it then in the correct directory. You need to have it, because it's required to have a player to play the files!

So your code is basically right. You just always have to enter the correct path then nothing can go wrong.
Reply With Quote
  #8 (permalink)  
Old 07-05-2008, 01:22 PM
Senior Member
 
Join Date: Apr 2008
Location: United Kingdom
Posts: 310
djwilson is on a distinguished road
Default

thank you so much.
Reply With Quote
  #9 (permalink)  
Old 07-05-2008, 01:40 PM
vareside's Avatar
Senior Member
 
Join Date: Jul 2007
Posts: 254
vareside is on a distinguished road
Default

No problem. For further assistance, just mail me.
Reply With Quote
  #10 (permalink)  
Old 07-05-2008, 02:23 PM
Senior Member
 
Join Date: Apr 2008
Location: United Kingdom
Posts: 310
djwilson is on a distinguished road
Default

opps. ive copyed and pasted the code and the first video seems to be ok but the second one ive changed the file place sna.flv to rehersal1.flv which is in the same folder and only comes up with "this text will be....."
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:22 PM.



mouseover mouseover mouseover