Questions tagged [mixer]

Anything related to audio mixers, i.e. hardware or software (virtual) devices used to mix the signals of independent audio sources together in order to produce a single audio signal out of them. Appropriate for questions about the software audio mixing applications commonly found on computers and smartphones.

Anything related to audio mixers, i.e. hardware or software (virtual) devices used to mix the signals of independent audio sources together in order to produce a single audio signal out of them. Appropriate for questions about the software audio mixing applications commonly found on computers and smartphones.

See related Wikipedia article.

189 questions
0
votes
0 answers

.getSourceLines() always returns 0

I have a mixer and I want to gather information on its source lines. My code is as follows. myMixer = AudioSystem.getMixer(mixerInfo[i]); // index through all list of mixers Line[] lines =…
Dr.Knowitall
  • 8,594
  • 18
  • 72
  • 123
0
votes
1 answer

Python, pygame.mixer: sound does not work

When I try to run the following code, I don't recieve either any errors or any sound. The sound file is not broken, I've tried many other sounds files as well. import pygame pygame.mixer.init(44100, -16, 2, 2048) sound =…
Simon Larsen
  • 175
  • 3
  • 11
0
votes
1 answer

How do you make an AuGraph restart a audio file from the start of the file?

I am working with Apple's MixerHost application. It is a great example of how to set up an AuGraph, however the stop button is really a pause button. When you hit play it continues playing the sound files from the last position. I want to have a…
Beleg
  • 362
  • 2
  • 23
-1
votes
0 answers

Java lib for mixing multiple sound tracks together

Backstory: I play a lot of Dungeons and Dragons with my friends. I developed a small web app for making our lives easier. During my games I play background music for more immersion, like "sounds of a medieval tavern", etc. Some times it is hard to…
-1
votes
1 answer

Blenderexport FBX to Unity problems

I have problem. When I have my object in blender it looks like the first picture, but when I export it to Unity it looks different and like in the second picture. Can anyone help me?enter image description here enter image description here
Lupu
  • 1
-1
votes
1 answer

Java Sound API. Getting supported audio formats from mixer

I'm trying to get a line from an external mixer connected to my pc via USB. So I wrote a simple program to list all the mixers and their respective source lines (outputs) and target lines (inputs), and it works properly: import…
Sarrio
  • 33
  • 1
  • 5
-1
votes
1 answer

SDL_Mixer when play again, starts from random place for a while then from the beginning

Hi I'm trying to trigger multiple music playing here, here are some code. Mix_Music *mix_list[MUSIC_COUNT] ; //init music with SDL int result = 0; int flags = MIX_INIT_MP3; if (SDL_Init(SDL_INIT_AUDIO) < 0) { …
tomriddle_1234
  • 2,813
  • 6
  • 34
  • 58
-1
votes
1 answer

How can I create a Xylophone program using pygame mixer or pyaudio?

I want to create a Xylophone using pygame. I have created the image and split the image according to different notes. I need to upload sounds to those particular note sections of xylophone. Please help me with adding sounds.
-3
votes
2 answers

Color Mixer User Input

I am just starting my programming classes in python and have to write a program that lets the user input two of the primary colors and it prints the resulting secondary color. I understand most of the beginner steps of python but always seem to skip…
straxus
  • 3
  • 1
  • 3
1 2 3
12
13