shotgunefx has asked for the wisdom of the Perl Monks concerning the following question:
Which dies with "open /dev/sequencer: No such device".#!/usr/bin/perl use strict; use warnings; use SDL; use SDL::Mixer; use SDL::Music; my $mixer = new SDL::Mixer(-frequency=>44100, -channels=>2, -size=>1024); my $mp3 = new SDL::Music('./test.mp3'); $mixer->play_channel(0, $mp3, 0);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: SDL::Mixer - How to specify the device?
by zentara (Cardinal) on Dec 03, 2006 at 13:26 UTC | |
by shotgunefx (Parson) on Dec 03, 2006 at 23:10 UTC | |
Re: SDL::Mixer - How to specify the device?
by Anonymous Monk on Dec 03, 2006 at 14:06 UTC | |
by shotgunefx (Parson) on Dec 03, 2006 at 23:12 UTC | |
Re: SDL::Mixer - How to specify the device?
by shotgunefx (Parson) on Dec 04, 2006 at 12:17 UTC |