Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (67)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (10832)

  • avutil/opt : Avoid av_strdup(NULL)

    25 mars 2024, par Andreas Rheinhardt
    avutil/opt : Avoid av_strdup(NULL)
    

    It is not documented to be safe and in any case it is nonsense :
    Currently av_strdup(NULL) returns NULL and in order to distinguish
    this from a genuine allocation failure, opt_copy_elem()
    checked afterwards whether src was actually NULL. But then one
    can simply check in advance whether one should call av_strdup()
    at all.
    set_string() was even worse and returned ENOMEM in case the value
    to be duplicated is NULL ; this only worked because
    av_opt_set_defaults2() does not check the return value at all
    (given that it can't propagate it).

    These two places account for 389114 of 390356 av_strdup(NULL)
    calls during one FATE run.

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

    • [DH] libavutil/opt.c
  • avcodec/wmavoice : sanity check block_align

    21 décembre 2019, par Michael Niedermayer
    avcodec/wmavoice : sanity check block_align
    

    This limit is roughly based on the bitreader limit, its likely a much tighter limit
    could be used

    Fixes : left shift of 1965039647 by 1 places cannot be represented in type 'int'
    Fixes : 19545/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAVOICE_fuzzer-5695391899320320

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/wmavoice.c
  • Where to find old ffmpeg/ffprobe documentation ?

    5 mars 2019, par Multihunter

    There are several different versions of ffmpeg and ffprobe flying around, and each version has a different API.

    If I apt-get install ffmpeg on Ubuntu 16.04, I get ffmpeg version 2.8.15-0ubuntu0.16.04.1. If I install apt-get install ffmpeg on Ubuntu 18.04, I get version 3.4.4-0ubuntu0.18.04.1.

    When I visit the ffmpeg documentation, it says "The following documentation is regenerated nightly, and corresponds to the newest FFmpeg revision. Consult your locally installed documentation for older versions." That is, the hosted documentation is neither of those two versions.

    So I have two questions :

    • What does it mean "your locally installed documentation" ? Is it only talking about man ffmpeg ? Or is there some way to host the documentation as a webpage ?
    • Are there any places that simply host the older versions of the ffmpeg documentation ?