Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (109)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7604)

  • Makefile : check config_components.h when comparing timestamps in component list files

    17 mars 2022, par James Almer
    Makefile : check config_components.h when comparing timestamps in component list files
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] Makefile
  • avformat/utils : functions that add entries should not destroy the whole list on failure

    11 septembre 2013, par Michael Niedermayer
    avformat/utils : functions that add entries should not destroy the whole list on failure
    

    The caller does not expect this, and in case of adding new streams would then
    not even be able to deallocate them anymore.

    This reverts a hunk from "avformat : Use av_reallocp_array() where suitable"

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/utils.c
  • fftools/cmdutils : Atomically add elements to list of pointers, fix crash

    3 décembre 2021, par Andreas Rheinhardt
    fftools/cmdutils : Atomically add elements to list of pointers, fix crash
    

    Currently, adding a (separately allocated) element to a list of pointers
    works by first reallocating the array of pointers and (on success)
    incrementing its size and only then allocating the new element.
    If the latter allocation fails, the size is inconsistent, i.e.
    array[nb_array_elems - 1] is NULL. Our cleanup code crashes in such
    scenarios.

    Fix this by adding an auxiliary function that atomically allocates
    and adds a new element to a list of pointers.

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

    • [DH] fftools/cmdutils.c
    • [DH] fftools/cmdutils.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_opt.c