Recherche avancée

Médias (91)

Autres articles (69)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • 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 (9205)

  • videotoolbox : fix crash when decoding interlaced video with new API

    11 juillet 2017, par wm4
    videotoolbox : fix crash when decoding interlaced video with new API
    
    • [DH] libavcodec/videotoolbox.c
  • Fix encoder crash with non-positive sample rates.

    5 janvier 2015, par Ralph Giles
    Fix encoder crash with non-positive sample rates.
    

    Input files with sampling rate 0 are useless and can make
    libvorbis access invalid memory because the logic in
    _vp_psy_init (and probably other functions) isn’t prepared for
    it. A sanity check lets the library refuse those inputs
    gracefully in the initialization functions before they can
    do harm.

    Patch by Martin Steghöfer <martin@steghoefer.eu>

    Fixes #2078
    Bug-Debian : https://bugs.debian.org/716613

    git-svn-id : http://svn.xiph.org/trunk/vorbis@19422 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/vorbisenc.c
  • Python Popen - env - ffmpeg crash

    20 janvier 2015, par speedyrazor

    I am trying to run an ffmpeg command on Windows 7 (python 2.7) which runs on command line just fine, but the env of my Popen is not working.
    Here is the working command line :

    SET FFREPORT=level=48:file=C\:\\temp\\TESTFFMPEGOUTPUT.txt &amp;&amp; C:\Temp\ffmpeg\ffmpeg.exe -i “I:\somefolder\testInput.mov" "I:\somefolder\testOutput.mov"

    And here is my current python code :

    ffreport = "level=48:file={}".format(self.logFilePath) + " &amp;&amp; "
    startupinfo = subprocess.STARTUPINFO()
    startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
    self.process1 = Popen(command, startupinfo=startupinfo, shell=False, env={'SET FFREPORT':ffreport})

    This results in windows reporting "ffmpeg has stopped working".
    Not sure how to fix.