Index: video.c
===================================================================
--- video.c	(revision 616)
+++ video.c	(revision 617)
@@ -302,3 +302,20 @@
 {
 return raydium_video_isplaying(raydium_video_find(name));
 }
+
+
+void raydium_video_fps_change(int id, float fps)
+{
+if(!raydium_video_isvalid(id))
+    {
+    raydium_log("video: ERROR: cannot change FPS: invalid index or name");
+    return;
+    }
+raydium_video_video[id].fps=fps;
+}
+
+void raydium_video_fps_change_name(char *name, float fps)
+{
+raydium_video_fps_change(raydium_video_find(name),fps);
+}
+