Tagged Questions

11
votes
7answers
5k 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.
4
votes
1answer
105 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 ...
4
votes
4answers
2k views

How to mix audio samples?

My question is not completely programming-related, but nevertheless I think SO is the right place to ask. In my program I generate some audio data and save the track to a WAV file. Everything works ...
3
votes
1answer
72 views

Java Sound Mixing

I'm using the java sound w/ some Tritonus and JavaFx too, for a college project, and I've searched high and low for an answer. Now maybe its so very simple I've been staring at it, but all I want to ...
3
votes
1answer
513 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 ...
2
votes
1answer
729 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 ...
2
votes
1answer
735 views

How to realize a multi channel audio pre-mixer in .net

I'd like to use C# to implement an application that can play multiple audio streams at the same time. Peanuts - now the interesting part: assuming every stream is single channel (mono) I want to ...
1
vote
1answer
487 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
vote
1answer
612 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 ...
1
vote
5answers
3k views

How to emulate/replace/re-enable classical Sound Mixer controls (or commands) in Windows Vista? [answered]

I have a problem (and have been having it for some time now) -- the new sound mixer stack in Vista features new cool things, but also re-invents the wheel. Many applications that used to use Volume ...
0
votes
2answers
37 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
0answers
62 views

flex: Multi track recorder

Referring to this post http://sebleedelisle.com/2010/05/making-a-multi-track-recorder-in-flash-part-2/ , can someone find a way to calculate the difference between the microphone and sound position?
0
votes
1answer
79 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 ...
0
votes
0answers
103 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); ...
0
votes
0answers
59 views

Java sound API: How to know Mixer owning a specific line?

It is said in tutorial, that "Even though every line is associated with a mixer, an application program can get a line directly from the AudioSystem, without dealing explicitly with mixers." ...
0
votes
1answer
405 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 ...
0
votes
0answers
142 views

Changing Vista/7 Mixer Settings (.net)

Windows Vista and Windows 7 have the following "Mixer": I was wondering if you could change the volume for an application via another .net program. (Specifically VB.net). Thanks if you can!
0
votes
2answers
1k 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 ...
0
votes
6answers
354 views

Server side audio mixer. What's available? (Can Csound do this?)

I am interested in finding out if there exists a program or library which can perform the following task, and would be suitable for running as part of a server side process on a web site. (It's okay ...
-1
votes
2answers
281 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 ...