Questions tagged [mixing]
245 questions
1
vote
1 answer
How to concatenate two labels (one string and one double type) in my sld code?
I'm creating a style in geoserver and need to concatenate two different data type (one is string, the other is double) but it's not working. someone can help me? i'm using geoserver 2.16 version and here's the code i've made:
…

Brenda B
- 11
- 1
1
vote
0 answers
FFmpeg delay and mix audio streams while keeping overall volume constant
I have about 100 audio streams, all with the same intro music/sound, and in some of them the intro is delayed by a few seconds. I want to align and mix all the audio streams such that all the intros play at the same time and the output remains…

unstuck
- 11
- 3
1
vote
1 answer
Getting data from audio mixer
I am trying to build an open-source in-ear monitoring system. I have created the UI and was wondering how I would get the channels that are on an audio mixing console so that I can edit the channels and stream them to each musician. Is there a…

Derick Mathews
- 347
- 2
- 3
- 12
1
vote
0 answers
How to create a variable by addition of two probability distributions with different weights?
I am working on the following code:
np.random.seed(6233)
np.random.choice(20, 20)
u1 = np.random.normal(loc=0.0, scale=25.0, size=20)
u2 = np.random.normal(loc=0.0, scale=5.0, size=20)
idu1 = np.random.choice(len(u1), 20)
idu2 =…

Varou37
- 9
- 3
1
vote
1 answer
Swing layering - transparent component ignores underlying AWT element
First, to get it out of the way, I absolutely NEED to use heavyweight AWT component with a swing application. I need features from both of them.
The task is simple - render a heavyweight AWT Canvas (or any other element), render OpenGL scene…

Vlad Vyatkin
- 544
- 5
- 16
1
vote
2 answers
Mixing Class and Function templates
Hi I am trying to make a C++ class template and have it poses a function template too.. it boils down to
template
class fun{
public:
template T add(U, V);
private:
T data;};
I've have tried rewriting the…

Christian Galleisky
- 21
- 6
1
vote
1 answer
How to force OpenAL to mix in mono on the iPhone
When I run my app with default OpenAL settings I can see that it mixes sounds at 44khz stereo, here's what I get in the console (running on an iPhone 4):
AudioStreamBasicDescription: 2 ch, 44100 Hz, 'lpcm' (0x00000C2C) 8.24-bit little-endian…

m4gicm4gic
- 11
- 2
1
vote
2 answers
How to use moment format in mixing?
In my laravel 5.7 / vuejs 2.5 app I use moment library to format datetime from db
It works in my component, but I have error when I try to wrap moment in my mixing as function with parameters.
package.json:
{
"private": true,
…

mstdmstd
- 586
- 15
- 39
1
vote
0 answers
Mixing versions can lead runtime crashes
All com.android.support libraries must use the exact same version
specification (mixing versions can lead to runtime crashes). Found
versions 27.1.1, 26.1.0. Examples include
com.android.support:animated-vector-drawable:27.1.1 and
…

YAZZIN YASSIN
- 11
- 2
1
vote
1 answer
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 calls and links to the Microsoft C-RunTime…

Heston T. Holtmann
- 218
- 3
- 13
1
vote
1 answer
NAudio - wave split and combine wave in realtime
I am working with a multi input soundcard and I want to achieve live mixing of multiple inputs. All the inputs are stereo, so I need to split them in first place, mix a selection of channel and provide them as mono stream.
The goal would be…

Arno
- 11
- 3
1
vote
1 answer
Manipulating audio to bypass content ID detection
I'm using YouTube's "auto-generated" captions feature to generate transcripts of mp3 files. I do this by first converting the mp3 to a blank mp4, uploading to YouTube, waiting for the auto generated captions to appear, then extracting the SRT…

Adam
- 59
- 2
- 4
1
vote
1 answer
Calling a function in a .cpp file from a .c file
I've been struggling to solve a problem with a project I'm working on.
Lets assume I have a few files:
reflection.h
sll_insert.c
record_sll.c
io_recorder.cpp
all of the above mentioned cpp and c files use:
#include "reflection.h"
and in…

baronzo1
- 23
- 1
- 5
1
vote
0 answers
Algorithm to mix pre-mixed colors to a defined ratio?
There is a problem I don't know how to solve. I need to achieve a given ratio of Cyan, Magenta and Yellow (CMYK without the K) while using pre-mixed colors in bottles with different sizes.
In every task any number of 3+ bottles is possible (3, ...,…

malbue
- 19
- 4
1
vote
0 answers
NAudio Vorbis Mixing Exception
I'm trying to figure out why NAudio is raising the following exception:
System.ArgumentOutOfRangeException was unhandled
Message: An unhandled exception of type 'System.ArgumentOutOfRangeException'
occurred in NAudio.Vorbis.dll
Additional…

Christopher
- 86
- 6