Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (107)

  • 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 (13592)

  • avformat/matroskaenc : Replace impossible condition with assert

    28 avril 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Replace impossible condition with assert
    

    If a FLAC track uses an unconventional channel layout, the Matroska
    muxer adds a WAVEFORMATEXTENSIBLE_CHANNEL_MASK VorbisComment to the
    CodecPrivate to preserve this information. And given that FLAC uses
    24bit length fields, the muxer checks if the length is more than this
    and errors out if it is.

    Yet this can never happen, because we create the AVDictionary that is
    the source for the VorbisComment. It only contains exactly one entry
    that can't grow infinitely large (in fact, the length of the
    VorbisComment is <= 4 + 33 + 1 + 18 + strlen(LIBAVFORMAT_IDENT)).
    So we can simply assert the size to be < (1 << 24) - 4.

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

    • [DH] libavformat/matroskaenc.c
  • avformat/libsrt : fix race condition with libsrt_network_wait_fd and epoll

    31 janvier 2021, par Marton Balint
    avformat/libsrt : fix race condition with libsrt_network_wait_fd and epoll
    

    The way SRT's async / epoll-based IO works is that the event status is stored
    in the epoll containers. That is, if an event occurs on an SRT socket, and that
    SRT socket isn't part of any epoll container, then that event is lost. If we
    later add that socket to an epoll container, we still won't receive the event
    even if it wasn't serviced.

    Therefore we create the epoll and put the fd into it right after the connection
    is established.

    See http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2021-January/275334.html

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

    • [DH] libavformat/libsrt.c
  • avformat/utils : change AVStream side data related public function and struct size...

    6 mars 2021, par James Almer
    avformat/utils : change AVStream side data related public function and struct size types to size_t
    

    av_stream_add_side_data() already defines size as a size_t, so this makes it
    consistent across all side data functions.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavformat/avformat.h
    • [DH] libavformat/utils.c
    • [DH] libavformat/version.h