Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

  • 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" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

Sur d’autres sites (6225)

  • 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.

  • Java - xuggle/ffmpeg - mov atom not found

    5 décembre 2013, par Mark Design

    I am trying to read a mov file from local using Xuggle.
    This gives me the following error :

    30-mag-2011 15.56.55 com.xuggle.ferry.NativeLogger log
    GRAVE: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x102840600] moov atom not found

    The problem is that until two minutes before it didn't give any error and the code was the same.

    However, I discover this :

    If I open the IContainer using a byte array it doesn't work and gives me the error :

    ByteArrayInputStream b = new ByteArrayInputStream(file);
    DataInputStream data = new DataInputStream(b);
    IContainer container = IContainer.make();
    if (container.open(data, null) < 0)
       throw new IllegalArgumentException("E001 - Cannot open the container");

    if I open the IContainer using a temporary file it works.

    File temp = File.createTempFile("temp_", ".mov");

    try
    {
       FileOutputStream fos = new FileOutputStream(temp);
       fos.write(file);
       fos.close();
    }
    catch(FileNotFoundException e)
    {
       System.out.println(e);
    }

    IContainer container = IContainer.make();

    if (container.open(temp.toString(), IContainer.Type.READ, null) < 0)
       throw new IllegalArgumentException("E001 - Cannot open the container");

    any suggestions ?

  • Java - xuggle/ffmpeg - moov atom not found

    5 septembre 2011, par Mark Design

    I am trying to read a mov file from local using Xuggle.
    This gives me the following error :

    30-mag-2011 15.56.55 com.xuggle.ferry.NativeLogger log
    GRAVE: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x102840600] moov atom not found

    The problem is that until two minutes before it didn't give any error and the code was the same.

    However, I discover this :

    If I open the IContainer using a byte array it doesn't work and gives me the error :

    ByteArrayInputStream b = new ByteArrayInputStream(file);
    DataInputStream data = new DataInputStream(b);
    IContainer container = IContainer.make();
    if (container.open(data, null) < 0)
       throw new IllegalArgumentException("E001 - Cannot open the container");

    if I open the IContainer using a temporary file it works.

    File temp = File.createTempFile("temp_", ".mov");

    try
    {
       FileOutputStream fos = new FileOutputStream(temp);
       fos.write(file);
       fos.close();
    }
    catch(FileNotFoundException e)
    {
       System.out.println(e);
    }

    IContainer container = IContainer.make();

    if (container.open(temp.toString(), IContainer.Type.READ, null) < 0)
       throw new IllegalArgumentException("E001 - Cannot open the container");

    any suggestions ?

    Thanks !
    Mark