Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (69)

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

  • avformat/tls_schannel : immediately return decrypted data if available

    12 mai 2020, par Jan Ekström
    avformat/tls_schannel : immediately return decrypted data if available
    

    Until now, we would have only attempted to utilize already decrypted
    data if it was enough to fill the size of buffer requested, that could
    very well be up to 32 kilobytes.

    With keep-alive connections this would just lead to recv blocking
    until rw_timeout had been reached, as the connection would not be
    officially closed after each transfer. This would also lead to a
    loop, as such timed out I/O request would just be attempted again.

    By just returning the available decrypted data, keep-alive based
    connectivity such as HLS playback is fixed with schannel.

    • [DH] libavformat/tls_schannel.c
  • avformat/dashenc : URL close unconditionally after DELETE segments

    18 octobre 2018, par kjeyapal@akamai.com
    avformat/dashenc : URL close unconditionally after DELETE segments
    

    Fixes bug with HTTP DELETE when HTTP Persistent is ON.
    Right now, HTTP Persistent connections is supported only for POSTs and PUTs.
    HTTP DELETE will still open a new connection every time.

    • [DH] libavformat/dashenc.c
  • avformat/tls_schannel : always decrypt all received data

    12 mai 2020, par Jan Ekström
    avformat/tls_schannel : always decrypt all received data
    

    The dec_buf seems to be properly managed between read calls,
    and we have no logic to decrypt before attempting socket I/O.
    Thus - until now - such data would not be decrypted in case of
    connections such as HTTP keep-alive, as the recv call would
    always get executed first, block until rw_timeout, and then get
    retried by retry_transfer_wrapper.

    Thus - if data is received - decrypt all of it right away. This way
    it is available for the following requests in case they can be
    satisfied with it.

    • [DH] libavformat/tls_schannel.c