Questions tagged [mixing]

245 questions
2
votes
3 answers

Mixing C-Style Structures with C++

I'm no C++ expect, as you will undoubtedly notice. But I'm trying to "upgrade" some old C code to C++. In the process, I'm trying to promote old structures to classes. I found this Oracle article about some of the things I'm trying to do.…
ThermoX
  • 277
  • 3
  • 11
2
votes
1 answer

the run time aborting when calling c++ sub from fortran

I had read many posts here about mixing languages use of Fortran and C++. However, I'm still stuck with my current problem: my Fortran program always aborted. I have the Fortran program: test-cc.f90 and the C++ program: deb_cc.cc. deb_cc.cc…
Ting Lei
  • 91
  • 9
2
votes
3 answers

Mix multiple strings into all the possible combinations

I have some strings. 1 2 3 How do I combine them into all their unique combinations? 123 132 213 231 312 321 Here is the code I have, but I would like to work without the Random class because I understand that this is not the best way to do…
Karkool
  • 41
  • 2
  • 9
2
votes
3 answers

Playing two sounds simultaneously - Android

Is it possible to play two sound (mp3) files at the same time? I have tried using two different MediaPlayer objects- MediaPlayer mediaPlayer; MediaPlayer mediaPlayer2; to play the sounds, but that does not work. I cannot use SoundPool either as the…
Advait Saravade
  • 3,029
  • 29
  • 34
2
votes
2 answers

Automate pixel fallback using REM units throughout a project

I checked the following article in which it presented the following mixing: rem font size with pixel fallback @function calculateRem($size) { $remSize: $size / 16px; @return $remSize * 1rem; } @mixin font-size($size) { font-size: $size; …
Daniel Ramirez-Escudero
  • 3,877
  • 13
  • 43
  • 80
2
votes
1 answer

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 tracks simultaneously, and changing volume, muting…
sui
  • 68
  • 1
  • 8
2
votes
1 answer

breeze.js mixing AND and OR predicates

I'm trying to configure the proper syntax for breeze.js when mixing AND and OR predicates. I did not see an example on the breeze site and could not find one anywhere else. Basically I want to do something like this in my WHERE clause: ( age > 30 …
mwill
  • 424
  • 7
  • 21
2
votes
5 answers

Mixing C and C++ code with userdefined "typename()" function in C

I am trying to write a C++ code where I call a C function, lets say hello_world() which in-turn calls a user-defined typename() function. When I include my C code in C++, there is a compilation error, I know that typename is a keyword in C++ but…
Trilok M
  • 681
  • 7
  • 21
2
votes
1 answer

Linking C++ library (libtorrent) from Objective-C

I'm trying to use libtorrent library from Xcode 5.0 Objective-C Project without success. I've built boost 1.54 and libtorrent-rasterbar (latest) from sources using LLVM 5.0, no problems with that. Also, via MacPorts I obtained pkg-config to get the…
Hernán
  • 4,527
  • 2
  • 32
  • 47
2
votes
1 answer

Android Multitrack Audio Library?

Hi Guys I am trying to build a "4-track" recording app on Android. I'm looking for a library or set of classes I can use record audio and mix 4 channels of audio to a 2 channel "mixdown". Ideally it would be similar to the javax.sound.sampled…
Mike Duncan
  • 51
  • 1
  • 3
2
votes
1 answer

JMenu displaying behind Label

Statdard is Lable When i am opening file JMenu, label is displaying in front of jmenu. It was happening because I was mixing AWT and swings. Instead of Label when i used JLabel It is working fine as expected. Mixing AWT and Swing components
ajkush
  • 587
  • 2
  • 11
  • 25
2
votes
1 answer

Why is my Menu on the bar displaying below a JPanel in the container?

I'm in the position where I have to reuse and modify another persons code to create an image processing application. The following code is used to setup the frame and its GUI. The problem I'm having is that when the file word is clicked on the…
Daniel Devlin
  • 95
  • 1
  • 11
2
votes
3 answers

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 would like to know what area(s) to look at to be…
Irwin
  • 12,551
  • 11
  • 67
  • 97
2
votes
1 answer

Mixing and Adding Silence to Audio Android/Java

I have 2 files. Once is an mp3 being decoded to pcm into a stream and I have a wav being read into pcm also. The samples are being held in a short data type. Audio stats: 44,100 samples * 16 bits per sample * 2 channels = 1,411,200 bits/sec I have…
nawlrus
  • 777
  • 1
  • 13
  • 27
2
votes
2 answers

c#.net what tools to use for programming multi-track recording software and vst plugins?

I am wanting To create a software based multi-track recording studio using visual studio 2010 and C#.NET. I have two questions: When it comes to good performance, I am wanting to know what is the best programming language in visual studio 2010 to…
Frekster
  • 1,138
  • 1
  • 14
  • 32