Index: capture.h
===================================================================
--- capture.h	(revision 60)
+++ capture.h	(revision 61)
@@ -11,6 +11,18 @@
 the current directory.
 This function may fail (garbage in resulting capture) if frame size if 
 not "standard", mostly after a window resize.
+A new function is available for JPEG captures.
+
+Raydium also allow you to capture movies: activate ##DEBUG_MOVIE## option
+in ##raydium/config.h## with the needed framerate, and press F11. Raydium
+will use a dedicated time line, allowing smooth capture. This system may cause
+strange behaviours with movies providing network action.
+The movie is stored in multiples files in ##movie## directory, and you can
+use mencoder like this:
+##mencoder -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate=780 
+mf://\*.tga -vf scale=320:240 -mf fps=25 -o ~/ray.avi##
+You can also use audio file adding this: 
+## -audiofile audio.mp3 -oac copy## for example.
 **/
 
 extern void raydium_capture_frame(char *filename);
@@ -23,4 +35,10 @@
 Same as above, but to an auto-generated filename (raycap*).
 **/
 
+extern void raydium_capture_frame_jpeg(char *filename);
+/**
+Same as ##raydium_capture_frame()## but using JPEG image format.
+See ##raydium/config.h## for quality setting.
+**/
+
 #endif