Questions tagged [volume]

1) Volume, or loudness Loudness is the characteristic of a sound. 2) Volume of an object or amount of space occupied by that object.

Volume, or loudness is the characteristic of a sound that is primarily a psychological correlate of physical strength (amplitude). More formally, it is defined as "that attribute of auditory sensation in terms of which sounds can be ordered on a scale extending from quiet to loud".

Volume of an object is a measure of the amount of space occupied by that object, not to be confused with mass. The volume of a mountain is much larger than the volume of a rock, for instance.
The word volume implies a three-dimensional context where, by convention:

  • the length is the longest distance between the object's extremities
  • the width (or breadth) refers to the size of the object in a direction perpendicular to its length
  • the height (or depth) stands for the size of that object in the direction perpendicular to both the length and the width.

For objects at or near the Earth's surface, height or depth often refers to the dimension of the object along the local vertical. All physical objects occupy a volume, even if some are so thin that they appear to be two-dimensional, like a sheet of paper.

Questions tagged with the : 1) Programmatically control applications' volume in different programming languages and environments. 2) Expressed measure of the amount of space occupied by an object…

Additional information:

1865 questions
0
votes
1 answer

Check if Volume exists - via registry

How can I check, if, let's say, G volume exists - via registry ? Example: I have user A and user B, and user A doesn't have volume G configured. I need to check registry to see that B has it, and A does not.
MathEnthusiast
  • 101
  • 1
  • 10
0
votes
1 answer

How to mount network location in docker

I am using docker (1.12.3) in my Ubuntu machine. I am running a python script which will send its output to a windows network path (\\my_win_path\c). I am able to execute the python script. Can someone help me with the second part (i.e. sending the…
Raji
  • 857
  • 6
  • 18
  • 37
0
votes
1 answer

How to change volume/alter AudioClip

I've seen methods to change Clip volume, however, I am using an AudioClip (code below). Is there a good way to change the volume of the clip? Or would I have to instead use a Clip? private static AudioClip getcharend() { File file = new…
Dan
  • 13
  • 1
  • 4
0
votes
1 answer

GTK Volumen button icon show initial value c++

GtkWidget *volumen = gtk_volume_button_new(); GtkAdjustment *ajuste = gtk_adjustment_new(50,0,100,1,0,0); gtk_scale_button_set_adjustment(GTK_SCALE_BUTTON(volumen),ajuste); The problem i have is the icon, the icon shows mute at the beginning of the…
Edgar Gomez
  • 145
  • 1
  • 1
  • 10
0
votes
0 answers

MediaPlayer setVolume only works (not muted) when maxed (1.0f, 1.0f)

I'm working on a simple media player and running in to an issue. When I try to use setVolume it only works/has sound when set to 1.0, 1.0. If it set it to anything else (e.g. 1.0,0.8; 1.0,0.0; 0.5,1.0; etc.) it's completely muted. I'm testing on…
0
votes
1 answer

Pygame: set absolute sound volume using multiple channels

I need to set different volumes for the right and left ears for a sound at every iteration of a loop. And I represent sound for left and right ears by using two channels one, for each ear. However, based on the documentation every time set_volume…
sharon
  • 123
  • 1
  • 1
  • 11
0
votes
1 answer

How to make volume rocker affect media volume when app is in foreground?

I would like to have the volume rocker affect media volume when app is in foreground. How would I do that?
tbfp
  • 147
  • 14
0
votes
1 answer

AWS:Determining aws volume parameters from the linux system mountpoint

Need to get the AWS device mapping or other AWS EC2 volume parameters from the existing linux mount point [linux mapping is like /dev/xvdf for AWS mapping /dev/sdf], the EC2 CLI doesn't provide the solution for the same, please let me know of a…
user6695364
0
votes
0 answers

Set Default Volume Level for Jquery Volume Slider

I am new to jQuery and facing difficulty in setting up initial/default volume (when the page loads up) for the slider. Help me in understanding where I am going wrong. Here is a code snippet: jQuery(document).ready(function($)…
Hunter
  • 1
  • 1
0
votes
1 answer

AVPlayer audio volume too slow

I am using AVPlayer to play a m3u8 streaming. This is what I have done. self.audioUrl=[[array objectAtIndex:0] objectAtIndex:1]; self.avPlayer=[[AVPlayer alloc] initWithURL:[[NSURL alloc] initWithString:self.audioUrl]]; [self.avPlayer…
user1960169
  • 3,533
  • 12
  • 39
  • 61
0
votes
0 answers

Using MATLAB to create a 4D volume / contour plot

I have the data set 1 1 1 0.07431 1 1 2 0.07176 1 1 3 0.06178 1 1 4 0.04691 ... 27 27 44 0.07272 27 27 45 0.08129 where the first three columns are X, Y, Z points; which form a 27x27x45 grid of points.…
emc3636
  • 93
  • 1
  • 5
0
votes
2 answers

Ringer volume slider, swift

so my problem is that I'm creating an app which uses local notifications as an alarm. The only issue is that if the device has its ringer volume down or on silent, it will not play any sound. I am aware that you are unable to do this in the…
Nick0014
  • 5
  • 1
  • 3
0
votes
0 answers

How can I toggle the switch if the ringing volume change?

I want max volume when I launch the app so I getStreamMaxVolume in the onCreate. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); swVolume =…
BEX
  • 187
  • 4
  • 21
0
votes
1 answer

Turn down volume of WasapiLoopbackCapture C#

This is a small part of my code: private void Connect(IPEndPoint endPoint, INetworkChatCodec codec) { waveIn = new WasapiLoopbackCapture(); //waveIn.WaveFormat = codec.RecordFormat; waveIn.DataAvailable +=…
0
votes
1 answer

automatic microphone volume (gain) control while recording

I'd like to have program which would record from PC audio card's microphone. The main idea is to prevent clipping (cut of amplitude): set optimal gain (e.x. -6db) when gain is over optimal, set microphone volume to be the optimal or just lower…
d3im
  • 323
  • 2
  • 4
  • 18