Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plaympeg(1) [debian man page]

PLAYMPEG(1)						      General Commands Manual						       PLAYMPEG(1)

NAME
plaympeg - MPEG audio (MP3) and video (MPEG-1) player SYNOPSIS
plaympeg [options] file ... DESCRIPTION
plaympeg is an MPEG audio and video player that uses the SDL MPEG Player Library. It can play back MPEG audio (layer 1, 2 and 3), MPEG video (MPEG-1) and MPEG system (audio and video combined) files. MPEG-2 video files (as found on DVDs) are not supported. The video player works best on a 16 bit color depth X11 display, it works on other color depths with reduced speed as well. You'll need a CPU with 300 MHz or more to play back an MPEG system stream with 25 frames per seconds (fps) at full speed. OPTIONS
--help Show short usage information --noaudio Don't play the audio stream (if available) --novideo Don't play the video stream (if available) --fullscreen Play the MPEG video stream in fullscreen mode (this requires root privileges or a setuid plaympeg binary) -2, --double Play the MPEG video stream at double size -l, --loop Play the stream (audio or video) over and over again -v N, --volume N Set the volume of the audio stream to N% (N in the range of 0 to 100) -s S, --scale S Play the MPEG video stream at S size SEE ALSO
SMPEG home page at http://www.lokigames.com/development/smpeg.php3 AUTHOR
The SDL MPEG Player Library was written by Karl Robillard and Sam Lantinga of Loki Entertainment Software. Please report any bugs and/or fixes to smpeg@lokigames.com. This manual page was written by Stefan Gybas <sgybas@debian.org> for the Debian GNU/Linux system, but may be used elsewhere under the GPL. PLAYMPEG(1)

Check Out this Related Man Page

pods::SDL::SMPEG(3pm)					User Contributed Perl Documentation				     pods::SDL::SMPEG(3pm)

NAME
SDL::SMPEG - a SDL perl extension CATEGORY
TODO SYNOPSIS
$video = SDL::SMPEG->new( -name => 'pr0n.mpg' ); DESCRIPTION
"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. METHODS o "SDL::SMPEG::error()" returns any error messages associated with playback o "SDL::SMPEG::audio(bool)" enables or disables audio playback, (on by default) o "SDL::SMPEG::video(bool)" enables or disable video playback, (on by default) o "SDL::SMPEG::loop(bool)" enables or disable playback looping (off by default) o "SDL::SMPEG::volume(int)" set the volume as per the mixer volume o "SDL::SMPEG:display(surface)" binds the clip to a display surface o "SDL::SMPEG::scale([x,y]|[surface]|int)" scales the clip by either x,y factors, scales to the image dimensions, or a single scalar. o "SDL::SMPEG::play()" plays the video clip, call "SDL::SMPEG::display()" before playing o "SDL::SMPEG::pause()" pauses video playback o "SDL::SMPEG::stop()" stops video playback o "SDL::SMPEG::rewind()" resets the clip to the beginning o "SDL::SMPEG::seek(offset)" seeks to a particular byte offset o "SDL::SMPEG::skip(time)" skips to a particular time o "SDL::SMPEG::region(rect)" takes a SDL::Rect and defines the display area o "SDL::SMPEG::frame(int)" renders a specific frame to the screen o "SDL::SMPEG::info()" returns a new "SDL::MPEG" object reflecting the current status o "SDL::SMPEG::status()" returns either SMPEG_PLAYING or SMPEG_STOPPED or SMPEG_ERROR AUTHOR
David J. Goehrig SEE ALSO
perl(1) SDL::Surface(3) SDL::MPEG(3) perl v5.14.2 2012-05-28 pods::SDL::SMPEG(3pm)
Man Page