1,814 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-2
votes
1
answer
85
views
Tkinter Volume scale/slider doesn't set volume
I have a slider to change the volume on my PC when I change the scale. However, it doesn't set the volume at the moment and I don't know why. Can someone please help me?
My code:
from tkinter import *
...
0
votes
0
answers
39
views
Speed up calculating peak volume of PCM samples
Within software I've written, I'm currently testing every single sample to get the peak volume of music files, but that is slow for a large file and I don't think necessary. Can I cheat and only check ...
2
votes
0
answers
490
views
iOS Audio is very quiet (React-Native, Expo-Go)
EDIT: Fixed by setting "allowsRecordingIOS" to False, as per Gordon Childs' comment:
"""
You need to set allowsRecordingIOS to false when you want to playback. It sounds like ...
0
votes
1
answer
767
views
I have the acces to the volume footprint candle type in tradingview,I want to create a pine script indicator where the delta is greater than 2 Million
I need to create a pine script indicator so that if the candle color is green and the delta is >= +2 M then it should highlight that candle
Similarly if the candle color is red and the delta is >...
1
vote
1
answer
58
views
Why Docker Failed to remove container-related anonymous volume
Here are my instructions for running the container:
docker run -p 5432:5432 --name=db -e POSTGRES_PASSWORD=secret -d --mount type=volume,src=postgres_data,target=/var/lib/postgresql/data postgres
...
1
vote
0
answers
44
views
audio-mixer Independent from Device-Volume
I'm developing a C# program, and I needs to play audio independently of the system
audio-mixer.
I can't seem to figure out how to play audio independently of the system-mixer, what I want is to play ...
0
votes
1
answer
265
views
How to move or clone docker volume from an implicit named volume to an explicit mounting point on the host
I want to get better persistence of the data of a docker image
my current docker-compose file have a simple definition to persist data
services:
postgres:
...
volumes:
- pgdata:/var/lib/...
0
votes
1
answer
554
views
How to automatically update secrets mounted as volumes?
I have the following test pod:
apiVersion: v1
kind: Pod
metadata:
name: volume-debugger
spec:
volumes:
- name: secretVolume
secret:
secretName: ssh-keys-iaas
items:
- key: ...
0
votes
1
answer
39
views
Unmuting a video upon 'enter section' with id="videos" and vice versa mute upon 'leave section'... Event Listener?
I am desperatly trying to find somewhere where I can control the audio of a (unmute/mute) upon 'entering a specific section' and vice versa, mute upon 'leave section'... Is this controlled by an JS ...
2
votes
0
answers
222
views
How to programmatically set the volume on a car radio - Android app in Java
I'm writing an app that's meant to work on car radio and I would like to add a feature allowing to set the volume to certain level, to be specific - ducking it for safety reasons while reversing.
...
1
vote
1
answer
1k
views
How to create a Docker named volume and populate it with default files?
I am working on a flask application that runs on some embedded hardware inside a Docker container and I am trying to store persistent data in a named volume that exists on my host machine during the ...
1
vote
0
answers
262
views
Adaptive volume in Android phone based on the level of background noise
I would like to know if it is possible to programme an adaptive volume function in Android phone and how demanding that would be. The goal would be programmatically adjust volume of white noise or ...
0
votes
1
answer
89
views
Why every audio part is louder in FFmpeg when I join them in one audio?
I trying to make dubbing for audio. I have original audio track and I want to put translated audio parts on top of the original.
translated audio 100% vol: --p1--- ---p2-- -----p3--- --p4--
...
0
votes
1
answer
23
views
Jmeter Split data between different thread based on Index number
I need to configure Jmeter in a way that each thread takes a specific index of data only ...like first thread takes first 200 set of data, second thread takes second 200 set of data ,third takes third ...
1
vote
0
answers
142
views
Xcode 15 Sudden Warning - This code path does interprocess communication underneath
Recently I made the switch to Xcode 15 and I'm receiving a runtime warning concerning an object I've created that listens to updates from the volume (such as when the user updates the volume using the ...