Quote Originally Posted by dougl
Hi. I'm the technical support technician at HagenHosting.com. I'm trying to help feher with his software.

As he mentioned, FFMPEG-PHP has been installed as a shared module. That means that the following code must appear in the application to load the module.

Code:
$extension = "ffmpeg";
$extension_soname = $extension . "." . PHP_SHLIB_SUFFIX;
$extension_fullname = PHP_EXTENSION_DIR . "/" . $extension_soname;

// load extension
if(!extension_loaded($extension)) {
	dl($extension_soname) or die("Can't load extension $extension_fullname\n");
}
If your software doesn't already support shared modules, which I would think would be a popular feature, is this something you can add?

I've just added the above code to the following page so that you can see that it does work:

http://www.medialeek.com/phpinfo.php

-dougl



where should i put this code!!!