Hey all ! I'm Ash and this is my first post here



The short question :
I am trying to install SDL::SMPEG or more precisely (Perl-)SDL with SDL::SMPEG in it, both from cpan and from the repository of my distribution (Arch Linux)

SDL seems to be configured to not install SMPEG by default

For example in the test run of the cpan install, it says :
"smpeg support not compiled"
Looking in the sources of the test script, it is right there :
if ( SDL::Config->has('smpeg') ) { ... } else { plan( skip_all => ( SDL::Config->has('smpeg') ? '' : ' smpeg suppo +rt not compiled' ) );

And indeed, it fails in finding files when i add "use SDL::SMPEG" in my script

So i'm looking into how i can change the config to explicitly DO install it



The long question :
I am building a Perl SDL application, which is supposed to run under X11 (on Linux)

In this application i want to show a video (available in a file) on the screen, with controls such as play, stop, seek to time etc. called from the script

I'm willing to consider all possible ways of making it, not only SDL::SMPEG, so if you can suggest something else go for it

Best Wishes - Ash

In reply to Installing SDL::SMPEG by Ashx

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.