Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Change the watermark logo for all vidoes?


I've purchased the licensed copy (5.7), installed it, the JW Player watermark is gone. Now I want to add our logo, link, etc in where the JW Player one used to be. I'm using the following syntax to embed my videos:
bc.. <div id="JWcontainer">Loading the player ...</div>
<script type="text/javascript">
jwplayer("JWcontainer").setup({
flashplayer: "/multimedia/JWplayer/player.swf",
file: "/multimedia/file1.mp4",
image: "/images/file1.jpg",
height: 272,
width: 408
});
</script>


How do I add the logo in? I would like to do this in one place so it updates all my videos all over the site. Is there a way to do that? Or does it have to be done with every video embed?

21 Community Answers

JW Player

User  
0 rated :

@e

add the following to your code above.
for example; *you would have to change the parameters to suit your needs*

bc.. logo:
{
file: 'your path and logo file',
hide: 'true',
over: '1',
out: '1',
timeout: '7',
position:'top-left',
margin: '10'
},


Ethan Feldman

JW Player Support Agent  
0 rated :

Explained here in our docs – http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/12536/configuration-options#logo

JW Player

User  
0 rated :

But both of those codes are at each video embed level right? I would like to do it globally one time and not have to find and update all my videos. Is there a way to do this globally - to the main file or something?

Ethan Feldman

JW Player Support Agent  
0 rated :

You can do this with a config.xml file.

JW Player

User  
0 rated :

Do you have an example of how to do it with a config.xml file?

Ethan Feldman

JW Player Support Agent  
0 rated :

Here is a sample config.xml – http://www.longtailvideo.com/jw/upload/config.xml, you can add logo variables there

JW Player

User  
0 rated :

@ethan
You can have a different config for every video? Where do you put the config in the jwplayer setup javascript? What parameter takes that file?

JW Player

User  
0 rated :

Nevermind, think I found the documentation.

Ethan Feldman

JW Player Support Agent  
0 rated :

cool.

JW Player

User  
0 rated :

HOw to I add logo to this script

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

<div id='mediaspace'>This text will be replaced</div>

<script type='text/javascript'>
var so = new SWFObject('player.swf','mpl','470','320','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://www.longtailvideo.com/jw/upload/bunny.flv');
so.addVariable('plugins','hd-1');
so.write('mediaspace');
</script>

Ethan Feldman

JW Player Support Agent  
0 rated :

Under:

so.addVariable(‘file’,‘http://www.longtailvideo.com/jw/upload/bunny.flv’);

Add:

so.addVariable(‘logo.file’,‘your_logo.png’);

JW Player

User  
0 rated :

I've purchased the licensed of player, Now I'm using the following syntax for logo.
'logo.file':'<?php echo base_url(); ?>logo.jpg',
'logo.hide':false,
'logo.link':encodeURI('http://my domain/'),
'logo.position':'top-right',
normaly it appear when any video run but when i am doing stream ,it disappear.how to solve this problem?

Ethan Feldman

JW Player Support Agent  
0 rated :

Link?

JW Player

User  
0 rated :

A little help please. I tried this based on what I'd read in the configuration options and what's been posted here, but nothing shows up. What could I be missing or improperly writing?


<div id="Container1">Loading the player ...</div>
<script type="text/javascript">
jwplayer("Container1").setup({
flashplayer: "player.swf",
file: "BASoVid.mp4",
image: "1stimage.jpg",
height: 480,
width: 640,
logo:
{
file: 'BASo logo.png',
hide: 'false',
position: 'bottom right',
margin: '10'
}

});
</script>

JW Player

User  
0 rated :

Somehow the posting stripped the spacing that I used when posting. I have the spacing just as written above by Ethan.

JW Player

User  
0 rated :

link?

do you have a licensed JWPlayer?

Ethan Feldman

JW Player Support Agent  
0 rated :

Chances are, you are using the free player, if the logo is not showing up.

JW Player

User  
0 rated :

Thanks for the fast answers. I actually figured out that for some reason it works online but when I do it locally on my computer, the logo doesn't show up. The same goes for the HD plugins. Perhaps the plugins just work over the internet and not when just done on the computer as a test.

Here is a link to a test page I'm working on. I'm testing a few different things, but for this very phase I'm in, The logo and HD plugin are what I was after and both seem to work when I take a look at them online now so that's perfect.

http://www.bailasociety.tv/public/850.cfm


btw, any feedback on my page would be more than welcome.

Any idea of a place where I could find some good info on the best parameters to use for my high quality videos? The HD video I have up right now to be fetched when the toggle is pressed seems to take some time to load through even on my computer and I'm running on a cable modem with 6 gbs of RAM and about 80% of my PC space unused.

Is there a way to eliminate the start and stop (streaming) style of loading that it does now and somehow pre-load the video so that it just runs through from beginning to end without stopping?

JW Player

User  
0 rated :

btw, the HD is only 17secs to from that point on I understand why it's freezing. My question pertains to the pauses before the 17sec mark

JW Player

User  
0 rated :

I wonder what the bitrate is as a too high of a bitrate can yield the results seen.

Ethan Feldman

JW Player Support Agent  
0 rated :

Your logo shows up correctly for me.

This question has received the maximum number of answers.