Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
5answers
6k views

How to mix colors “naturally” with C#?

I have to mix some colors in a natural way. This means blue + yellow = green blue + red = purple and so on. I got the colors as RGB-Values. When I try to mix them I got the right "RGB"-results ...
13
votes
6answers
2k views

Is there a way to mix MonoTouch and Objective-C?

I'd like to know if there is a way to mix C# and Obj-C code in one project. Specifically, I'd like to use Cocos2D for my UI in Obj-C and call some MonoTouch C#-Library that does some computations and ...
11
votes
3answers
240 views

iPhone: Mix two audio files programmatically?

I want to have two audio files and mix and play it programmatically. When I am playing the first audio file, after some time(dynamic time) I need to add the second small audio file with the first ...
9
votes
7answers
683 views

Organizing the source code base when mixing two or more langauges (like Java and C++)

I ran into a problem a few days ago when I had to introduce C++ files into a Java project. It started with a need to measure the CPU usage of the Java process and it was decided that the way to go was ...
7
votes
11answers
1k views

Using/Mixing C in C++ code?

Is using C in C++ bad? Many people have told me that using C in C++ is bad because it's not as safe, and it requires more memory management. I keep telling them that as long as you know what your ...
7
votes
11answers
468 views

When to mix languages?

What are some situations where languages should be mixed? I'm not talking about using ASP.NET with C# and HTML or an application written in C accessing a SQL database through SQL queries. I'm talking ...
7
votes
6answers
1k views

Can you mix the JVM languages? ie: Groovy & Clojure

I understand that you can easily mix groovy&java, clojure&java, whateverJvmLang&java. Does this also mean I can have clojure and groovy code interact as well? If I use Grails or jRoR, can ...
6
votes
5answers
1k views

Calculation of a mixed color in RGB

I want to be able to take two RGB-256 vectors and calculate the result of their mixture. Also I want to be able to give each vector a different weight. I've experimented with it using the Word color ...
5
votes
3answers
3k views

how to convert C# to C++

Could someone please help me to convert C# to C++? here is an example: using System; using System.Net; using System.Text; using System.IO; using System.Threading; namespace read_website { class ...
5
votes
5answers
792 views

Mixing sound files on an iPhone

I've got a couple of wav files and possibly a mp3 that I'd like to mix down to a single wav or mp3-file. I'm using C/C++/Obj-C (iPhone). I have really no experience with this sort of thing. If anyone ...
4
votes
1answer
520 views

Mingling C++ classes with Objective C classes

I am using the iphone SDK and coding primarily in C++ while using parts of the SDK in obj-c. Is it possible to designate a C++ class in situations where an obj-c class is needed? For instance: 1) ...
3
votes
0answers
387 views

3GP/AMR mix/merge tracks

Is there an easy way to merge 2 3gp (amr) audio files into a single audio file? I need them to be synchronous/over top of each other not one after the other. I am using android to do this. I have ...
3
votes
4answers
284 views

How can I shuffle a list without randomness, and guarantee that a portion of elements will eventually appear on one side?

