Mar. 18, 2009Tom
Video not playing after applying skin.
I got the JW player and a flv movie... working.
I added the code to embed a skin to the player. I see the new skin, but the video is not working anymore. I keep pressing play and nothing... as soon as I'm removing the skin-code (from the html) the video is working...
basic stuff no php...
Mar. 19, 2009Makhan
Video not stopping after applying skin
I tried two skins same problem. When I click to stop, then no sound but video continue to play.
Mar. 20, 2009tayfun
[b][/b]
Mar. 20, 2009tayfun
[code][/code]
Mar. 20, 2009ziggy
Same here. Added skin to code and video no longer plays. Skin shows ok. Skin added was snel.swf.
Mar. 21, 2009juliana_mae
I'm having the same problem trying to implement in Indexhibit.
Mar. 21, 2009juliana_mae
I'm trying a test here:
http://lesliefurlong.com/art/ndxz-studio/site/sample/test.html
The skin is not working, I can't figure out why.
Here's the code.
<div id="preview" class="preview">
<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Get the Adobe Flash Player to see this video.</a>
</div>
<script type='text/javascript' src='http://lesliefurlong.com/art/video/swfobject.js'></script>
<script type='text/javascript'>
var s1 = new SWFObject('http://lesliefurlong.com/art/video/player.swf', 'player', '320', '240', '9.0.124');
s1.addParam('allowfullscreen', 'true');
s1.addParam('allowscriptaccess', 'always');
s1.addVariable('file','http://lesliefurlong.com/art/video/interference.flv&autostart=true');
s1.addVariable('skin', 'http://lesliefurlong.com/art/video/modieus.swf');
s1.write('preview');
</script>
Thanks for any help!
Mar. 27, 2009Tom
So, I'm back again - I see I'm not alone into this and nobody from their support is seems to help us... anyway they want to sell that glitch product with great issues for money...
hilarious.
Hey LongTailVideo are you reading this ?!?
Mar. 29, 2009lefTy
@juliana_mae,
Seems that there is no modieus skin file here:http://lesliefurlong.com/art/video/modieus.swf
Apr. 10, 2009juliana_mae
@lefTy
Thanks for taking a look.
According to cyberduck modieus.swf is in the video folder. Is there another file that should be there also?
Apr. 10, 2009juliana_mae
As a test, I tried using the identical source code from the example on longtailvideo.com:
http://lesliefurlong.com/art/ndxz-studio/site/sample/test.html
It works until I get to the step where I change the path to where I have uploaded the skin. At first glance, it seems like lefTy says, that the modieus.swf file must not be there. But it is there!
<div class="skinpreview"><script type="text/javascript" src="http://lesliefurlong.com/art/video/swfobject.js"></script>
<div name="mediaspace" id="mediaspace">
<script type="text/javascript">
var so = new SWFObject('http://lesliefurlong.com/art/video/player.swf','single','320','240','0');
so.addVariable('fullscreen','true');
so.addParam("allowfullscreen","true");
so.addParam("wmode","opaque");
so.addVariable("file", "http://lesliefurlong.com/art/video/interference.flv&autostart=true");
so.addVariable("skin", "http://www.longtailvideo.com/files/skins/modieus.swf");
so.write('mediaspace');
</script></div></div>
Apr. 15, 2009juliana_mae
FYI for all others with this problem:
I figured it out - you have to change the permissions on your skin.swf file.
Apr. 16, 2009carface
How do you do that?
Apr. 16, 2009carface
What settings do you need to change?
Apr. 17, 2009carface
Ok went back through some of the posts and tried changing my code and it worked finally at 5am in the morning!!
This was the code I had:
<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This div will be replaced</div>
<script type='text/javascript'>
var s1 = new SWFObject('player-viral.swf','ply','470','260','9','#');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addParam('flashvars','file=video.flv');
s1.addParam('flashvars','skin=bekle.swf');
s1.write('mediaspace');
</script>
I just changed the last two addParam lines to these:
s1.addVariable('skin', 'bekle.swf');
s1.addVariable('file', 'video.flv');
That worked for me although I dont have a website it was just getting these working locally so Im not sure if this will help people who having this problem on their websites but Im tired now and gnna sleep!
Apr. 29, 2009xanderv
@juliana_mae
Thanks so much for that tip! Hit the same problem you had and just checked the permissions...changed 'em, works like a charm!
Sep. 24, 2009Lara
<script src="plugins/content/avreloaded/swfobject.js" type="'text/javascript'"></script>
<div id="mediaspace">qq coisa</div>
<script type="'text/javascript'">// <![CDATA[
var s1 = new SWFObject('plugins/content/avreloaded/player-viral.swf','ply','470','260','9','#');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addVariable('skin', 'plugins/content/avreloaded/modieus.swf');
s1.addVariable('file', 'images/stories/videos/87602264_104.flv');
s1.write('mediaspace');
// ]]></script>
Hi, i have this code, but, the video never shows up!
help please!!!!
Sep. 24, 2009Lara
i change that to
<script src="plugins/content/avreloaded/swfobject.js" type="'text/javascript'"></script>
<div id="mediaspace">qq coisa</div>
<script type="'text/javascript'">// <![CDATA[
var s1 = new SWFObject('http://unit-collective.tv/site/plugins/content/avreloaded/player-viral.swf','ply','470','260','9','#');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addVariable('skin', 'http://unit-collective.tv/site/plugins/content/avreloaded/modieus.swf');
s1.addVariable('file', 'http://unit-collective.tv/site/images/stories/videos/87602264_104.flv');
s1.write('mediaspace');
// ]]></script>
and doesnt work ...
Sep. 29, 2009yola
my videos on my web site disappeared and the embedded flash player says " undefined" Can't fix it, please HELP, thx Yola
Here are some helpful links to learn more about the JW Player™:
Earn money with ads from LongTail's AdSolution. Watch our demos and sign up now!
If you don’t buy a commercial license, you cannot use a JW Player™ on (i) a site that has ads; (ii) a corporate site; or a (iii) CMS. Our licenses are very inexpensive, so what are you waiting for? Buy a license today.