• Skip to content
  • Skip to primary sidebar
  • Skip to footer

Foliovision

Main navigation

  • Weblog
    • FV Player
    • WordPress
    • Video of the Week
    • Case Studies
    • Business
  • About
    • Testimonials
    • Meet the Team
    • We Support
    • Careers
    • Contact
    • Pricing
  • Products
  • Support
    • FV Player Docs
    • Pro Support
  • Login
  • Basket is empty

ver 2.1.2 start video muted

[Solved]

Foliovision › Forums › FV Player › Requests and Feedback › ver 2.1.2 start video muted

  • dstrijk 12 years ago

    Hi,

    Thanks for building this great plugin.
    With testing with different plugins yours is the most complete.

    One question though. The orginal flowplayer has a option to start a video muted.

    Is it possible with your player and how do i do this. I’ve check the flowplayer/flowplayer.min.js but apparently i’m guessing the from things to edit.. i usually just break the player.

    So if you could point me in the right direction, it would be sweet.

    Thanks in advance.

Viewing 23 replies - 1 through 23 (of 23 total)
  • Martin 12 years ago

    UPDATE: Global default volume added in 2.2.15

    Hello dstrijk,

    you need to add data-volume=”0″ to the Flowplayer DIV element, see here: http://flowplayer.org/docs/#html-configuration

    So you would have to modify <div id=”wpfp_…> in fv-wordpress-flowplayer/models/flowplayer-frontend.php.

    Or if you want to make this a global setting, you should be able to use this somewhere at the end of your WordPress template HEAD section: http://flowplayer.org/docs/#global-configuration

    Just like this:

    <br />
    <script><br />
    flowplayer.conf = {<br />
    volume: 0;<br />
    }<br />
    </script><br />

    However we will try to make this easier in some of the next versions.

    Please note that controlling volume won’t work on iOS: http://flowplayer.org/docs/known-issues.html

    Thanks,
    Martin

    dstrijk 12 years ago

    Thank you for your assistance.

    I will try it later tonight.
    If I get it to work the last obstacale to buy the plugin has disappeared so I’ll be advising the client to buy the plugin.

    Alec Kinnear 12 years ago
    Avatar photo

    Hi Dstrijk,

    Please let us know how it goes.

    Thanks for using FV plugins!

    dstrijk 12 years ago

    Hi,

    Still having some issues. But due too problems with my pc i haven’t been able to look at it properly.

    I do want to give a tip. The player not starts with the mute button greyed out, because the javascript put it’s muted. But the sound is playing.. so you have to click on it twice to mute the sound.

    In flowplayer.min.js I changed the muted value from true to false. Now you just have to click on it once.

    Will let you know how it goes with muting the sound on start.

    Dominic

    Alec Kinnear 12 years ago
    Avatar photo

    Hi Dominic,

    Please let us know whatever we can do to help.

    Thanks for the tip! That’s very useful.

    Making the web work for you, Alec

    Martin 12 years ago

    Hello Dominic,

    new version of the plugin (this week) will contain a WordPress filter on the generated player code. So you will be able to modify all the Flowplayer properties. So you will be able to add data-volume=”0.0″ to the player easily.

    I tested this and it was not working though. However new version of Flowplayer core script should have a fix for this in it, so keep checking our change logs and we will mention when we upgrade to new version with this working.

    Thanks,
    Martin

    dstrijk 12 years ago

    Hello Martin,

    Thanks for the update. Will watch for the new version. The version on the testsite is now at 2.15, but still looking for a way to integrate the mute option in a orderly fashion.

    Should i figure out something before the release I’ll post it.

    Thanks for your comments.

    Cheers,

    Dominic

    dstrijk 12 years ago

    Hey,

    Just thought I mention it. I still see the muted icoon off while the sound is on. So you have to press it twice.

    Probably wise to update the development version of fv-wordpress-flowplayer/flowplayer/flowplayer.min.js with the change:
    ,finished:!1,loading:!1,muted:l.muted==”false”||u.muted,paused: instead of true.

    Just a suggestion.

    Martin 12 years ago

    Hello Dominic,

    sorry about not getting back to you earlier, we upgraded to latest Flowplayer binary today (plugin version 2.1.10) which I believe should make this work by adding data-volume=”0.0″ to the FV Flowplayer div element, but it does not.

    Here’s a workaround, just put this into your template below where fv-wordpress-flowplayer/flowplayer/flowplayer.min.js loads.

    <script type="text/javascript">
    flowplayer(function (api) {
    api.bind("ready", function (e, api) {
    api.mute();
    });
    });
    </script>

    It worked for us in different browsers, but I’m not sure about iPad. If you want to change the volume, you can replace `api.mute();` with `api.volume(0.5)`. Just make sure you clear your browser cache.

    Thanks,
    Martin

    dstrijk 12 years ago

    Wow. Lot’s of updates and some very quick support. Thanks again guys.

    The api workaround works.

    I’ll keep watching the update logs if there is a change.

    But for the upcoming releases it works. Thanks a lot.

    Will get back to you, if it works on iOS. My Pad isn’t here at the moment.

    Cheers again.

    Dominic

    dstrijk 12 years ago

    Just wanted to get back to you.

    Api mute does not work on iOS but it doens’t autoplay either, so it isn’t an issue.

    It does play beautifully on all browsers and iphone/ipad. Have to test it on android.. but hey the customer/friend is happy with this player… so i’m happy.

    Thanks for all the support. If I need more editing i’ll look into your other tools because your support rocks.

    Cheers,

    Dominic

    as300182 11 years ago

    None of the suggestions work for me. For instance if I add this as suggested:

    <script>
    flowplayer.conf = {
    volume: 0;
    }
    </script>

    The volume control displays correctly but the sound is not muted and is just as loud as ever. Adding data-volume=”0.0″ to the FV Flowplayer div element doesn’t work for me either. And neither does this:

    <script type=”text/javascript”>
    flowplayer(function (api) {
    api.bind(“ready”, function (e, api) {
    api.mute();
    });
    });
    </script>

    I’m testing the latest plugin on Windows 8.1 with Firefox 3 in WordPress 3.9.1. This is a pretty fundamental omission from what is otherwise a great plugin. This one failing is preventing me from buying the pro version.

    Please, please, when is this plugin going to get proper preset volume controls (either at a global level, or for individual videos) that don’t require some sort of hack, none of which seem to work anyway?

    Thanks,
    John

    Martin 11 years ago

    Hello John,

    thank you for bringing this up, this task was unfortunately left forgotten.

    This feature was added just now. You can read all the details in our blog post: http://foliovision.com/2014/07/flowplayer-default-setting

    Thanks,
    Martin

    as300182 11 years ago

    This is fantastic news. Thanks Martin. This is now without doubt the best plugin of its type available.

    Regards,
    John

    Martin 11 years ago

    Hello John,

    thank you, we are currently working on Youtube integration (chromeless player) and secure CloudFront support.

    If you could adjusting your rating on WordPress.org now, that would be great, thanks!

    Martin

    as300182 11 years ago

    No sooner said than done. You now have a very worthy 5 stars.

    Thanks again.
    John

    Matthew G. 11 years ago

    Hi Martin,

    I use this option to start videos with no sound. Sometimes the content video loads muted, sometimes it loads with audio on. It seems more likely to play audio upon a subsequent visit.

    Thanks,
    Matt

    Martin 11 years ago

    Hello Matthew,

    we found the issue here. The fix will be included in the next release, or as a hotfix you can change api.mute() to api.mute(true) in fv-flowplayer.min.js.

    Thanks,
    Martin

    Matthew G. 11 years ago

    Awesome! Thanks for the update.

    Martin 11 years ago

    Hello Matthew,

    version 2.3.5 with this fix in it has just released.

    Thanks,
    Martin

    Matthew G. 11 years ago

    Tested this and it works great. Doesn’t conflict with the VAST/VPAID ads plug-in either. Thanks for the work guys!

    smith234 10 years ago

    Is there a way to set the volume to half?

    Martin 10 years ago

    Hello Chan,

    check Settings -> FV WordPress Flowplayer -> Player Skin -> Default Volume. Enter “0.5” to decrease the volume to 50%.

    I see that this could be changed to a sliding control to make it easier to use.

    Thanks,
    Martin

