Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
354 views

How to tell in code if the user has “Locked the Volume” in their settings menu

Currently, I'm setting the volume to max, and then checking if the volume is at max, or a lower value. If it's at a lower value, then the user must have a Volume Lock on their system. This works ...
11
votes
7answers
4k views

Get Master Sound Volume in c#

I need to get the current volume of what that outs to the sound card, for example, this value: Any ideas how? Thank you.
10
votes
4answers
200 views

Can a Python list, set or dictionary be implemented invisibly using a database?

The Python native capabilities for lists, sets & dictionaries totally rock. Is there a way to continue using the native capability when the data becomes really big? The problem I'm working on ...
9
votes
3answers
661 views

Setting volume with java

Good day! I'm developing an application that plays a MIDI. It plays fine, but I often get quasi-bug reports: 'there is no sound playd'. The answer is always, to enter into volume controller and turn ...
9
votes
5answers
11k views

Mute Windows Volume using C#

Anyone know how to programmatically mute the Windows XP Volume using C#?
8
votes
3answers
185 views

Volume rendering: confusion with front-to-back compositing

In, for example, GPU Gems the front-to-back compositing equation (for colour) is C'i = (1 - A'i-1)Ci + C'i-1 where C'i is the output accumulated colour value; A'i-1 is the accumulated alpha ...
7
votes
4answers
5k views

AVAudioPlayer fade volume out

I have an AVAudioPlayer playing some audio (duh!) The audio is initiated when the user presses a button. When they release it I want the audio to fade out. I am using Interface builder...so I am ...
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
1answer
556 views

How to display a 3D plot of a 3D array isosurface in matplotlib mplot3D or similar?

I have a 3-dimensional numpy array. I'd like to display (in matplotlib) a nice 3D plot of an isosurface of this array (or more strictly, display an isosurface of the 3D scalar field defined by ...
6
votes
2answers
4k views

iOS Change Device Volume

Is there a way to change the volume of the device? I've seen several apps do it. I have a dekstop version of the iOS app, and the device will be able to be controlled to some extent over the ...
6
votes
1answer
554 views

Controlling application sound volume in Delphi

I'm not even sure if this fits into one question, but it is a single problem. I have an internet radio player written in Delphi XE, using the BASS library for audio streaming and playback. The ...
5
votes
1answer
121 views

A slider for curses based UI

As a learning project, I'd like to set-out to make an ncurses-based UI for a program I had in mind, written in python. After looking at urwid documentation, I cannot see anyway to create a simple ...
5
votes
2answers
411 views

Get System Volume iOS

So many threads on this subject and none with the perfect answer. My case is simple: I need to play a warning signal and want to make sure the user will hear it, so I want to check the system volume. ...
5
votes
1answer
140 views

Non-linear volume for HTMLMediaElement

I've written my own media player interface using javascript and html5. Currently my volume slider maps to the browser's volume attribute 1:1. I'd quite like to adjust this to account for perceived ...
5
votes
1answer
439 views

OpenGL stencil buffer OR operation?

I'm not sure if this is possible to do, but it's worth a shot. I'm using the stencil buffer to reduce overdraw for light volumes in a deferred renderer using this algorithm (when the camera is outside ...
5
votes
4answers
3k views

How to calculate the volume of a 3D mesh object the surface of which is made up triangles

I want to calculate the volume of a 3D mesh object having a surface made up triangles. Could you help me. Thank in advance Best Regards. Can
5
votes
6answers
5k views

Set Ubuntu Sound Volume on boot

The Ubuntu startup/login sound can be very loud, but I do like having it. I wrote a script that uses amixer to set the volume to 25%. This is the level I like to have it at, but when I use TV out or ...
4
votes
3answers
352 views

Running MySQL on Amazon EC2 with EBS

I have a production server whose MYSQL may not be backed up. The instance in question has an EBS backed root device (/dev/sda1), which is persistently storing files. It's not clear to me whether it ...
4
votes
1answer
221 views

