Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (81)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4231)

  • How to add watermark in a video in Android Application ? [on hold]

    20 décembre 2014, par user3581447

    I am developing an Android app in which I have to include a function to watermark in an existing video file. I searched more but didn’t get any perfect solution. Can anyone help me ?

  • avcodec/bink : set color range

    22 juillet 2018, par Paul B Mahol
    avcodec/bink : set color range
    
    • [DH] libavcodec/bink.c
  • Continue php after page closed exec() ffmpeg

    20 février 2019, par Tygo

    I am wondering how I can continue a php page after exec() (ffmpeg) and the page has been closed.

    I have a form that allows people to convert their video files with ffmpeg but if the user clicks away the page the exec() keeps going but anything after this exec is not being executed.

    <?php
      if (!empty($_POST) && $imgDir) {
         exec('"/dir/to/ffmpeg" -f image2 -i "' . $imgDir . '" -r 12 -s 610x489 /dir/to/out.avi', $out);

         /* INSERT statement (Not being executed) */
         $sql = "INSERT INTO requests (userID,image) VALUES (?,?)";
         $stmt= $pdo->prepare($sql);
         $stmt->execute([$user_id, $imgDir]);
      }
    ?>

    I want a user to be able to click an away the page, so they don’t have to wait and can download their file later.