Recherche avancée

Médias (1)

Mot : - Tags -/artwork

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 (12485)

  • vulkan_decode : ensure there's at least one context per decode thread

    27 novembre 2024, par Lynne
    vulkan_decode : ensure there's at least one context per decode thread
    

    Otherwise, what may happen is that 2 threads will both write
    into the same context.

    • [DH] libavcodec/vulkan_decode.c
  • Java Android Library relocates/realignes all centered texts

    9 août 2019, par Manuel Maurer

    Recently I noticed a very weird situation : Whenever I try to run a FFMpeg-Command with either https://github.com/tanersener/mobile-ffmpeg or https://github.com/bravobit/FFmpeg-Android, it changes the texts on all my other activities.

    I’m starting a thread, which saves an overlay to a video. Yes, I need to use FFMPEG, because I need it in some other places too. The strange thing is, that whenever I start the FFMPEG-Command, all the Texts in my app, that were centered before (textAlign->Center) are now aligned left.

    How can that even happen ?

  • avcodec/avcodec : Sanitize options before using them

    16 mars 2021, par Andreas Rheinhardt
    avcodec/avcodec : Sanitize options before using them
    

    This is how it is supposed to happen, yet when using frame threading,
    the codec's init function has been called before preinit. This can lead
    to crashes when e.g. using unsupported lowres values for decoders
    together with frame threading.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/avcodec.c