Questions tagged [mixing]

245 questions
0
votes
1 answer

error: Use of undeclared identifier 'self' c++-objective c mixing

I'm currently finishing my game for iOS using ue4. I'm using some specific iOS Code and try to call Methods using the 'self' variable void Aaccessactorios::Shareoption() { [self Sharebutton];//ios } the Code is within a…
0
votes
1 answer

Mixing Two Numpy Arrays Randomly

This is my first question on Stack Overflow, so bear with me. Let's say I have two arrays of the same shape, X and Y import numpy as np X = np.array(([0, 0], [0, 0]), dtype=float) X = np.array(([1, 1], [1, 1]),…
0
votes
1 answer

Addition of PCM Audio Files - Mixing Audio

I am posed with the task of mixing raw data from audio files. I am currently struggling to get a clean sound from mixing the data, I keep getting distortion or white noise. Lets say that I have a two byte array of data from two AudioInputStream's. …
Ivaan
  • 36
  • 4
0
votes
1 answer

Mixing/Overlaying wav audio files in Python

I have been looking for a solution for overlaying/mixing two WAV audio files together using ONLY the wave library. I have found the following solution: Mixing two audio files together with python And one of the answers provide the following…
Radonic
  • 47
  • 2
  • 6
0
votes
1 answer

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 trying (and have come pretty close) with…
Jonathan P.
  • 96
  • 1
  • 1
  • 8
0
votes
1 answer

Overlay WAV files in C#

How do I overlay two or more wav files in c# ?
user562350
0
votes
2 answers

c files inside a c++ program

#include #include #include extern "C"{ #include "sql.c" } class ReportsSync{ public: string getQuery(); bool testQuery(string); }; if i have a cpp file like tis,…
Prasanth Madhavan
  • 12,657
  • 15
  • 62
  • 94
0
votes
1 answer

AUGraph Mixing & Rendering to file, as a background task? (Objective-C)

I'm currently working on a pretty straight forward app which records the users singing voice using AVAudioRecorder and processes it using AUGraph (from the iPhoneMixerEQGraphTest example) which applies an effect to the voice and then merges the song…
M0rph3v5
  • 945
  • 1
  • 11
  • 23
0
votes
1 answer

Matlab: Principle component analysis on signal (spectral unmixing)

I have a spectrum (wavelength(x) versus absorption(y)) which is a mix of two signals (xa,ya) and (xb,yb). I am trying to use PCA (code I found online) to unmix the signals in (x,y): %step 1, input…
2one
  • 1,035
  • 3
  • 17
  • 36
0
votes
1 answer

How do I add library paths of C libraries that I want to use in C++ to the environment

I want to use the VLFeat Libaries in C from a C++ file. Their tutorial for g++ presents a basic "Hello World" example which is compiled as follows: g++ main.cpp -o vlfeat-test -I /disk/no_backup/lesi/vlfeat-0.9.20/ -L…
Alex
  • 45
  • 6
0
votes
1 answer

scheduling jobs to clustered quartz1.8.6 from non-cluster configured quartz scheduler instance

I'm using quartz 1.8.6 in clustered mode with 4 instances. Now, I observed high contention on table QRTZ_LOCKS. My application also provide webservices for online clients. This webservices also do scheduling of new jobs. Now, I see timeout…
0
votes
3 answers

mixing programming of fortran and c++/c under visual studio

Many people may have asked this question, however, I have never seen any one gave a satisfactory solution. okay, let me make my question clear: I am trying to call some c++ subroutines/functions from my exsiting fortran code. The point is i am…
peng
  • 1
  • 1
  • 1
0
votes
1 answer

Mixing lines using query on MariaDB

I am trying to do a query to join two tables. select distinct ext.COD_FRENTE_CHEG, ext.COD_DIVI2_SAIDA, vaz.ABV_DIVI2_LOG,ext.DATA_SAIDA, ext.CIE_PESO_LIQUIDO, ext.CIE_HR_CHEG_CAMPO, ext.CIE_HR_SAI_CAMPO, ext.CIE_DATA_CHEG,…
0
votes
1 answer

Owin Web Api in existing project, stop capturing all requests

For this current project I am working on, we need to implement a web api. It needs to live inside the existing webforms project. And the specifications say we need to use Owin. So after wiring everything up using: Microsoft.Owin,…
woutervs
  • 1,500
  • 12
  • 28
0
votes
0 answers

Tetgen in C Language

I am currently using Tetgen to generate Delaunay triangulation, but since I have to use C programming language and not C++, is there a way in which I can call Tetgen from C? Thank you in advance
NotMe
  • 65
  • 5