Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (71)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (3786)

  • avcodec/libopusenc : Don't free user-provided AVPacket

    23 mai 2020, par Andreas Rheinhardt
    avcodec/libopusenc : Don't free user-provided AVPacket
    

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/libopusenc.c
  • westwood_vqa : do not free extradata on error in read_header

    27 juin 2013, par Luca Barbato
    westwood_vqa : do not free extradata on error in read_header
    

    The extradata is already freed by avformat_open_input on
    failure.

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org

    • [DBH] libavformat/westwood_vqa.c
  • avcodec/cbs : Fix potential double-free when adding unit fails

    18 novembre 2019, par Andreas Rheinhardt
    avcodec/cbs : Fix potential double-free when adding unit fails
    

    ff_cbs_insert_unit_data() has two modes of operation : It can insert a
    unit with a newly created reference to an already existing AVBuffer ; or
    it can take a buffer and create an AVBuffer for it. Said buffer will
    then become owned by the unit lateron.

    A potential memleak/double-free exists in the second case, because if
    creating the AVBuffer fails, the function immediately returns, but when
    it fails lateron, the supplied buffer will be freed. The caller has no
    way to distinguish between these two outcomes. The only such caller
    (cbs_jpeg_split_fragment() in cbs_jpeg.c) opted for a potential
    double-free.

    This commit changes this by explicitly stating that a non-refcounted
    buffer will be freed on error. The aforementioned caller has been
    brought in line with this.

    Fixes CID 1452623.

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

    • [DH] libavcodec/cbs.c
    • [DH] libavcodec/cbs.h
    • [DH] libavcodec/cbs_jpeg.c