/usr/lib/perl5/pods/SDL/SMPEG.pod is in libsdl-perl 2.540-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | =pod
=head1 NAME
SDL::SMPEG - a SDL perl extension
=head1 CATEGORY
TODO
=head1 SYNOPSIS
$video = SDL::SMPEG->new( -name => 'pr0n.mpg' );
=head1 DESCRIPTION
C<SDL::SMPEG> adds support for MPEG video to your
SDL Perl application. SMPEGs are objects bound to
surfaces, whose playback is controlled through the
object's interface.
=head2 METHODS
=over 4
=item *
C<SDL::SMPEG::error()> returns any error messages associated with playback
=item *
C<SDL::SMPEG::audio(bool)> enables or disables audio playback, (on by default)
=item *
C<SDL::SMPEG::video(bool)> enables or disable video playback, (on by default)
=item *
C<SDL::SMPEG::loop(bool)> enables or disable playback looping (off by default)
=item *
C<SDL::SMPEG::volume(int)> set the volume as per the mixer volume
=item *
C<SDL::SMPEG:display(surface)> binds the clip to a display surface
=item *
C<SDL::SMPEG::scale([x,y]|[surface]|int)> scales the clip by either x,y
factors, scales to the image dimensions, or a single scalar.
=item *
C<SDL::SMPEG::play()> plays the video clip, call C<SDL::SMPEG::display()> before playing
=item *
C<SDL::SMPEG::pause()> pauses video playback
=item *
C<SDL::SMPEG::stop()> stops video playback
=item *
C<SDL::SMPEG::rewind()> resets the clip to the beginning
=item *
C<SDL::SMPEG::seek(offset)> seeks to a particular byte offset
=item *
C<SDL::SMPEG::skip(time)> skips to a particular time
=item *
C<SDL::SMPEG::region(rect)> takes a SDL::Rect and defines the display area
=item *
C<SDL::SMPEG::frame(int)> renders a specific frame to the screen
=item *
C<SDL::SMPEG::info()> returns a new C<SDL::MPEG> object reflecting the current status
=item *
C<SDL::SMPEG::status()> returns either SMPEG_PLAYING or SMPEG_STOPPED or SMPEG_ERROR
=back
=head1 AUTHOR
David J. Goehrig
=head1 SEE ALSO
perl(1) SDL::Surface(3) SDL::MPEG(3)
=cut
|