Recherche avancée

Médias (91)

Autres articles (45)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (5836)

  • libavutil : add mastering display metadata sidedata

    17 janvier 2016, par Neil Birkbeck
    libavutil : add mastering display metadata sidedata
    

    Adding mastering display metadata struct to avutil. The mastering display metadata contains information
    about the mastering display color volume (SMPTE 2086:2014).

    This info comes from HEVC in the SEI_TYPE_MASTERING_DISPLAY_INFO and is soon to be included in MKV :
    https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&index=sZyfPTM-QY69P-0omfOIiTN622o
    so it is similar to SEI FPA / stereo_mode in MKV and as such this patch follows how AVStereo3D is implemented.

    I’ll add support to HEVC in a follow-up (and MKV when spec is approved).

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/Makefile
    • [DH] libavutil/frame.h
    • [DH] libavutil/mastering_display_metadata.c
    • [DH] libavutil/mastering_display_metadata.h
    • [DH] libavutil/version.h
  • How to send traffic to all pods of service instead of round robin method in kubernetes

    10 janvier 2018, par MDK

    I want to build a cluster that contains a single pod that running ffmpeg to convert input video to different qualities and send the result to a nginx cluster to serve it.
    for nginx cluster I have a kubernetes service.
    if ffmpeg pod wants to push video (which is in rtmp format) to nginx cluster each nginx pod receive some part of video and when a user connects to nginx from outside just get some packets.
    because when ffmpeg pod send video to nginx service kubernetes send packet to nginx pods in round-robin all nginx pods can not get full live video traffic.
    so I need to send traffic from ffmpeg to all pods of nginx services.
    but I don’t know how should I change routing methods to achieve this.

  • Anomalie #4033 : Critère `{age #TRUC}` erroné en SQLite

    28 octobre 2017

    SQLite3 :
    sqlite> select 2 < ’3’ ;
    1
    sqlite> select 4 < ’3’ ;
    1
    

    Mysql :
    mysql> select 2 < ’3’ ;
    1
    mysql> select 4 < ’3’ ;
    0