in reply to Changing volume in Linux with Perl?

Check out Programming /dev/mixer.

  • Comment on Re: Changing volume in Linux with Perl?

Replies are listed 'Best First'.
Re: Re: Changing volume in Linux with Perl?
by PipTigger (Hermit) on Jan 16, 2001 at 07:02 UTC
    Actually I have in fact read almost everything at that linq before too... the problem is that the method described there is basically what the aumix C-code I already have does. Is there an equivalent to 'sys/ioctl.h' in Perl? Is there a way to manipulate /dev/mixer properly without compiling C? If not, aumix will suffice but it'd be nice to do it right in Perl if possible. Maybe it'd make a great CPAN module too. We'll see. Thanks. TTFN.

    -PipTigger
    p.s. I don't need your authority!
      Have a look at ioctl for a way to roll your own in perl. I agree that this would make a handy CPAN module when you get it working. Good luck!