Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (41)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5335)

  • Running PHP from command line

    9 juin 2014, par Kit Carrau

    I am trying to manage a queue of files waiting to be processed by ffmpeg. A page is run using CRON that runs through a database of files waiting to be processed. The page then builds the commands and sends them to the command line using exec().

    However, when the PHP page is run from the command line or CRON, it runs the exec() OK, but does not return to the PHP page to continue updating the database and other functions.

    Example :

    <?php
    $cmd = "ffmpeg inpupt.mpg output.m4v";

    exec($cmd . ' 2>&1', $output, $return);

    //Page continues...but not executed
    $update = mysql_query("UPDATE.....");
    ?>

    When this page is run from the command line, the command is run using exec() but then the rest of the page is not executed. I think the problem may be that I am running a command using exec() in a page run from the command line.

    Is it possible to run a PHP page in full from the command line which includes exec() ?

    Or is there a better way of doing this ?

    Thank you.

  • Added command-line ImageMagick implementation.

    17 octobre 2013, par blueimp
    Added command-line ImageMagick implementation.
    

    The command-line ImageMagick implementation can be enabled by setting
    the image_library option to 2.
    It might also be necessary to define the convert_bin and identify_bin
    options if the convert and identify binaries are not found in the
    system path.

  • ffmpeg command line to c++ conversion

    13 février 2015, par Yonghao Zhao

    I currently involved in a project of real time video transmission. Recently I touched ffmpeg but still very nooby. I notice the ffmpeg command line is very powerful and the functions are just what I want. Here is a file of ffmpeg command line of performing real time video transmission.
    http://www.wu.ece.ufl.edu/projects/wirelessVideo/project/realTimeCoding/download/doc/howto.pdf
    Can anyone advise how can I get the corresponding c++ code for these command line ? I want to do a c++ program to realize these functions.