Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (87)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (18814)

  • rtsp : remove terminal comma in FF_RTP_FLAG_OPTS macro.

    21 juillet 2012, par Ronald S. Bultje

    rtsp : remove terminal comma in FF_RTP_FLAG_OPTS macro.

  • FFMPEG command fails in php but runs in terminal [closed]

    13 juillet 2021, par victor ukafor

    I'm writting some logic that requires video manipulation, each time i try to run ffmpeg command with Process (or some other php in-built function for running shell command), the command fails with WARNING : library configuration mismatch but it runs without any warning on my terminal. Some tutorials suggest I unistall libavcodec-ffmpeg-extra56 or libavcodec-ffmpeg-extra57 on machine. I have done that still no changes.

    


    enter image description here

    


  • Command works in SSH terminal, but not in PHP script

    13 janvier 2017, par Ryan Butterworth

    I’m having a weird problem. I have installed ffmpeg on my server. When I run "ffmpeg" from SSH (PuTTY) it confirms the install :

    ffmpeg via ssh

    Then I placed the following code in a PHP file, inside a website on the same server :

    <?php
    ini_set('display_errors', 1);
    ini_set('display_startup_errors', 1);
    error_reporting(E_ALL);

    $output = exec('ffmpeg -h');
    echo "<pre>$output</pre>";
    ?>

    However when I run the PHP script, the page is blank, there is no output. I can confirm that exec is working fine, because when I run php -v | grep cli both in PHP and in terminal, they both output the same thing.

    I am using Plesk (web host edition) to manage the site, and have given it access to the server over SSH (/bin/sh)

    What am I missing here ?