Questions tagged [mixing]
245 questions
0
votes
2 answers
MIX values of different variables in Prolog
I'm having some problems with a simple program in Prolog. I have two different groups, and I would like to attach an element of one group to another, without directly modifying the facts (eg: Toronto = USA).
country(usa, …

Allan Davidson
- 11
- 2
0
votes
1 answer
Mixing Fortran 90 with C, when C requires a special type of makefile?
I have a FORTRAN code which needs a C routine to calculate a measure. The C routine includes .c and .h files and in the documentation it is written:
If you want to embed the hypervolume function into your own C/C++ code, the main function for…

Matt
- 11
- 2
0
votes
1 answer
How should I manage memory in mobile audio mixing software?
I'm toying around with creating a pure Java audio mixing library, preferably one that can be used with Android, not entirely practical but definitely an interesting thing to have. I'm sure it's been done already, but just for my own learning…

Joey Carson
- 2,973
- 7
- 36
- 60
0
votes
1 answer
sox multiple pad while mixing
here is a solution to pad a track while mixing with another track.
Sox : merge two audio files with a pad
$ sox short.ogg -p pad 6 0 | sox - -m long.ogg output.ogg
How to use this command mixing multiple tracks?
For example
audio1.wav (no…

Michele
- 1,468
- 3
- 24
- 54
-1
votes
1 answer
Cannot get the lists to work withing a for next loop to behave the way I want
Trying TO mix various audio files to one
I have written out like this
lstOfReaderOBJs.Add(Reader1(0))
lstOfReaderOBJs.Add(Reader1(1))
lstOfReaderOBJs.Add(Reader1(2))
but I want to put it in a for next loop to have a variable amount down the road…

Chris Cleveland
- 7
- 2
-1
votes
1 answer
How to resolve the issue to mixing dependency versions?
I'm getting an error regarding mixing of dependency versions . Few days back it was working absolutely fine but from nowhere the issue popped up .
It's showing : All com.android.support libraries must use the exact same version specification…

Naman Tiwari
- 1
- 1
-1
votes
1 answer
converting from strings and integers... not sure what I am doing
int_one =input("Please enter a three-digit number thats first number is greater than last ")
int_one_swap = (int_one[-1]+int_one[1:-1]+int_one[0])
print (int_one_swap)
print (int(int_one) - int(int_one_swap))
math_one =…
-1
votes
1 answer
Coding a fortran 77 program to a subroutine
I have been given the task of making a gui for a fortran 77 program. To do so I am using a Lahey Fujitsu compiler and wisk, which is essentially a bare bones version of winteracter . Now i am coding the gui portion in 90, to be honest right now i…
-1
votes
1 answer
Mixing integer and double types and packing them into raw binary format with perl
In perl, with an array that only has integers and doubles like
@array = qw/4 3.1416 6.7 15 4.3/,
how do you pack the list into a sequence of binaries and save it to a .bi file, where the binary has to be exactly an int when an element is an integer…

Aki
- 1
- 1
-1
votes
1 answer
Ruby and PHP togheter
I know PHP well but I'm new to Ruby on Rails, I am about to learn it.
The thing is that I would like to have PHP code inside Ruby code, or something similar to this. Could there be a way to do that, even if it's hard to achieve ?

Guillaume Chevalier
- 9,613
- 8
- 51
- 79
-2
votes
1 answer
Mixing multiple sound clip
I'm trying to mix six sound clips together.
Imagine each clip is a single guitar string pluck sound and I want to mix them to produce a guitar chord.
Here, a clip is an array of real numbers in the range [-1,1], where each number is a mono…

Nicolas Repiquet
- 9,097
- 2
- 31
- 53
-2
votes
3 answers
Mixing JSP/HTML any new features or suggestions
I guess my questions are not well described. Is this coding style (like the example below) still recommended?
Aren't there any new methods of mixing html with jsp? I see some examples with the blockquote < script > < /script >. I guess that's for…

Ed Michel
- 898
- 1
- 11
- 23
-2
votes
3 answers
Add an Action Listener
I've created a JList and JTextField. In my JList I have written few selection choices, and I want the selected choice name to appear in JTextField.
What code do I need to write in jTextField2 Action listener so for instance if I select Computer it…

JOHN
- 33
- 6
-2
votes
1 answer
Display the list box over the below text field controls
Actually I am creating one panel A and including the text fields and list box and then created another panel B and insert A panel to B. Now I have to enter the some text field, but the below list box not visible in that B panel.
How to display the…

kanna
- 39
- 3
- 4
-3
votes
5 answers
Why char and other C function should not be used in C++?
Can someone please enlighten me regarding answers in this question Assigning a value to char* in a struct?
In the answers, they told the asker not to mix C and C++, i.e. use string and cin if it's C++
or
char if it's C. It makes me confuse since…

ryn
- 11
- 1