Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (25)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5271)

  • avformat/segment : Fix leak of duration/framenumber lists upon error

    5 septembre 2020, par Andreas Rheinhardt
    avformat/segment : Fix leak of duration/framenumber lists upon error
    

    The code to free them is not in the segment muxer's deinit function,
    but in its write_trailer function which means that these lists leak if
    write_trailer isn't called after their allocation. This happens e.g. if
    the given lists are invalid (e.g. consisting only of ',' (which delimit
    entries)), so that parsing them fails and so does the muxer's init
    function ; write_trailer is then never called.

    This has been fixed by moving the code to free them to the deinit
    function.

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/segment.c
  • av_dict_set : fix potential memory leak with AV_DICT_DONT_OVERWRITE

    8 juin 2014, par Janne Grunau
    av_dict_set : fix potential memory leak with AV_DICT_DONT_OVERWRITE
    

    av_dict_set leaks it key/value arguments if AV_DICT_DONT_OVERWRITE is
    combined with AV_DICT_DONT_STRDUP_KEY,VAL and the key exists.

    • [DH] libavutil/dict.c
  • avformat/mpegts : fix memory leak with merge_pmt_versions=1

    21 mai 2018, par Aman Gupta
    avformat/mpegts : fix memory leak with merge_pmt_versions=1
    

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavformat/mpegts.c