Given a list of elements, does a shuffling algorithm exist that will guarantee that eventually a selected half portion will be on one side, and the remainder on the other? Example: { 4, 3, 10, 7, ...
2
votes
1answer
74 views

gdb — No source file named <something> - intel compiler

I am calling fortran 90 code from a c code. There is a main() (in c) that calls a wrapper function in the same file, that calls a fortran subroutine (actually in a liblibrary.a). I am working on ...
2
votes
2answers
109 views

Coping with different types with the same underlying data structure

I am in need of mixing C code with C++ code in a computer simulation. A C library has functions which take references to a regular array of doubles: void position(double[3]) Another C library ...
2
votes
1answer
154 views

Is it OK to use both JPA (for normal CRUDs) and JDBC (for batch update & call stored proc) in the same project

I am using JPA/Hibernate to call simple CRUD queries (create, update, findByXAndYAndZ...). However, as I know, JPA doesn't support well on calling stored procedures and batch insert/update, so I ...
2
votes
8answers
489 views

How to mix Mp3 files

I would like to mix MP3 files with Delphi 2010. Is this possible? Does anyone know of a component(set) I could use to get this done? Or maybe a runtime library? Any tips from someone with experience ...
2
votes
1answer
213 views

How mixing LTR and RTL languages is managed in unicode?

Sometimes we have to show messages in display which is a mixing of RTL and LTR languages. The message is in unicode. So, how unicode handle the mixing? Is there any dependency on the platform?
2
votes
5answers
3k views

Best way to access Java classes from C++? (better than using JNI directly)

I have to integrate a large Java library in a quite large C++ application. A solution is to use JNI but this requires to hand code all the classes. Python has, for example, a wonderful solution with ...
1
vote
1answer
28 views

Mixing Audio Files in Java

I am creating this program in Java that import X number of Audio files and mix them in 1 audio file. Example: Import: "Audio1.wav", "Audio2.wav". Mix them. Export: "Result.wav" Until now i have ...
1
vote
0answers
68 views

Playing sounds very fast with Soundpool

I am creating an app that requires a sound or sounds to potentially be played every ~25ms. (300beats per minute with potentially 8 "plays" per beat) At first I used SoundPool to accomplish this. I ...
1
vote
2answers
66 views

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 < ...
1
vote
1answer
25 views

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 ...
1
vote
1answer
593 views

How to mix sound files of different format using FFMPEG?

I need to mix audio files of different types into a single output file through code in my iPad app. For example, I need to merge a .m4a file with .mp3 or .wav or any other format file. The resulting ...
1
vote
1answer
222 views

Recommended way to use C++ class into Objective-C class minimizing using of Objective-C++?

I'm mixing Objective-C and C++. However I want to minimize using of Objective-C++. Because it has some kind of limits in both of Objective-C and C++. Currently, I'm using it like this. // A.h, ...
1
vote
1answer
391 views

To mix sounds using OpenAl

Anybody have any idea about how to mix sounds in iphone.We can use OpenAl that i know but need some sample application or code which would be easier for me to understand this concept As i have seen ...
1
vote
2answers
388 views

Cannot get ducking to work with kAudioSessionProperty_OtherMixableAudioShouldDuck

This is driving me insane, I have an iPhone app with background music playing from the iPod app, when I play a sound I want to duck the background music until the sound finishes playing. So I leave my ...
1
vote
1answer
473 views

Offline sound recording in iphone

I am developing a music mixing app in iphone. It'll mix the music and user can compose a new music from it. I need to record this final music. I had used AVAudiorecorder to record this one. But no ...
1
vote
1answer
612 views

Mix RGB colors (L*a*b*)

Basically I want two mix two colours color1 and color2. Since simple calculation's bring up stuff like blue+yellow = grey ((color1.r + color2.r)/2 etc) i did some research and found that apparently ...
1
vote
1answer
663 views

Playing multiple MP3 songs simultaneously on iPhone

I would like to do a mixing table on iPhone. I have the different tracks of one song and I want to play them on iPhone simultaneously. These songs are MP3 files, I want to be able to play up to 15 ...
1
vote
2answers
1k views

Mixing Audio Files

I have few audio files: f_1 - length 10 sec f_2 - length 3 sec f_3 - length 1 sec What I need is to find a way to mix(merge) f2 and f3 at particular section in f_1 (i.e. position which is equal ...
1
vote
3answers
3k views

Mix multiple sounds in flash

I have several sound objects in flash, I would like to mix different points in these sound files to create a single masterpiece and save it as an mp3. I've seen various "mixer" applications online and ...
1
vote
1answer
593 views

Mixing Static Libraries of C Code built from different versions of Visual Studio 2002 and later

I have a static linkable library of C and Fortran routines compiled and linked together using the Visual Studio 2002 C (v7.0) Compiler and the Intel Fortran 9.0.018 Compiler. The C code in my library ...
0
votes
1answer
57 views

String subscript out of range in line 1331 of xstring

The second while loop is throwing an exception in xstring line 1441 on the second iteration, which it should not do. This is because on the first pass: Testthis->NAME[n] = 'B' ...
0
votes
2answers
26 views

Mixing own XML with HTML5 havin eclipse to display code hints

I am writing my own templating engine mainly for web applications. It is actually mix of my own XML tags and HTML. Here is the sample: <lp:view xmlns:lp="http://sminit.com/view" ...
0
votes
2answers
90 views

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 ...
0
votes
1answer
32 views

Scoring solr results by relevancy AND category

We are using Solr 1.4 to produce results for user queries. The results are fetched from an index containing approximately 500k documents. The index is constantly being updated with new documents and ...
0
votes
1answer
63 views

Resizing a WPF window that is a child to a CView

I am facing a weird problem and I need your help. I have an MFC MDI application, and I am trying to create a WPF Window as a child of the opened CView. I was able to successfully do that by handling ...
0
votes
0answers
158 views

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 ...
0
votes
1answer
230 views

Mixing multiple signals using audio units on the iOS

I'm making a controller for a synth on the iPad, and I have 4 or 5 signals that I want to mix and send to the remoteIO render callback . Right now I have two choices: I can use the multichannel mixer ...
0
votes
1answer
107 views

combining customized Java LookAndFeel classes

is there a simple way to combine two customized Java LookAndFeel classes? I want to use the Nimbus class for its theme (fonts, rounded edges, etc), but with the colors from the Metal class. Short of ...
0
votes
2answers
88 views

Mixing Service-Oriented Architecture Security and Business Logic

I have a SOA which makes heavy use of nonces (i.e, one-time one-use security tokens). My app takes a nonce from a client, verifies it, then sends a new nonce back to said client as part of every ...
0
votes
2answers
546 views

AVAudioPlayer sound files playing out of sync when mixed - iPhone

I am trying to play 6 seperate .mp3 sound files using instances of AVAudioPlayer. The sounds are playing at the same time but they seem to be playing out of sync or at slightly different speeds. Does ...
0
votes
2answers
187 views

Color mixing in android

I am working on application in which i have five colors:Red,Green,Blue,Yellow,purple I want to implement color mixing from those colors:such that like there are five button for each color. User ...
0
votes
1answer
350 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
1answer
253 views

libsndfile usage joining and mixing .wav files

I need help getting started with libsndfile. I have four .wav files (all the same sample rate). I want to join the first two together,then the next two together, Then mix the resulting 2 .wav files ...
0
votes
0answers
34 views

Handling different soundcards with one ISDN modem

I have an ISDN PCI modem that I operate with TAPI. In the same machine I also have two sound cards. Is there a way to choose which sound card will be used for the voice transmission during call (voice ...
0
votes
1answer
259 views

Advice for building a browser-based audio mixer up to 32 tracks

As a personal hobby I am looking to build an online audio mixer where I can upload individual instrument tracks, control individual volumes of each track, and export the mixed down version. I've been ...
0
votes
1answer
187 views

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 ...
0
votes
2answers
441 views

Overlay WAV files in C#

How do I overlay two or more wav files in c# ?

1 2