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

Docker container not running after creating with mounted volume

I am trying to use an image that I pulled from the docker database. However I need data from the host to use some programs loaded into the image. I created a container with this sudo docker run --name="mdrap" -v…
bohawk
  • 61
  • 1
  • 1
  • 9
0
votes
1 answer

How to Change Sound Programmatically on Android

I have a media player which plays song files. However, no matter how I try to initialize its volume, the only way to change it is manually with the volume buttons. I've tried mAudioManager = (AudioManager)…
Elliptica
  • 3,928
  • 3
  • 37
  • 68
0
votes
2 answers

How to control the volume of multiple sounds at once using multiple SeekBars (Android)?

How can I control the volume of multiple sounds playing at the same time using multiple SeekBars? There are three mp3 files are played at the same time. There are three SeekBars, each Seekbar progress should relate to the volume of it's relative…
Vaugito
  • 3
  • 4
0
votes
1 answer

Uiimagepickercontroller, volume overlay not work

i'm developing an app that use uiimagepickercontroller. The app launches first the uiimagepickercontroller with source type setted to "Camera" and then the user can press a tabbar item to launch the imagepickercontroller with source type on…
cri1682
  • 1
  • 1
0
votes
1 answer

fractional volume of hyperbox

I stumbled upon a problem the result of which feels very counter intuitive. Say I have a box in n-dimension each side of the box is length 1. The volume is defined as 1^n = 1. Now say I want to carve out a smaller box with each side x, and x < 1…
user1612986
  • 1,373
  • 3
  • 22
  • 38
0
votes
1 answer

slicing volume rendering graph in python

I have an input data with each row having (x,y,z,data), i.e., each coordinate (x,y,z) has a value "data". I would like to make a slicing volumetric graph like below in python. I am new to python, any tips would be much appreciated. see here for the…
geohu
  • 1
  • 1
0
votes
1 answer

Android - MediaPlayer display volume levels graphically

I'm using MediaPlayer to play a song I have in my raw folder mPlayer = MediaPlayer.create(this, R.raw.song1;); mPlayer.start(); Is there a way I can visually see the volume levels as the song is playing? So something like this, but it can be very…
Pam
  • 78
  • 7
0
votes
1 answer

How can I get current volume value in objective c?

I want get the current value of my iphone from my audio player in objective c. But I can't get this because is deprecated. MPMusicPlayerController *musicPlayer; musicPlayer.volume //This is deprecated There are some alternatives?
user3745888
  • 6,143
  • 15
  • 48
  • 97
0
votes
1 answer

provide s3fs mount to docker as volume

I´d Like to use a mounted S3 Bucket (using s3fs) as a volume within a docker container. I have: a mounted S3 Bucket (with s3fs) at /mnt/bucketname on my ec2 Machine using: sudo /usr/bin/s3fs -o allow_other,uid=500,umask=227,gid=500 bucketname…
Flola
  • 17
  • 5
0
votes
1 answer

ObjectiveC AVAudioPlayer volume is 0

I've seen quite many posts about AVAudioPlayer but nones helps: I cannot get sound anymore (even though it used to work with Xcode before upgrade to 8.3.2) Here is my code: AVAudioPlayer *audioPlayerObj; AVAudioSession *session; [...] -…
toto
  • 13
  • 1
  • 1
  • 3
0
votes
2 answers

Android Java - setVolume past max 1.0f

I'm using mediaplayer to set my volumes. I understand 0.0f is silent and 1.0f is full volume. Is there any way I can get the music to play louder than it's 100% volume programmatically? mPlayer.setVolume(2.0f, 2.0f); Seems to just keep it still…
Pam
  • 78
  • 7
0
votes
0 answers

Play two sounds with different volumes on iOS

I am developing an application that has a background music and a timer that notifies user with an alarm. Now the problem is when the app is launched user turns device's volume down (background music), but I want the alarm to be loud enough,…
NiMa Thr
  • 458
  • 3
  • 12
0
votes
1 answer

how to sync music volume with ring volume using AudioManager

here is my code: if(setting.getBoolean("autoVolume",false)) { setVolume(c,AudioManager.STREAM_MUSIC,manager.getStreamVolume(AudioManager.STREAM_RING)); Log.e("max ring…
Abolfazl R
  • 41
  • 8
0
votes
1 answer

Seekbar Controlling Soundpool, stops working

So I have 8 images, each starts a loop of 8 different sounds. I have a seekbar under each image to control the volume for that sound. The seekbar works fine the first time the sounds starts, but when stopped and started again, the seekbar no longer…
AndyCr15
  • 465
  • 5
  • 17
0
votes
1 answer

Two soundpool volume controls

I'm making a white noise app, I would like to control the volume for each sound independently. Is this possible? Here is my onCreate at the moment. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
AndyCr15
  • 465
  • 5
  • 17