Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (61)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9703)

  • lavf : forward protocol_whitelist for the remaining cases

    3 février 2016, par Andreas Cadhalpun
    lavf : forward protocol_whitelist for the remaining cases
    

    Also set a default_whitelist for mmsh and ffrtmphttp.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mmsh.c
    • [DH] libavformat/rtmphttp.c
    • [DH] libavformat/rtsp.c
  • avcodec/flac : forward errors from ff_flac_parse_streaminfo()

    3 décembre 2016, par Michael Niedermayer
    avcodec/flac : forward errors from ff_flac_parse_streaminfo()
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/flac.c
    • [DH] libavcodec/flac.h
    • [DH] libavcodec/flacdec.c
  • avformat/aviobuf : fix flushing write buffers after seeking backward or forward

    3 juin 2017, par Marton Balint
    avformat/aviobuf : fix flushing write buffers after seeking backward or forward
    

    This patch makes aviobuf work more like traditinal file IO, which is how people
    think about it.

    For example, in the past, aviobuf only flushed buffers until the current buffer
    position, even if more data was written to it previously, and a backward seek
    was used to reposition the IO context.

    From now, aviobuf will keep track of the written data, so no explicit seek will
    be required till the end of the buffer, or till the end of file before flushing.

    This fixes at least one regression, fate-vsynth3-flv was broken if
    flush_packets option was set to false, an explicit seek was removed in
    4e3cc4bdd8acedbcc703607ed0efbb64bb5c3cc4.

    Also from now on, if a forward seek in the write buffer were to cause a gap
    between the already written data and the new file position, a flush will
    happen.

    The must_flush varable is also removed, which might have caused needless
    flushes with multiple seeks whithin the write buffer. Since we know the amount
    of data written to it, we will know when to flush.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/avio.h
    • [DH] libavformat/aviobuf.c
    • [DH] libavformat/version.h