Currently what I have a Linux application that was written using Xlib and I needed to add video playing capabilities into it.

What libraries would you recommend that I could use for video decoding and rendering that works well with Xlib?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The options are plentiful.

Xine is probably the easiest (easier than FFmpeg, anyhow) without requiring anything beyond itself and Xlib. There's a short, complete example in under 180 lines of actual code.

muxine is a very small player that just creates a X11 window and play a given stream MRL. Source code: muxine.c.

You can compile muxine with:

gcc -Wall -O2 `xine-config --cflags`
    -o muxine muxine.c `xine-config --libs`

On the other hand, using MPlayer+XEmbed is pretty easy too, much easier if you don't care to have much control over the video playback. Create a X11 window, and run mplayer -wid <window-id>.

link|improve this answer
feedback

ffmpeg or mplayer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.