Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (11483)

  • Revision 363dc6ceda : Don't crash if motion vector ref points to out-of-bounds area. This can only ha

    7 juin 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/common/vp9_mvref_common.c



    Don't crash if motion vector ref points to out-of-bounds area.

    This can only happen if partition is partly out-of-frame, in which
    case the referenced mv is either out-of-frame also (and thus has the
    same value as an already-read one), or it is actually uninitialized,
    in which case we don't want to use it.

    Change-Id : Icf39fa4d987c7abcbebb9bbdcdd6311e8fb9d3c9

  • FFMPEG on Heroku worker dynos takes too long - runs into timeout error

    26 janvier 2021, par John

    I am encoding a large video file that on my 5-year-old laptop runs at 7X and finishes in about 5 minutes. But with 2X worker dynos on heroku it cant even finish before the 4 hour background job time limit. I didn't have any issues until 2 days ago and now its causing lots of probelms. If I run heroku run rails console and run the job manually, I see it start at 7X but then quickly go down to 2X and then 0.5X speed. Anyone know what is causing this issue ?

    


    I'm encoding a VP8 webm file to MP4. If anyone knows a faster way to do this that might also fix this issue that would be great too !

    


    ffmpeg -y -i #{temp_webm_file.path} -movflags faststart -preset ultrafast #{temp_mp4_file.path}

    


  • ffmpeg, -shortest does not work when overlaying PNG sequence on a still

    27 août 2014, par Aviator Addis

    How do you make this work ?

    ffmpeg -loop 1 -i emma.jpg -r 29.97 -i source\source_%%05d.png -filter_complex overlay -r 29.97 -pix_fmt yuv420p -y -shortest sample_source.mp4

    It seems the -shortest option does not work and it just keeps encoding with no stop on the last frame. I’m using the latest static 8-27-2014 64 bit build on windows 8.1 If I assigned -t value it will stop at the specified length, but I need it’s output length set to whatever the sequence might happen to be (at it will vary).