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
10
votes
1 answer

How to specify an iterator in the volume path when using docker-compose to scale up service?

Background: I'm using docker-compose in order to place a tomcat service into a docker swarm cluster but I'm presently struggling with how I would approach the logging directory given that I want to scale the service up yet retain the uniqueness of…
Snowy
  • 101
  • 4
10
votes
1 answer

Mounting a single file from a Docker data volume in a Docker

I'm trying to mount a single file from a Docker volume in a container when using "docker run". I've been able to mount an entire volume as a directory, e.g: docker run -v my_volume:/root/volume my_container I've also mounted single files from the…
ateles
  • 422
  • 3
  • 10
10
votes
1 answer

What does the flag parameter mean and what is range of possible min and max of droid device

I want to know what is flag(or what are the possible values for flag) in audiomanager.setStreamVolume (int streamType, int index, int flags); I know we can get the maximum stream…
Zar E Ahmer
  • 33,936
  • 20
  • 234
  • 300
10
votes
1 answer

Writing to docker volume from Dockerfile does not work

Please consider the following Dockerfile: FROM phusion/baseimage VOLUME ["/data"] RUN touch /data/HELLO RUN ls -ls /data Problem: "/data" directory does not contain "HELLO" file. Moreover, any other attempts to write to volume directory (via echo,…
akhikhl
  • 2,552
  • 18
  • 23
10
votes
7 answers

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?
Sibo Lin
  • 339
  • 1
  • 5
  • 16
10
votes
4 answers

IOS WebAudio only works on headphones

I've been running into an issue now for a while where on some ios devices my webaudio system only seems to work with headphones where as other devices (exact same os, model, etc) the audio plays perfectly fine through the speakers or headphones.…
Jason Welch
  • 336
  • 2
  • 14
10
votes
1 answer

How can I detect if the volume is set to mute?

When I am developing an Android application, how can I detect if volume is set to mute? How can my application get notified if the volume changes to mute or gets unmuted?
Davim
  • 221
  • 2
  • 7
10
votes
0 answers

Volume button listener even with the screen turned off and locked

Possible Duplicate: Listen to volume buttons in background service? I want to listen to volume key changes in my application even with the locked screen and display powered off. The main problem that the service runs all time (with the help of…
9
votes
2 answers

IOS maximum volume level for AVAudioPlayer?

I use the AVAudioPlayer to play a .caf file. My problem is: it is not loud enough for my purpose. Since the ringer sound of the IPhone is much louder I was wondering how I can archive this volume. I already tried to manipulate the .caf file but with…
MartinHappyCoding
  • 311
  • 1
  • 3
  • 13
9
votes
2 answers

Change Volume on Mac programmatically

I'm looking for a not applescript way to change the system volume on Mac OS X programmatically. I just couldn't find a solution. Anyone any ideas?
Chris
  • 117
  • 1
  • 5
9
votes
3 answers

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 (opacity) value up to the previous voxel; Ci is the colour…
Dave
  • 1,304
  • 1
  • 15
  • 19
9
votes
4 answers

get current system volume level on iPhone

Is there a way I can get the current system volume level on the iPhone? I'm thinking maybe there's a way to make an MPVolumeView and get the value from that.
Sophie Alpert
  • 139,698
  • 36
  • 220
  • 238
9
votes
1 answer

How to set volume in Phaser 3?

I have a problem with the video game that I am trying to create. The problem that I have is that, the song that I have made this one very strong and looking at the documentation I have seen that can form the volume, have applied this way of forming…
Adrià Cabezuelo
  • 417
  • 3
  • 14
9
votes
2 answers

How to increase Microphone volume level in Android PJSIP?

I have Integrated PJSIP with android. While making call in my application, the Speaker is working perfectly but Recording microphone volume is too low. My voice is not hearable by other side. Note: But in some mobiles it's working properly. Even i…
Nandhakumar Kittusamy
  • 1,066
  • 12
  • 32
9
votes
1 answer

Speaker Volume (Alarm) decreases when Headphones are plugged in

I'm trying to play an alarm sound through the speakers via the alarm channel at max volume. For that I'm using the AudioManager and a MediaPlayer. If I plug in headphones, the alarm is still played through the speakers, however the volume of the…