Viewing 23 replies - 1 through 23 (of 23 total)
Reply To: ver 2.1.2 start video muted



Please Sign in or Register to upload files.

Related Posts

  1. How to Use Custom Start/End Time

  2. New Chapter for Web Video: Paypal default home page 2K video background

  3. Start-up Guide

Primary Sidebar

Sign in Register
FV Player Docs Post New Topic

Welcome

to Foliovision support forums! We'll be happy to provide free support to resolve all the reported bugs. You always can start by specifying your OS and browser and steps to reproduce the bug.

If you need help with the installation on your site, please submit a request for a Pro Support Incident. We'll have you up and running in no time, with detailed instructions on how to resolve your issue yourself in the future.

Facing a hard to solve WordPress problem? On a tight deadline?

Let us take care of it for you
right now.

Pro Support Buy FV Player

Footer

Our Plugins

  • FV WordPress Flowplayer
  • FV Thoughtful Comments
  • FV Simpler SEO
  • FV Antispam
  • FV Gravatar Cache
  • FV Testimonials

Free Tools

  • Pandoc Online
  • Article spinner
  • WordPress Password Finder
  • Delete LinkedIn Account
  • Responsive Design Calculator
Foliovision logo
All materials © 2025 Foliovision s.r.o. | Panská 12 - 81101 Bratislava - Slovakia | info@foliovision.com
  • This Site Uses Cookies
  • Privacy Policy
  • Terms of Service
  • Site Map
  • Contact
  • Tel. ‭+421 2/5292 0086‬

We are using cookies to give you the best experience on our website.

You can find out more about which cookies we are using or switch them off in .

Powered by  GDPR Cookie Compliance
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

Necessary Cookies

Strictly Necessary Cookie allow you to log in and download your software or post to forums.

We use the WordPress login cookie and the session cookie.

If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.

Support Cookies

Foliovision.com uses self-hosted Rocket.chat and self-hosted Freescout support desk to provide support for FV Player users. These cookies allow our visitors to chat with us and/or submit support tickets.

We are delighted to recommend self-hosted Rocket.chat and especially Freescout to other privacy-conscious independent publishers who would prefer to self-host support.

Please enable Strictly Necessary Cookies first so that we can save your preferences!

3rd Party Cookies

This website uses Google Analytics and Statcounter to collect anonymous information such as the number of visitors to the site, and the most popular pages.

Keeping this cookie enabled helps us to improve our website.

We reluctantly use Google Analytics as it helps us to test FV Player against popular Google Analytics features. Feel free to turn off these cookies if they make you feel uncomfortable.

Statcounter is an independent Irish stats service which we have been using since the beginning of recorded time, sixteen years ago.

Please enable Strictly Necessary Cookies first so that we can save your preferences!