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.

197 questions
0
votes
2 answers

What is preventing the sound files from being played in this pygame Mixer set up?

I'm trying to write a small bit of code to play music files in the background of a game. The problem I'm coming across is that despite all the code being laid out and phrased properly no sound files will play. I put several print statements in the…
Logan Henry
  • 63
  • 1
  • 10
0
votes
0 answers

how to make pygame start sound at a specific point?

i have a sound file with a delay in it that plays with pygame. menu_sound = pygame.mixer.Sound('sounds/Devastation.ogg') #these lines are not next to each other in my code, i just picked out relevant lines. menu_sound.play(-1) there is about a 4…
Thedudxo
  • 549
  • 3
  • 8
  • 22
0
votes
1 answer

Python py2exe dll load fail pygame mixer module not available

I tried to make an exe from my programm in python using py2exe. My programm contains multiple sound- and image files. The problem is, that when I try to run the exe, it gives me an error: C:\Users\Eduard\Desktop\testordner>test.exe test.exe:7:…
Duardo
  • 107
  • 11
0
votes
0 answers

Register an EventHandler such that an event is generated whenver current volume output level as visualized in audio Mixer changes

This is in continuation of this question: Getting individual windows application current volume output level as visualized in audio Mixer How to register an EventHandler which gets called whenever the current output volume of an application (such as…
mio
  • 159
  • 1
  • 1
  • 12
0
votes
0 answers

Set mixer as "default" ALSA API

I wrote a code to open and control mixer volume: char *card, *channel; snd_mixer_t *handle = NULL; snd_mixer_elem_t *elem = NULL; static long alsa_min, alsa_max; void alsa_open_mixer( void ) { int err; static snd_mixer_selem_id_t *sid =…
user935420
  • 113
  • 1
  • 7
0
votes
2 answers

pygame.mixer.music.set_pos doesn't exist?

I'm making a program which when the player dies, gets the music time, and plays a new song using the music time from the previous song, I've done this before a while back and it worked with no problems, but now it's giving me an error message (shown…
user3254643
  • 11
  • 1
  • 3
0
votes
1 answer

YouTube Autosuggest API - where to find samples or documentation?

I want to create a YouTube video search box with the same autocomplete feature. Any idea where can I find samples or and documentation? Thanks
jariburi
  • 17
  • 3
0
votes
1 answer

How to Verify AudioUnit Properties of Mixer Unit and iPodEQ Unit

I want to use the AudioGraph to improve the VOIP audio quality. Now, I've merged the AUGraph to process the audio data from remote, connected the nodes: mixer node--> iPodEQ node --> I/O output node. Remote audio is mono. I set the local output to…
devincdai
  • 3
  • 2
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
  • 10,080
  • 23
  • 82
  • 133
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
  • 185
  • 1
  • 4
  • 12
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
1 answer

Understanding Python Error Message regarding Mixer Module for Audio

I am receiving an error message (included below) when I try to run my gaming program with sound. I have a MacBook Air, 2017 and I am running Mac OS 10.13.6. After looking at this error message included below, I am wondering: Does this look like a…
Alex
  • 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
  • 151
  • 2
  • 8
-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
  • 3,145
  • 6
  • 41
  • 71
-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.
1 2 3
13
14