Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Well the problem you had in your last post, about the premature exiting of your SDL script is solved by using the Tk event loop to keep everything alive. So Tk and SDL is an easy combination to put together. The script below is the basic Tk app, using SDL. All you need to do is setup lists, and load different files into the player. If you have a touch screen, it would be very easy to bind to a up / down icon, and scroll thru a list. You could setup volume controls, repeat, auto-play, and all sorts of cool checkbuttons.
#!/usr/bin/perl -w use Tk; use SDL::Mixer; use SDL::Music; my $mw = MainWindow->new(title => "SDL audio"); $mixer = eval { SDL::Mixer->new(-frequency => 44100, -channels => 2, - +size => 1024); }; $mixer->music_volume(100); $music = new SDL::Music './1bb.wav' or die $!; $mixer->play_music($music,-1); #$mixer->play_music($sound,-1); #will not play simultaneously MainLoop;

I'm not really a human, but I play one on earth. Cogito ergo sum a bum

In reply to Re: Tk Apps - Common approaches? by zentara
in thread Tk Apps - Common approaches? by shotgunefx

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-24 02:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found