HighDots Forums  

How to start the flv player at mute or low volume?

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss How to start the flv player at mute or low volume? in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
mbasnes
 
Posts: n/a

Default How to start the flv player at mute or low volume? - 03-24-2009 , 04:47 PM






Hi there, been searching for this and found no results so far!

Does anyone know if there is a parameter to set the volume on low or mute, so
that when a web surfer gets to your page he is not shocked out of his chair by
loud music? lol... I want to show a video clip, but give the user the choice on
the volume. Right now it just blares and can be quite disturbing to someone at
work...

I figured it would be something like this...
but it's not...

please help!

<param name="movie" value="FLVPlayer_Progressive.swf" />
<param name="salign" value="lt" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="volume" value="mute" />


Reply With Quote
  #2  
Old   
mbasnes
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 05:04 PM






well that part is easy, you just set the autostart option to "no"...
then they could just press the play button to start it...
my problem is, i want the vid to play, but just with no sound to start...


Reply With Quote
  #3  
Old   
Jeff
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 05:17 PM



As far as I can tell the ability to set the default player volume level can
not be set with a "param",
but,
some players do have this functionin. I like this one:
http://flv-player.net/, its open source and free.

it allows you to set the start volume with javascript, something like this:

// modify the start volume
document.getElementById("myFlash").SetVariable("pl ayer:jsVolume", "50");

hope this helps

Jeff



"mbasnes" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
Hi there, been searching for this and found no results so far!

Does anyone know if there is a parameter to set the volume on low or mute,
so
that when a web surfer gets to your page he is not shocked out of his
chair by
loud music? lol... I want to show a video clip, but give the user the
choice on
the volume. Right now it just blares and can be quite disturbing to
someone at
work...

I figured it would be something like this...
but it's not...

please help!

param name="movie" value="FLVPlayer_Progressive.swf" /
param name="salign" value="lt" /
param name="quality" value="high" /
param name="scale" value="noscale" /
param name="volume" value="mute" /




Reply With Quote
  #4  
Old   
Walt F. Schaefer
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 05:51 PM



Quote:
my problem is, i want the vid to play, but just with no sound to start...
IMO that indeed is a problem. Video or audio that plays automatically tells
your site visitor that what you want is more important than what they want.
Chances are you will increase your bounce rate geometrically.
--

Walt


"mbasnes" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
well that part is easy, you just set the autostart option to "no"...
then they could just press the play button to start it...
my problem is, i want the vid to play, but just with no sound to start...




Reply With Quote
  #5  
Old   
mbasnes
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 06:09 PM



Anyone have any ideas? I looked at that http://flv-player.net/ it's kind of
scary to me, lol.. the site looks like it's translated from some other
language. I already have something that works, (just not how I want it).
Since I'm a newbie I'm afraid to open up a whole can of worms with some
software I don't know... So what would I do anyway?

Not use the dreamweaver menu to "insert flash video" and instead just go into
code view and try to wing it?


Reply With Quote
  #6  
Old   
mbasnes
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 06:19 PM



So I went to the site, clicked on the choice for "normal", hit download and got
a zip file. I unzipped it into a directory on my desktop, now I have 4 folder
in there and 2 files. I have no idea what to do with them, and there is no
documentation for what to do next. It just assumes you are a programmer and
know what to do next...


Reply With Quote
  #7  
Old   
Jeff
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 06:36 PM



well yes... if you want a lot of control there is a price to pay .... don't
give up... experiment a bit, you might surprise yourself a how this stuff is
not as complex as it looks.

If you really don't want to try.... it will even write the code for you, go
here: http://flv-player.net/players/maxi/generator/
loop, autoplay, and autoload .... are all Boolean values 0=false 1= true
volume is a %

Jeff


"mbasnes" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
So I went to the site, clicked on the choice for "normal", hit download
and got
a zip file. I unzipped it into a directory on my desktop, now I have 4
folder
in there and 2 files. I have no idea what to do with them, and there is
no
documentation for what to do next. It just assumes you are a programmer
and
know what to do next...




Reply With Quote
  #8  
Old   
mbasnes
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-24-2009 , 11:02 PM



How cool is that!

ok so it wrote the code which I inserted into my page.. it displays great and
does exactly what I want... the only thing is it loads the player from their
site. How do I get the player onto my site? Being dependent on them would not
be good, if they took it down or changed it, the link would be broken and my
video would not play...


Reply With Quote
  #9  
Old   
Jeff
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 03-25-2009 , 08:36 AM



you will need to specify the path to your local player. search the page code
for "http://flv-player.net/medias/player_flv_maxi.swf" and that with the
path to you local media player.
If the media player and your page are both in the same folder or in the site
root, the path would be "player_flv_maxi.swf"

Jeff

"mbasnes" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
How cool is that!

ok so it wrote the code which I inserted into my page.. it displays great
and
does exactly what I want... the only thing is it loads the player from
their
site. How do I get the player onto my site? Being dependent on them would
not
be good, if they took it down or changed it, the link would be broken and
my
video would not play...




Reply With Quote
  #10  
Old   
Stephen
 
Posts: n/a

Default Re: How to start the flv player at mute or low volume? - 04-09-2009 , 10:52 PM



As I know, Moyea web player pro can adjust the volume options of
videos on website - http://www.flash-video-mx.com/web-player-pro/
Launch the software, find "Template>>Options>>Skin settings", here
there are "Mute" and "Volume" options for you to be edited. Hope it
can help you.

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.