Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (55)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (6621)

  • How to install FFMpeg in WampServer 2.0 (Windows XP) [closed]

    16 décembre 2012, par Richard Knop

    I need to install the ffmpeg PHP extension on my localhost so I can test few of my scripts but I am having troubles figuring out how to do that.

    I have WampServer 2.0 with PHP 5.2.9-2, my OS is Windows XP. Please somebody give me step by step instructions.

    I have found some Windows builds here : http://sourceforge.net/projects/ffmpeg-php/files/

    But I don't know which one to download and what to do with files.

    EDITED :

    What I have done so far :

    1. Download ffmpeg_new
    2. Copy php_ffmpeg.dll from the php5 folder to the C :\wamp\bin\php\php5.2.9-2\ext
    3. Copy files from common to the windows/system32 folder
    4. Add extension=php_ffmpeg.dll to php.ini file
    5. Restarted all services (Apache, PHP...)

    I am gettings an error after using this code :

               $extension = 'ffmpeg';
               $extension_soname = 'php_ffmpeg.dll';
               $extension_fullname = PHP_EXTENSION_DIR . "/" . $extension_soname;

               // load extension
               if(false === extension_loaded($extension)) {
                   if (false === dl($extension_soname))
                       throw new Exception("Can't load extension $extension_fullname\n");
               }

    The error :

    Warning: dl() [function.dl]: Not supported in multithreaded Web servers - use extension=ffmpeg.dll in your php.ini in C:\wamp\www\hunnyhive\application\modules\default\controllers\MyAccountController.php on line 314

    Plus I also get the exception from above.

  • ffmpeg add frame to video

    26 février 2012, par Emil Avramov

    guys !

    I want to ask you if somebody knows how can I attach a frame to the end of a video with ffmpeg. I have a video output.avi and I want to add frames on every 200ms using ffmpeg. I have the script to download the images, but how to add them to the video one by one.

    Thanks in advance.

  • ffmpeg doesn't install h264 OS X Lion

    21 mars 2012, par Drew C

    Installing ffmpeg on OS X 10.7. I need to use libavformat/h264 and libavcodec/h264, and I can see the source for those libraries in my download of ffmpeg, but after I configure and install, those two libraries can't be found. How do I configure the installation to be able to use those libraries ?

    Edit :
    I suppose, in a broader sense, my question is : how do I access the methods and data types defined in ffmpeg's h264 class ?