Tagged Questions
The mute tag has no wiki summary.
7
votes
5answers
2k views
How can I mute/unmute my sound from PowerShell
Trying to write a PowerShell cmdlet that will mute the sound at start, unless already muted, and un-mute it at the end (only if it wasn't muted to begin with).
Couldn't find any PoweShell or WMI ...
6
votes
2answers
1k views
How to mute an html5 video player
ive found how to pause and play the video using jquery
$("video").get(0).play();
$("video").get(0).pause();
but I can't find out the mute button, if there is not jquery code im fine with just an ...
5
votes
5answers
1k views
Mute sound in Java Applet
I use a Java applet, which produces unwanted sounds to me.
Mute option in the applet is missing, and it's not possible to rewrite the source code.
I want to hear other(non-JVM) applications' sounds.
...
3
votes
4answers
2k views
How to mute the microphone c#
I wanted to know, what would the coding be if I wanted to toggle mute/unmute of my microphone. I am making a program that can run in the background and pickup a keypress event and toggle mute/unmute ...
2
votes
1answer
202 views
AVAudioSessionCategoryPlayAndRecord doesn't detect mute switch
Okay so I've been looking around for a while, and I can't seem to find an exact answer for this(probably because iOS 5 seems to have changed some of the rules with sound/mute).
I'm using ...
2
votes
0answers
127 views
How to mute the speaker with C# [closed]
Possible Duplicate:
Mute Windows Volume using C#
How to mute the speaker with C# (I'm using windows xp)?
I tried to write a code for that myself, but I wonder if there is a library ...
2
votes
2answers
430 views
How do I tell if the master volume is muted?
I am using the following to mute/unmute the master audio on my computer. Now, I am looking for a way to determine the mute state. Is there a just as easy way to do this in C#?
private const int ...
2
votes
1answer
704 views
Check to see if system volume is muted?
I am working on a project that plays audio for part of the program. I would like to be able to display a message if the user's system volume is muted. I am using Python on Windows.
2
votes
4answers
2k views
Mute Audio from Javascript?
I was sitting here wondering if it's possible to write a greasemonkey script that would detect sites like payperclick and mute the audio so the ad isn't heard.
I realize that I could accomplish the ...
1
vote
2answers
74 views
AVAudioPlayer - Muting button
I have searched for this answer and have not found it.
I have music that plays in the background when my iPhone app is launched. But I want a button so that users can mute the music. There are sound ...
1
vote
1answer
556 views
Detecting iPhone mute switch in iOS 5
I know that Apple does not provide a way to detect the state of the iPhone mute/silence switch in iOS 5. However, I have I tried a technique mentioned elsewhere to detect this by playing an audio ...
1
vote
2answers
378 views
Android mute/unmute phone
My goal is to support 2 operations:
mute phone (possibly with vibrations enabled/disabled), so when a call or sms is received it won't make noise
unmute phone and restore the volume to the state ...
1
vote
1answer
132 views
How to create a mute option
How do I create a function that toggles mute for the whole java application?
Actually all the sound comes from an external applet I load in the application.
The code for loading the applet is here: ...
1
vote
2answers
284 views
Mute YouTube sound in Delphi TWebBrowser
I'm coding a small Video Previewing tool in Delphi 2010, but I want to mute the videos programmatically, because as I said, it's for previews.
I've tried several versions of this code, but it always ...
1
vote
1answer
365 views
C# Simulate VolumeMute press
I got the following code to simulate volumemute keypress:
[DllImport("coredll.dll", SetLastError = true)]
static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);
...
1
vote
1answer
344 views
How to mute the sound of pressing volume keys only in my app on Android?
Should I just mute the volume onResume and set the volume level back onPause with AudioManager?
Or is there another proper way to do this?
Thanks!
1
vote
3answers
635 views
how to mute a movieclip?
I load a movieclip in another project. this loop.swf has music in it.
loopingLoader = new Loader;
loopingLoader.load(new URLRequest("img/loop.swf"));
addChild(loopingLoader);
After some seconds, I ...
1
vote
1answer
541 views
How to detect if the iphone is on mute
Im wondering if I can test whether the iPhone is set on mute. How can I do this? I searched for it a while but I didn't find a good solution!
Thanks
Markus
1
vote
1answer
2k views
How to mute microphone in Windows 7 with C/C++?
I made a program to mute microphone using WinAPI and it seems to work perfectly in Windows XP but doesn't do a thing in Windows 7. Is it possible to control microphone volume or mute with WinAPI in ...
1
vote
2answers
3k views
How to control Windows system volume using JScript or VBScript?
I want to control the volume of my Windows system from a JScript or VBScript script. Any ideas?
Also, can I unmute the system volume if it is muted?
0
votes
1answer
31 views
Disable Flash Audio in Browser Control .Net
Is there a way to disable Flash Audio while i'm using My Winform application which has a WebBrowser Control (gecko(firefox) and WebBrowser control IE) ?
I would block only flash audio inside the ...
0
votes
0answers
119 views
How can mute the iPhone volume from my app? [closed]
Possible Duplicate:
How do you set the hardware volume in an iPhone app?
I want to mute or decrease the iPhone/iPod volume from my application. I searched some sites through google but, i ...
0
votes
0answers
298 views
How mute/unmute works on Galaxy Tab 10.1 (Android 3.1)
I only had HTC Desire Z with 2.3.3 Android and HTC Sense 2.1. I created some AlarmClock app that seemed to work fine - what's important here, it was "overriding" phones media volume setting to asure ...
0
votes
1answer
31 views
Problems with supporting tablets and handsets simultaneously - sounds
I offer a mute option in my application, again in the settings screen, but although this mutes my sound effects, any clickable items that are pressed on the tablet still get the default click sound. ...
0
votes
1answer
247 views
mute and unmute button toggle html5 audio
i've understood how to mute an sound object by putting this code :
<a href="#" onclick="document.getElementById('ambiance').muted = true; return false">mute sound</a>
now I'm ...
0
votes
1answer
112 views
How to avoid affect of Mute Control of the device on AVPlayer
I am using AVPlayer for playing videos in my iPhone application. When I mute the device volume using Mute COntrol provided in the device, AVPlayer volume is also mute. As per the documentation this is ...
0
votes
2answers
217 views
Android MediaPlayer Mute and unmute
I am playing a video using MediaPlayer. Now there is a mute/unmute button. This toggle button should set first the video play without sound, on second press it should make its volume to its initial ...
0
votes
2answers
115 views
hiding a video and muting the sound
I'm trying to hide an embedded video using som simple jQuery and it all worked fine till turned my speakers on. The video hides fine but the sound keeps on playing in the background.
Is there a ...
0
votes
0answers
80 views
Android mutes itself?
E/MediaPlayer(20473): error (-19, 0)
I/MyApp (20473): Decoding lala.mp3
I/StagefrightPlayer( 68): setDataSource('mypath')
E/AudioFlinger( 68): no more track names available
E/AudioTrack( ...
0
votes
0answers
155 views
Mute is overridden when using the mic for recording
My initial issue was as described in the title there. When I was recording from the mic, sound effects were playing at the same time even if the device was in mute mode (i.e., had the mute button ...
0
votes
1answer
150 views
SDL mute volume in C++
How can i mute volume with SDL in C++?
The speakers are connected into the headphone jack socket. If volume unmuted i can hear background noise, but when i mute (with 'amixer set Headphone mute') it ...
0
votes
1answer
314 views
Is there a way to check the mute status? [closed]
Possible Duplicate:
How to programatically sense the iPhone mute switch?
I want my app to check wether the mute switch is toggled on or off! But there is one problem... Is there a function ...
0
votes
0answers
120 views
Android Dev: Audio overflow/sample not ready
Ok.. I think that the problem has something to do with the limitations of SoundPool but my soundboard isn't playing sounds
heres the error log: http://www.mediafire.com/?phyidlv1t4ued6m
and here's the ...
0
votes
0answers
163 views
As3 HTMLLoader Mute?
Is it possible to mute the htmlloader?
I am loading websites that I dont want any of their sounds to be playing.. I have noticed that the htmlloader has a soundtransform class, but I have had no such ...
0
votes
1answer
166 views
Simulating pressing the mute/volume up/volume down keys in Linux
I've read up on the internet about how to simulate keypresses on the keyboard in the X window system. So far, I've got a program, written in C, that works at sending key events from the traditional ...
0
votes
1answer
1k views
how to stop/mute playing music using JLayer
i am using jlayer to play mp3 files in my progam but in the jlayer documentation i could not find any useful info about stopping the playing music and continuing from where it was stopped. any ideas?
...
0
votes
2answers
513 views
Android: How to mute during phone call with headset buttons
I am using a HTC Desire with Android 2.2 and the HTC headset for phone conferencing. The headset has three buttons. <<, >, >>. During a phone call, the play button hangs up the call, the other ...
0
votes
1answer
106 views
how to write mute logic when mute state is unknown
I'm writing an indicator-sound clone for OSS4. Setting the volume works fine now, but I'm having trouble with the muting aspect of my program.
A couple of facts about muting in OSS4:
vmix doesn't ...
0
votes
2answers
581 views
iOS is it possible to play local notification sound when device is on mute
im developing alarm clock which need to wakeup when receiving local notification. but when the device on mute i cannot hear anything, im asking beacuse i saw 2 app which implemented that i.e (radio ...
0
votes
1answer
460 views
iPhone SDK - Mute
I have the following to play m background music:
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/bgMusic.mp3", [[NSBundle mainBundle] resourcePath]]];
NSError *error;
...
0
votes
1answer
130 views
App freezes while muting the phone
I am trying to toggle the microphone of Android mobile. App. freezes if I run the mute and unmute in a loop, With a delay of say 500ms. Is there a specific reason mobile behaves this way? (Motorola ...
0
votes
2answers
1k views
For the iPad or iPhone, how do you control the system Volume? For example, have a button that mutes all audio
I would like to make a button in my iPad app (probably will be similar to iPhone apps) that when I push this button, all audio is muted, even when you exit the app.
I don't see anyway that you can ...
0
votes
1answer
1k views
Check if iPhone is muted, and call a method if it gets muted in runtime
I want to check wether or not the iPhone is muted when the app starts, and I want some code to be run every time the mute-switch switches.
Is this possible?
Thanks :)
EDIT: I use an AVAudioPlayer ...
0
votes
1answer
896 views
Flash As3 Mute Button problems
I am trying to create a UI movie clip that can be used across different scenes.
It uses variables from the root scope to determine states.
When i press the mute button is works fine, however when i ...
-1
votes
1answer
99 views
Blip.TV i want the video start muted
I have this code:
<iframe src="http://blip.tv/play/h7wFArSqTA.html" width="760" height="500" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" ...