Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (103)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (11419)

  • avfilter/vf_signature : Fix leak of string upon error

    25 août 2020, par Andreas Rheinhardt
    avfilter/vf_signature : Fix leak of string upon error
    

    If an error happens between allocating a string intended to be used as
    an inpad's name and attaching it to its input pad, the string leaks.
    Fix this by inserting the inpad directly after allocating its string.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_signature.c
  • avformat/swfenc : Fix memleak upon write_header error

    20 septembre 2020, par Andreas Rheinhardt
    avformat/swfenc : Fix memleak upon write_header error
    

    The SWF muxer accepts at most one mp3 audio and at most one VP6F, FLV1
    or MJPEG stream. Upon encountering an mp3 stream, a fifo is allocated
    that leaks if one of the subsequent streams is incompliant with the
    restrictions mentioned above or if the framerate or samplerate are
    invalid. This is fixed by adding a deinit function to free said fifo.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/swfenc.c
  • avformat/hlsenc : Fix memleak when using single_file

    11 septembre 2019, par Andreas Rheinhardt
    avformat/hlsenc : Fix memleak when using single_file
    

    This commit fixes a memleak in the hls muxer when one uses a single file
    as output. It has been forgotten to free the temporary buffers used to write
    the packets so that the size of the leaks basically amounts to the size
    of the output file. This commit adds the necessary free.

    Reviewed-by : Steven Liu <lq@onvideo.cn>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/hlsenc.c