Questions tagged [mixer]

Anything related to audio mixers, i.e. hardware or software (virtual) devices used to mix the signals of independent audio sources together in order to produce a single audio signal out of them. Appropriate for questions about the software audio mixing applications commonly found on computers and smartphones.

Anything related to audio mixers, i.e. hardware or software (virtual) devices used to mix the signals of independent audio sources together in order to produce a single audio signal out of them. Appropriate for questions about the software audio mixing applications commonly found on computers and smartphones.

See related Wikipedia article.

189 questions
0
votes
1 answer

How to get volume on line in Java

I'd like to check my systemmixers for volume in Java. So I loop through all mixers and create a line. Is there a possibility to get an integer of the volume currently active on that line? I only seem to find adjustments to the systemvolume or…
baklap
  • 2,055
  • 5
  • 27
  • 39
0
votes
1 answer

AUGraph on iOS takes seconds to start again after a pause (stop) using TAAE

My app is on iOS 8.3 (iPad and iPhone) and using The Amazing Audio Engine. I'm buffer loading 24 audio files and assigning their output to various channels on a connected USB audio device. Right now I'm testing with a Scarlett 2i|4, but this also…
Matt H
  • 6,195
  • 2
  • 23
  • 31
0
votes
1 answer

From where alsa getting their default states?

I am trying to get knowledge on alsa. When I saw it, it is automatically storing the previous states of the mixer controls and restoring them in the reboots. So I commented this process from the files /etc/init/alsa-restore.conf…
AQU
  • 632
  • 1
  • 12
  • 34
0
votes
2 answers

pygame.mixer can't play more than 8 notes

I'm trying to create a small program that will read notes that I write in a text file and play it as piano music. I'm using pygame and using the mixer to play .aiff sound files. Everything works fine except that it will not play more than 8 notes.…
Tony
  • 161
  • 1
  • 6
0
votes
1 answer

Multichannel Mixer + Voice-Processing IO Unit

I have an AUGraph setup and working, it consists of a multichannel mixer (with a single monophonic input) feeding a RemoteIO (kAudioUnitSubType_RemoteIO) unit to output to the speaker. I implemented the single input mixer in order to be able to pan…
Electro-Bunny
  • 1,350
  • 2
  • 12
  • 31
0
votes
2 answers

No JAVA sound control when I'm using Linux?

I'm using the JAVA sound API and I'm trying to get some controls (at least the volume) on the mixers and lines but, it seems there are no control. Here is a part of the code I'm using : for (Mixer.Info mixerInfo :…
Dr_Click
  • 399
  • 2
  • 13
0
votes
2 answers

What is preventing the sound files from being played in this pygame Mixer set up?

I'm trying to write a small bit of code to play music files in the background of a game. The problem I'm coming across is that despite all the code being laid out and phrased properly no sound files will play. I put several print statements in the…
Logan Henry
  • 63
  • 1
  • 10
0
votes
0 answers

how to make pygame start sound at a specific point?

i have a sound file with a delay in it that plays with pygame. menu_sound = pygame.mixer.Sound('sounds/Devastation.ogg') #these lines are not next to each other in my code, i just picked out relevant lines. menu_sound.play(-1) there is about a 4…
Thedudxo
  • 451
  • 1
  • 8
  • 17
0
votes
1 answer

Python py2exe dll load fail pygame mixer module not available

I tried to make an exe from my programm in python using py2exe. My programm contains multiple sound- and image files. The problem is, that when I try to run the exe, it gives me an error: C:\Users\Eduard\Desktop\testordner>test.exe test.exe:7:…
Duardo
  • 107
  • 10
0
votes
0 answers

Register an EventHandler such that an event is generated whenver current volume output level as visualized in audio Mixer changes

This is in continuation of this question: Getting individual windows application current volume output level as visualized in audio Mixer How to register an EventHandler which gets called whenever the current output volume of an application (such as…
mio
  • 159
  • 1
  • 1
  • 11
0
votes
0 answers

Set mixer as "default" ALSA API

I wrote a code to open and control mixer volume: char *card, *channel; snd_mixer_t *handle = NULL; snd_mixer_elem_t *elem = NULL; static long alsa_min, alsa_max; void alsa_open_mixer( void ) { int err; static snd_mixer_selem_id_t *sid =…
user935420
  • 103
  • 1
  • 6
0
votes
2 answers

pygame.mixer.music.set_pos doesn't exist?

I'm making a program which when the player dies, gets the music time, and plays a new song using the music time from the previous song, I've done this before a while back and it worked with no problems, but now it's giving me an error message (shown…
0
votes
1 answer

How many audio clips can Java handle?

I'm making a game in Java. I want for there to be about 100 different samples and at any given time, 10 samples could be playing. However, for each of these 10 samples, I want to be able to manipulate their volume and pan. As of right now, I request…
0
votes
1 answer

YouTube Autosuggest API - where to find samples or documentation?

I want to create a YouTube video search box with the same autocomplete feature. Any idea where can I find samples or and documentation? Thanks
jariburi
  • 17
  • 3
0
votes
1 answer

How to Verify AudioUnit Properties of Mixer Unit and iPodEQ Unit

I want to use the AudioGraph to improve the VOIP audio quality. Now, I've merged the AUGraph to process the audio data from remote, connected the nodes: mixer node--> iPodEQ node --> I/O output node. Remote audio is mono. I set the local output to…
devincdai
  • 3
  • 2
1 2 3
12
13