The mixer tag has no wiki summary.
1
vote
0answers
14 views
iOS 3D mixer works in iOS 5+ but not in iOS 4.3
I've set up a kAudioUnitSubType_AU3DMixerEmbedded as part of a functional AUGraph. I've set the output ASBD of the mixer to the following:
Sample Rate: 44100
Format ID: ...
0
votes
1answer
25 views
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 ...
0
votes
2answers
39 views
get current volume output in java
Anyone knows how to get the current volume output using Java? I've searched and found lots of example that get only the volume setting. For example on windows 7, I can set the volume on 100% but when ...
2
votes
0answers
52 views
Pygame mixer in a subprocess does not work
Debian OS. I call a subprocess
subprocess.Popen([sys.executable, "/home/pi/play_sound.py"])
And in play_sound.py, I play a sound with:
def load_sound(url):
class NoneSound:
def ...
0
votes
1answer
78 views
Can't set multiple musical instruments in iOS using MusicPlayer and AUGraph
I have a MusicPlayer that holds a MusicSequence containing 3 MusicTracks. I have set up an AUGraph with 3 AUSampler Nodes plugged into a multichannel mixer, which in turn is connected to an output ...
0
votes
1answer
51 views
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. ...
0
votes
0answers
37 views
.getSourceLines() always returns 0
I have a mixer and I want to gather information on its source lines. My code is as follows.
myMixer = AudioSystem.getMixer(mixerInfo[i]); // index through all list of mixers
Line[] lines = ...
0
votes
1answer
173 views
Understanding Java Sound API: Finding MIC on Mixer
I'm trying to find a particular mixer that supports mic headphone jack. Please let me know what I'm doing wrong in my code. I don't fully understand what I need to do.
Mixer.Info[] mixerInfo = ...
2
votes
4answers
682 views
Can Java Sound be used to control the system volume?
Java Sound offers FloatControl instances for various sound line functionality, and both a MASTER_GAIN & VOLUME control type.
Can these controls be used to change the system volume?
1
vote
1answer
403 views
Working with audio in Java
I went over Java's tutorial on sounds but somehow it is way too complex for a beginner.
It is here
My aim is this:
Detect all the audio input and output devices
let the user select a audio input ...
1
vote
0answers
37 views
How do I use the synchronize function from mixer
I'm creating a program which mathematically generates byte arrays that are interpreted into sound, and to make them all play at the same rate and begin on the same sample, I need to use the Mixer ...
0
votes
0answers
91 views
where does windows 7 audio mixer takes application icon and title from?
I have a .net (c#) application (console + gui) that have icons set for the console and each of the application forms. The application also have a splash screen started on another thread initialized ...
1
vote
0answers
208 views
3D sound with SDL_Mixer by using HRTFs (head related transfer function)
I'm trying to make 3D sound with the SDL_Mixer lib by making a convolution of the audio stream with a HRTF (I'm using the MIT HRTF database respectively the mit_hrtf_lib based on the compact dataset). ...
1
vote
0answers
132 views
Unwanted volume change with multiple input busses, Apple Core Audio Mixer Host
I'm working on an iPhone App that uses Apple's mixer host example as a starting point. I successfully added some new sound files and added new input busses for the sounds. I set all of the input ...
0
votes
1answer
300 views
how do I get Mixer channels layout in java
I thought I can find anything on this great site but now I seem to face the issue with no answer :) Please help!
Thing is, I need to play up to 6 different wav files with 1 channel each into 6 ...
0
votes
1answer
455 views
python pygame mixer sound does not work
I'm wondering where I might be doing something wrong. When I try to run the following code, I don't recieve either any errors or any sound. The sound file is not broken, I've tried many other sounds ...
0
votes
0answers
136 views
ALSA mixer interface documentation
I've searched for a good alsa mixer documentation but I didn't find anynithing, in fact the link http://www.alsa-project.org/alsa-doc/alsa-lib/mixer.html doesn't say anything. Could you tell me where ...
1
vote
0answers
149 views
AudioUnit: How to get the mixed audio data
I used the AudioUnit to mix the two audio files,and ioUnit to record from microphone, i want to get the synched audio data with mixer and record, but in the "RenderNotify" callback i only get the ...
1
vote
1answer
172 views
How do I speed up the loading of Audio files so the user is not waiting.
I am building a game that lets users remix songs. I have built a mixer (based upon the apple sample code MixerHost (creating an audioGraph with a mixer audioUnit), but expanded to load 12 tracks. ...
0
votes
2answers
86 views
How to use the getColor method from cwac's ColorMixer?
I am trying to implement the get color method for the cwac color mixer( https://github.com/commonsguy/cwac-colormixer), but every time this code runs I get a NullPointerException:
int color = 1;
...
0
votes
1answer
165 views
How do you make an AuGraph restart a audio file from the start of the file?
I am working with Apple's MixerHost application. It is a great example of how to set up an AuGraph, however the stop button is really a pause button. When you hit play it continues playing the sound ...
1
vote
1answer
453 views
In Java, how do I record the sound output that is going to the speakers?
I have a java application that is taking in sound from multiple sources, and one of the abilities of the user is to record what is happening in the application to an AVI file, and I would like to ...
3
votes
2answers
1k views
Android: How to configure “tinymix” to record system audio with “tinycap”
in Android it's currently impossible to record system-audio with the Android-SDK.
Therefore I played around a bit with TinyALSA (since Android 4) and hope I can reroute the audio-out so I can record ...
1
vote
1answer
356 views
Mixing MIDI audio channels using CoreAudio in Objective C
I'm trying to write a program which will receive MIDI signals from different instruments. Currently the MIDI signals are sent to sampler units (kAudioUnitSubType_Sampler) each with a associated sound ...
1
vote
0answers
127 views
How to distinguish between DirectAudioDevice and PortMixer mixers?
I am enumerating mixers with AudioSystem.getMixerInfo(). I found that returning mixers are sometimes duplicated. Investigation showed, that 4 mixers returned are of class DirectAudioDevice and 6 ...
1
vote
1answer
100 views
Is it possible to control Mixer.Info charset?
I have Russian Windows 7 with some devices named in Russian. If I get such device as a mixer via AudioSystem.getMixerInfo() I have Mixer.Info.getName() decoded to unicode wrongly.
Is it possible to ...
2
votes
2answers
437 views
Simple code for playing music in pygame doesn't work
So I've looked a lot how to play a sound in pygame. The code underneath is how far I got. But when I run it there is no error code but also , nothing actually happens. Can somebody please tell me what ...
0
votes
2answers
888 views
mixing two audio file using mixer
how can i mix two audio files into one file so that the resultant file can play two files simultaneously? please help.. here what i am doing is that i am taking two files and concat them into another ...
0
votes
1answer
2k views
How to control the Microphone Boost in Windows 7?
I am trying to control the Microphone Boost (level/(un)mute) in Windows 7 using the MIXER API in a C/C++ application, but I do not get the controls for the same. Can it be done using WASAPI? Can ...
7
votes
1answer
528 views
How do I mix multiple audio streams into a single recorded stream with Java?
Using Java Sound, Tritonus and JavaFX, how can I intercept data sent to the speakers and record it as a file? For example, I want to mix JavaFX media player audio streams (and/or Java Sound audio ...
0
votes
3answers
789 views
mix 2 real webcam into a fake webcam
i need to get the streaming from 2 webcams on the same computer, and mix it as a fake webcam (so then i can use the fake webcam on any software).
I have seen that camcamx is for mac, webcamstudio is ...
0
votes
1answer
335 views
How to widen up the sound wave in AS3?
I am implementing this code for drawing the sound wave. It is in the adobe livedocs at soundmixer . My problem is how to widen up the sound wave? For example I would like it to be 655 pixels. I can ...
1
vote
0answers
185 views
JavaSound: Detect device change
Folks,
I am working on an applet that captures audio from the local computer and streams it up to the server. I am using a Java applet that currently hooks onto the default device and performs the ...
4
votes
1answer
247 views
Play audio through muliple channels with python
Is there a way in python to play two different mono mp3 files through the left and right channels?
I have two mp3 files and I want to play one through the left speaker and the other mp3 through the ...
0
votes
1answer
233 views
How to limit memory consumption when using audio unit
For my app, I need to play music on background when user navigate inside it.
So, starting from MixerHost, I developed an audio mixer which is able to play 8 tracks simultaneously. Nevertheless, It ...
0
votes
0answers
167 views
Java Mixer return 1 on Linux(Ubuntu 11.04)
Here my script
public static int getMaxSimultaneousSounds(
AudioFormat playbackFormat)
{
DataLine.Info lineInfo = new DataLine.Info(
SourceDataLine.class, playbackFormat);
...
11
votes
1answer
5k views
Set ALSA master volume from C code
I've been looking for a simple C code example to set the master volume of the ALSA mixer but could not find anything simple for this supposedly common operation.
I'm totally unfamiliar with ALSA, so ...
1
vote
1answer
511 views
Classic sound mixer
Good day, everyone!
I write a sound mixer and I need getting under sound device capabilities control such as I can got with windows mixer. I can manipulate general volume and mute states of mixer, ...
1
vote
1answer
427 views
How to Implement Buffering in the Multichannel Mixer on iOS?
Im Using the MixerHostAudio to load Several Audio Files at the Same Time.
I Cant load the Whole files to the memory because the APP CRASHES!
Can someone help me implement an Algorythm for Buffering ...
4
votes
1answer
2k views
Java - recording from mixer
I have a problem connected with my previous question. I want to record audio from mixer (speakers), i'm using javax.sound. I have to set up audioFormat and i dont know what to type there :/ Using ...
1
vote
1answer
2k views
Audio Mixing with Java (without Mixer API)
I am attempting to mix several different audio streams and trying to get them to play at the same time instead of one-at-a-time.
The code below plays them one-at-a-time and I cannot figure out a ...
4
votes
2answers
3k views
When/how is an application added to the Windows 7 Volume Mixer window?
I'm trying to get an application which ran okay on XP to run properly on Windows 7 (this is not something I wrote - I'm helping a friend.)
It was able to play audio on XP but cannot on Windows 7 - ...
0
votes
2answers
2k views
how to mix two audio channels?
I have two mono audio channels (pcm format) of audio call, incoming and outgoing. how to mix them? how to position them in space? (e.g. incoming channel sounds slightly on the left and outgoing on the ...
3
votes
1answer
3k views
Android: Mixing multiple AudioTrack instances?
I need to run two instances of AudioTrack at the same time. They must run separately because I'm playing them at different, variable sample rates. I found that if I run them in the same thread, they ...
2
votes
1answer
1k views
Mp3 audio sequencer and mixer in C#
I want to create a VERY simple audio sequencer in C# that would work mostly with MP3 files or optionally any other compressed format, like Ogg or FLAC. Not WAV.
User arranges audio files into a grid ...
1
vote
1answer
833 views
iPhone SDK Audio Mixer
What I need to do is be able to mix 4 channels of audio (not from a live source, just prerecorded audio files in the app bundle), and change their volumes individually, in real time, preferably with ...
-1
votes
2answers
692 views
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 ...
3
votes
2answers
3k views
How to adjust microphone gain from C# (needs to work on XP & W7)
First, note that I know there are a few questions like this already posted; however they
don't seem to address the problem adequately. I have a C# application, with all the pInvoke hooks to talk to ...
13
votes
7answers
9k views
Get Master Sound Volume in c#
I need to get the current volume of what that outs to the sound card, for example, this value:
Any ideas how?
Thank you.
1
vote
1answer
909 views
How to globally mute and unmute sound in Vista and 7, and to get a mute state?
I'm using the old good Mixer API right now, but it does not work as expected on Windows Vista & 7 in the normal, not in XP compatibility mode. It mutes the sound for the current app only, but I ...



