Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (11190)

  • avfilter/vf_deshake : use a void * comparator for consistency

    24 octobre 2015, par Ganesh Ajjanagadde
    avfilter/vf_deshake : use a void * comparator for consistency
    

    For generality, qsort uses a comparator whose elements are void *. This
    makes the comparator have such a form, and thus makes the void * cast of
    the comparator pointer useless. Furthermore, this makes the code more
    consistent with other usages of qsort across the codebase.

    Reviewed-by : Henrik Gramner <henrik@gramner.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/vf_deshake.c
  • avcodec/ffwavesynth : Simplify lcg_seek(), avoid negative case

    21 juin 2019, par Michael Niedermayer
    avcodec/ffwavesynth : Simplify lcg_seek(), avoid negative case
    

    Fixes : negation of -9223372036854775808 cannot be represented in type 'int64_t' (aka 'long') ; cast to an unsigned type to negate this value to itself
    Fixes : 15289/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5709034499342336

    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/ffwavesynth.c
  • libavformat/matroskadec : fix unsigned overflow to improve seeking

    21 juillet 2016, par Chris Cunningham
    libavformat/matroskadec : fix unsigned overflow to improve seeking
    

    When seeking a file where codec delay is greater than 0, the timecode
    can become negative after offsetting by the codec delay. Failing to cast
    to a signed int64 will cause the check against skip_to_timecode to evaluate
    true for these negative values. This breaks the "skip_to" seek mechanism.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskadec.c