Questions tagged [mixing]

245 questions
0
votes
0 answers

Cross-validate mixed classifier in Sklearn

I used GridSearchCV to find the best parameters of Logistic Regression and SVC: pipe = Pipeline([('scaler', StandardScaler()), ('clf', LogisticRegression())]) cv = StratifiedKFold(n_splits=5, shuffle=True, random_state=11) param_grid_logreg = …
0
votes
1 answer

How to mix thousands of WAV files into a single file using NAudio's MixingSampleProvider?

I'm looking for a way to mix thousands of WAV files into a single file using NAudio's MixingSampleProvider. I'm building a drum sampler and I'd like to be able to create a whole song (based on MIDI information) that could then be exported into a…
Michal Diviš
  • 2,008
  • 12
  • 19
0
votes
0 answers

How to use sox mixing multi-file?

I know Sox command line mixing, use -m. Now I want to call libsox through the c/c++ code. How do I mix multiple (more than 3) mono files into one mono file through the Sox header file? I don't understand the source code very well. If you can give me…
DLKUN
  • 3
  • 2
0
votes
1 answer

Swift UICollectionViewCell Item Mixing... Video of the problem is available

My problem video: https://streamable.com/2vrdbu As you move around the "Collection View" the objects move around and the assignment doesn't work properly. I tried many methods, but I could not achieve successful results. Code…
0
votes
1 answer

How to mix a lot of audio files with NAudio?

For example, I have 5 audio files. And, I want to combine these files with C# NAudio. <------- A.wav -------> <---- B.wav ----> <---- C.wav ----> <-- D.wav --> <- E.wav -> I goggled but I can find a solution which apply this…
P. ful
  • 113
  • 9
0
votes
1 answer

How to Auto Gain Control (AGC) while mixing audio for audio conference

I am capturing audio at 16 bit little endian,16khz and frame duration is 60ms. Now while mixing for audio conference, I can divide every participant's sample's (audio short array) by participant count and add all (to avoid clipping). But the…
Nafiul Alam Fuji
  • 407
  • 7
  • 17
0
votes
0 answers

Django - instances

How can i use in my views instances from other class? For example in my views i have: MODELS class Projekt(models.Model): nazwa_projektu = models.CharField(max_length=200, unique=True) opis_projektu = models.TextField() wybor_projekt =…
ProtoN
  • 35
  • 7
0
votes
1 answer

returning Assembly Function In C Code x86 Compilation on 64 bit linux

C code #include int fibonacci(int); int main() { int x = fibonacci(3); printf("Fibonacci is : %d",x); return 0; } Assembly section .text global fibonacci fibonacci: push ebp; mov ebp, esp; ; initialize …
0
votes
1 answer

Java11 SetComponentMixingCutoutShapte alternative

I have an application written on Java SE 8 that was heavily using features for mixing Heavyweight and Lightweight components. In particular, the function "SetComponentMixingCutoutShape" was used, which was later deprecated in future versions of…
Vlad Vyatkin
  • 544
  • 5
  • 16
0
votes
1 answer

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 writing my own customized look and feel class…
0
votes
1 answer

Mixing huge number of audio files to stereo

I am working on a project that requires an on-line service that should audio-mix user submitted 30-sec audio together in one stereo file. It would do daily preview bounces where new audio would be mixed with the last stereo version. But for final…
zdusper
  • 65
  • 6
0
votes
1 answer

ffmpeg mixing webm “Filter overlay has an unconnected output”

I want to mix multiple webm Below is my command But ffmpeg error “Filter overlay has an unconnected output” ffmpeg -i 1596618603934.webm -i 1596618618345.webm -filter_complex…
Cheng 赵
  • 13
  • 4
0
votes
1 answer

how to getUserMedia and record the video mixing the mp3 with javascript? mp3 can play pause and stop

I am using getUserMedia and mediaRecorder API to record an video from webcam. I am using chrome version 80. How to getUserMedia and record the video mixing the mp3 with javascript? mp3 can play pause and stop I don't know how to mixing the mp3 to…
0
votes
3 answers

Mix and trim 2 files with Sox

I need a little bit help and hope to find that here. I am using sox for tagging some music with voice tags on my server while user is uploading the file. This is my command which I was using. Everything is working fine. sox -m {voice_tag_loop}…
0
votes
0 answers

Playing two audio files in order without time delay

I am creating a program to turn text into speech (TTS). What I've done so far is to split a given word into syllables and then play each pre-recorded syllables. For example: INPUT: [TELEVISION] OUTPUT: [TEL - E - VI - SION] And then the program…
kgb26
  • 183
  • 2
  • 14