How to display a volume with non-cubic voxels correctly in mayavi

I'm using mayavi (3.3.2) to display volume isosurfaces. Generally, my volumes do not have cubic voxels; for example, the sampling grid might be 1mm x 1mm in X and Y, but 1.4mm in the Z direction. ...
4
votes
1answer
487 views

iPhone: How to play local notification sound loud independent of volume setting?

The FoneHome iPhone app has a feature where you can play a sound as part of a local notification. That sound is loud regardless of what the iPhone's volume level is set at. How is it possible to get ...
4
votes
1answer
2k views

How to get a volume measurement of iPhone recording in dB, with a limit of at least 120dB

I am trying to make a simple volume meter for the iPhone. I want the volume displayed in dB. When using this turorial, I am only getting measurements up to 78 dB. I've read that that is because the ...
4
votes
1answer
613 views

How to mute Windows with WPF?

I am learning C# and WPF and had an idea for a little utility. I want a big red button that will do only one thing: completely mute/un-mute all Windows sounds (system beeps, WMP, DVD player, etc...) ...
4
votes
4answers
8k views

How do I reproduce this heart-shaped mesh in MATLAB?

I want to plot a heart shape in framework as shown in the following image (found on the website zedomax.com/blog/2008/09/03/i-love-meth-t-shirt/): I have tried to make it by using this MATLAB ...
4
votes
1answer
2k views

Marching Cube Question

i currently writing a program to implement Marching Cube using C++ and Opengl. However, my best reference is only from http://local.wasp.uwa.edu.au/~pbourke/geometry/polygonise/ in the web, the ...
4
votes
4answers
5k views

change volume win32 c++

How would I go about changing the sound volume in c++ win32? Also how would I mute/unmute it? Thanks for the help!
4
votes
2answers
8k views

Changing master volume level

