Questions tagged [mixing]
245 questions
2
votes
1 answer
XNA Music mixing real-time
I've created a "format" to store segments of music (prelude part, repeated part, ending part) and time information for these segments (offset, scored length) so I can mix it up in real-time as if it were one piece of music, while repeating the…

Adam L. S.
- 825
- 1
- 7
- 14
2
votes
1 answer
Java - Convert 16bit Mono PCM raw data to stereo
I am mixing two 16bit PCM samples into a short buffer.
// This is our buffer for PCM audio data
mp3Buffer = new short[minBufferSize];
wavBuffer = new short[minBufferSize];
mixedBuffer = new short[minBufferSize];
I am filling these buffers with…

nawlrus
- 777
- 1
- 13
- 27
1
vote
3 answers
C++ is mixing my strings?
I have this really simple c++ function I wrote myself.
It should just strip the '-' characters out of my string.
Here's the code
char* FastaManager::stripAlignment(char *seq, int seqLength){
char newSeq[seqLength];
int j=0;
for (int i=0;…

XelharK
- 598
- 8
- 21
1
vote
0 answers
Mixing audio with java
I have been looking for good examples of sound mixing using Java in vain. I am developing an Android app and would like to implement such feature. I am mainly looking for a way of mixing (or merging) multiple wav or mp3 sounds into a single sound…

Ziki Kongawi
- 687
- 1
- 7
- 9
1
vote
1 answer
Mixing audio on android with Jmusic
I have been working on a music app for android devices for the past few months. I have written a considerable amount of code so far. However, I have been stuck for almost a month on the mixing part of the code. Since Android does not offer a way to…

Ziki Kongawi
- 687
- 1
- 7
- 9
1
vote
0 answers
Falsify audio input from a microphone for another program in Java?
I have not looked into the Java Sound API too much before I had this idea,
so I went and looked at the Tutorial by Oracle concerning this topic.
I did not find what I was looking for, though...
Basically, I need to take the audio feed from the…

Tom S.
- 243
- 3
- 9
1
vote
2 answers
Mixing Sound Waves (CoreAudio on iOS)
It seems to me that CoreAudio adds sound waves together when mixing into a single channel. My program will make synthesised sounds. I know the amplitudes of each of the sounds. When I play them together should I add them together and multiply the…

Matthew Mitchell
- 5,293
- 14
- 70
- 122
1
vote
1 answer
Save Audio Produced by MixerHost Sample on developer.apple
I get sample of MixerHost from developer.apple and now i want that Mix Sound to save in another audio File,
can any one Help me???

Aadil
- 713
- 2
- 12
- 30
1
vote
3 answers
DSP / Manual mixing and pan law
I am mixing four buffers and applying panning. However, when I trigger a change of pan I hear a clip. Can any body see what is potentially wrong with the following code:-
for (int i = 0 ; i < numFrames; i++) {
//Convert buffer to float
float…

Carl
- 209
- 1
- 3
- 13
1
vote
1 answer
What platform(s) to use for developing an audio mixing web app?
I am working on a browser-based application that is essentially a Digital Audio Workstation. I've seen one out there (at http://www.indabamusic.com), and it looks like it is a Java applet. Is a Java applet the best way to do this?
I've read that…

visiblenoise
- 35
- 3
1
vote
0 answers
Android multiple MediaPlayer instances in sync?
I need to be able to have multiple tracks playing at the same time, and also changing to other tracks with as little latency as possible. I don't think SoundPool will work, since it are real audiotracks and not so much samples. I'm trying to make…

usealbarazer
- 707
- 3
- 10
- 27
1
vote
1 answer
FFMPEG -- using 'amix' to combine short audio clip with a video results in final video's sound cutting off early
I am trying to combine the following:
(a) : 29s video clip that has its own audio that lasts the entire duration
(b) : audio clip I want to play at the start of the video, in conjunction with original audio, and is ~2 seconds long
I successfully use…

kilika
- 31
- 6
1
vote
0 answers
How to account for non-uniform illumination - Scenes are changing from image to image
I am trying to calculate/analyze coefficient of variance (CV) for multiple series of images and compare them at the end. Please see the code below.
The foreground (various shades of green that is fluorescent fluid) is separated from the background…

thelabmaster
- 11
- 1
1
vote
1 answer
undefined reference to `cos' when I use iso_c_binding
I have the Fortran90 function
function eg_fun(r) bind(c)
use, intrinsic :: iso_c_binding
implicit none
real(c_double), intent(in) :: r
real(c_double) :: eg_fun
real(c_double), parameter :: PI = acos(-1.d0)
eg_fun = PI * r…
1
vote
1 answer
Is there inverse algorithm for mixing paint colors?
Local paint shop can mix any RAL or NCS color I choose but considering the required minimum volume I would be wasting money by throwing unused paint to trash. I have an idea of buying standard pre-mixed opaque acrylic paint colors - blue, red and…

Boris Gereg
- 11
- 1