Recherche avancée

Médias (91)

Autres articles (44)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5953)

  • Using Cygwin for FFMPEG build error cmp : command not found

    9 octobre 2015, par Papajohn000

    I’ve been trying to use Cygwin to build ffmpeg but I’m running into the error ./configure: line 1132: cmp: command not found. I tried looking around online for solutions but found none. I also checked if I just didn’t download the right package when I downloaded Cygwin but I found nothing relating to cmd. I’m not sure if there is a workaround or not. The code from line 1132 is :

    cp_if_changed(){
       cmp -s "$1" "$2" && echo "$2 is unchanged" && return
       mkdir -p "$(dirname $2)"
       $cp_f "$1" "$2"
    }

    Thanks

  • /usr/include/time.h:243:29 : error : expected identifier or ‘(’ before ‘__const’ [duplicate]

    27 novembre 2019, par user12408787

    This question already has an answer here :

    When I used gcc to compile program,I meet this error messages,and i have searched answers online,but can not find any results,so I want to ask how to fix this?

  • FFmpeg on Windows - Background converting

    30 juin 2016, par Dave

    I’m having real trouble in getting FFMPEG to convert in the background *Note that when I upload videos and through php the convert works but just sits there and I’m unable to navigate around my website until its finished.

    I don’t run Linux and don’t really have intentions of doing so. And I have windows 7 so unable to use the dev/null/ &. I did try that after reading the very few tutorials online, most of which are outdated due to the depreciated FFmpeg-php and it did absolutely nothing.

    The bit of code that I currently have to convert is as follows !

       $ffmpeg="C:/FFMPEG/bin/ffmpeg.exe";
       shell_exec("$ffmpeg -i ".$folder.$final_file." ".$destination_mp4." ");

    so my question would be. What are the right commands to allow a windows user to convert in php within the background successfully, whilst the video converts ?