How can I change the master volume level? Using this code [DllImport ("winmm.dll")] public static extern int waveOutSetVolume (IntPtr hwo, uint dwVolume); waveOutSetVolume (IntPtr.Zero, ...
4
votes
1answer
3k views

How do you set the hardware volume in an iPhone app?

Some iPhone applications, such as Pandora seem to directly manipulate the hardware volume and respond to physical volume button. How is this done? AudioSessionServices allows you to get the current ...
3
votes
2answers
109 views

Good algorithm for computing volume or surface area in python

I am trying to compute the volume (or surface area) of a 3D numpy array. The voxels are anisotropic in a lot of cases, and I have the pixel to cm conversion factor in each direction. Does anyone ...
3
votes
2answers
108 views

Controlling volume in a java application

I am fairly new at java. I need to control volume (volume up/down, mute) in a java application. I couldn't find a way to do this. I am developing on a linux system (for information). I tired this ...
3
votes
0answers
122 views

How windows calculates volume unique id?

As far as I understand Windows driver (ftdisk) creates object "HardDiskVolume" for each volume it finds on the system and creates registry record for it: HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices\ ...
3
votes
1answer
68 views

Redirect to volume settings in blackberry

Actually i am developing one application in blackberry. In that application if i click one button it redirects to blackberry mobile volume settings. How can we do that? it supports any blackberry ...
3
votes
2answers
432 views

Android - Is there a broadcast action for volume changes?

I'm programming a small widget that needs to be updated whenever the user changes the ringer volume or the vibrate settings. Capturing android.media.VIBRATE_SETTING_CHANGED works just fine for the ...
3
votes
3answers
314 views

Interpolating along the 2-D image slices

I have a set of 100 2-D image slices of the same size. I have used MATLAB to stack them to create a volumetric data. While the size of the 2-D slices is 480x488 pixels, the direction in which the ...
3
votes
1answer
704 views

AVPlayer Questions, while Live Streaming (iOS)

I have AVPlayer Questions. 1.How to control the volume of it? 2.How to know if the AVPlayer is reloading music because bad connection, do i have some inidication of it?
3
votes
2answers
407 views

Multimedia volume instead of Phone volume in Android

I'm making a simple music application for android. It's working fine, but when I want to change the multimedia volume I can't make it directly from the application. If I click the volume up/down ...
3
votes
3answers
317 views

Volume from byte array

I'm new to audio analysis, but need to perform a (seemingly) simple task. I have a byte array containing a 16 bit recording (single channel) and a sample rate of 44100. How do I perform a quick ...
3
votes
1answer
500 views

Modify volume gain on audio sample buffer

I want to increase a volume on buffer with voice data. The point is I'm using DirectSound and I have one primary and one secondary buffer - all streams mixing is done by hand. In a voice chat all ...
3
votes
1answer
888 views

openal pitch shift

Can anyone tell me why the volume becomes lower when I make the pitch higher in openal? The higher the pitch, the lower the volume..... alSourcef(source, AL_PITCH, 1.2f); alSourcef(source, AL_GAIN, ...
3
votes
2answers
605 views

iPhone SDK - How to disable the volume indicator view if the hardware buttons are pressed?

Is there any way to prevent the volume indicator view form showing if you press the volume up/down hardware bottons? It's needed for a demo app only. So the method don't need to be App Store safe.
3
votes
1answer
1k views

Volume control using UIslider Iphone?

i am creating a application in which sound is played when a button is pressed and using a UISlider with which volume can be adjusted.Sometimes the volume of sound is too high and sometimes its too low ...
3
votes
4answers
469 views

How do I reverse my sound volume math for my volume slider?

I'm building a video player and am kinda stuck at the volume slider part. It's a YouTube style vertical slider, meaning if the slider is in the top position volume should be 100% and if the slider is ...
3
votes
3answers
206 views

Baffling Failure to Call External Executable From Within Java Program

All right, I've hit a bug that has simply confused the bejeebus out of me. I'm looking for ideas about what it could be that I can investigate, because right now, I got nothing. It goes something ...
3
votes
3answers
2k views

How to adjust speaker volume from Java program?

I'm running Win Vista, at the lower right side of the window there is a speaker icon next to the clock, I can click on it and adjust the volume, I wonder if there is a way in my Java program to do ...
3
votes
5answers
2k views

Is it possible to programmatically mute the iPhone?

I've seen techniques to make sure that an app respects the mute switch, but is it possible to set the iPhone to mute (no sounds from any apps) using the SDK?
3
votes
4answers
4k views

iPhone (SDK 2.2): adusting playback volume while NOT actively playing music w/ AVFoundation?

So I have an app which plays many short sound clips. I need to know when the sounds are finished playing, and I need to use mp3s, so I'm using AVFoundation for the sound playback. When a sound is ...
3
votes
6answers
1k views

Design of high volume TCP Client

I have a .NET TCP Client that sends high volumes of messages to a (.NET async) TCP server. I need to keep sending messages to the server but I run out of ports on the client due to TIME_WAIT. How ...
2
votes
0answers
75 views

Videochat netstream SoundTransform not working for volume control

I have a video chat application where there can be 6 participants. What I would like to do is give the option to each publisher to control their own stream's volume. The code I have looks like this. ...
2
votes
0answers
105 views

Android AudioTrack object won't play quiet sine signal (below approx. 15 db)

I have a problem with playing generated sine audio signal, using an Android API AudioTrack object. Everything works great while the amplitude of the sine signal is above around 40 ( maximum possible ...
2
votes
2answers
316 views

how to implement a volume key shutter for iphone?

I want to implement the same behavior with the native camera of iOS5: press the volume + button to take a photo What's the ideal way to archive it? Are there any ways to capture the volume key ...
2
votes
1answer
98 views

C++ - volume level of a wav-file

Anyone knows how to get the value of the highest volume level of a wav-file by using c++ (library libsndfile)? Thx!

1 2 3 4 5 7