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.

197 questions
0
votes
0 answers

pygame - pygame.mixer.Sound() directory issue - unable to open file

UPDATE: I used a different sound function in pygame to try to troubleshoot. This was my new program. #pygame mixer testing import pygame pygame.init() sound = pygame.mixer.music.load("jan_amit.wav") This was the error. Traceback (most recent call…
Will
  • 21
  • 6
0
votes
1 answer

Multiple tracks audio

I am looking for some easy way to play an audio by Arduino Uno. At the beginning my project contains few LED's, buttons, motor, and speaker. This speaker should play the sample of engine. This project was very easy. I have decided to use YX5100 or…
Dzeremix
  • 446
  • 1
  • 5
  • 24
0
votes
0 answers

console closes when reaches pygame.mixer in .exe

I have finished my game (finally) and I want it to be in a format that anybody can have it and play it, without making sure they have python and pygame installed first. I've been trying for several days to figure out py2exe (I know it's my first…
0
votes
1 answer

Reading the value of the volume in the windows mixer

I am creating a program for me and my friends to use. I want to make a program that will take control over the Windows Audio Mixer. I am using C# I already have and idea on how to control the volume. But I would like some tips on controlling each…
Marno vN
  • 145
  • 3
  • 10
0
votes
1 answer

C# MixerOpen with Callback function

I am trying to open the sound card mixers with the API: lRet = mixerOpen(ref hmixer, uMxId, cbFunction, IntPtr.Zero, MIXER_OBJECTF_MIXER | CALLBACK_FUNCTION); where cbFunction is a pointer to a function that will receive the MM_MIXM_LINE_CHANGE…
0
votes
0 answers

java record sound with mixer - why is my TargetDataLine always filling my byte[] with 0?

since there is no easy way in java to access the systems microphones and speakers I tried to implement something like that my self. For this I have a class AudioDevice representing any device. It is a abstract class defining all method a…
Basti
  • 1,117
  • 12
  • 32
0
votes
0 answers

Pygame sound not importing correctly

So for my game I am looking to have a crash sound effect play when I either go over the border or (later in development) hit an enemy. The problem I am having starts at the init part for the sound. The detailed error python/ pygame gives me is…
0
votes
2 answers

Taking control of the soundCard with JAVA

I'm trying to build a "mixing console" in JAVA. In this mixer, each "slider" would be a line, as if it was a physical mixing console. But, after my search on Goo*** and read the oracle documentation, I didn't really find anything to help me. First,…
Dr_Click
  • 449
  • 4
  • 16
0
votes
0 answers

Compile Medooze - Ubuntu 14.04

I`m trying to install Medooze but I faced with lots of problem! I followed step by step by this instruction http://www.medooze.com/products/media-mixer-server/installation.aspx most of them installed with out error until step 9. when I use "make"…
Aira
  • 179
  • 2
  • 3
  • 13
0
votes
0 answers

C# mixing the same inputs by 3 independent mixers

Good evening, I'm facing a problem which might be easy in the end. I've got different audio sources on a single pc: Two Teamspeak instances, one VOIP connection, sound samples and background noise. Now there are three independent Headphone devices.…
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,145
  • 6
  • 28
  • 41
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,422
  • 2
  • 28
  • 32
0
votes
2 answers

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…
optimus prime
  • 764
  • 1
  • 13
  • 39
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
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
  • 449
  • 4
  • 16