Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (58)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9197)

  • avcodec/jpegxl : add Jpeg XL image codec

    17 avril 2022, par Leo Izen
    avcodec/jpegxl : add Jpeg XL image codec
    

    This commit adds support to libavcodec to read
    encoded Jpeg XL images. Jpeg XL is intended to be an
    extended-life replacement to legacy mjpeg.

    • [DH] MAINTAINERS
    • [DH] libavcodec/codec_desc.c
    • [DH] libavcodec/codec_id.h
  • avformat/hls, dashdec : Don't use AV_OPT flags in av_dict_set()

    15 mai 2022, par Andreas Rheinhardt
    avformat/hls, dashdec : Don't use AV_OPT flags in av_dict_set()
    

    av_dict_set() expects a different set of flags, namely the AV_DICT_*
    flags. Using AV_OPT_FLAG_DECODING_PARAM (or any AV_OPT_FLAG_*) ic
    av_dict_set() is therefore completely wrong and given that av_dict_set()
    just doesn't care about whether the string it receives has anything
    to do with a decoding parameter or not, it should just be removed
    without replacement.
    (The numerical value of AV_OPT_FLAG_DECODING_PARAM currently coincides
    with AV_DICT_IGNORE_SUFFIX. Given that the dictionaries we are dealing
    with here are always empty (i.e. NULL) before the calls to
    av_dict_set(), this flag changes nothing. It would be different if
    it were equal to one of the AV_DICT_DONT_STRDUP_* values.)

    Reviewed-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/dashdec.c
    • [DH] libavformat/hls.c
  • arm/fft : disable NEON optimizations for 131072pt transforms

    29 août 2022, par Lynne
    arm/fft : disable NEON optimizations for 131072pt transforms
    

    This has been broken since the start, and it was only discovered
    when I started testing my replacement for the FFT.
    Disable it, since there's no point in fixing slower code that's about
    to be removed anyway.

    The vfp version is not affected.

    • [DH] libavcodec/aarch64/fft_init_aarch64.c
    • [DH] libavcodec/arm/fft_init_arm.c