Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (59)

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

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (10470)

  • Core : Update elementValue method to deal with type="number" fields

    29 avril 2014, par jamierytlewski
    Core : Update elementValue method to deal with type="number" fields
    

    The HTML5 draft defines, for type="number" inputs : "The value
    sanitization algorithm is as follows : If the value of the element is not
    a valid floating-point number, then set it to the empty string instead."
    If the constraint validation considers the input invalid, return false
    as the value, instead of the empty string, for the number and digit
    methods to output their messages.

    This would break in browsers that support type="number", but not the
    constraint validation API. I don’t know of any existing browser where
    that applies.

    Fixes #858
    Fixes #922
    Closes #1093

  • ffmpeg can't change number of B-frames

    10 juin 2021, par user1315621

    When streaming from a source I keep receiving frames following the same pattern :
I-frame P-frame I-frame P-frame I-frame P-frame ....
I tried many options and read as many questions here as I found, but I can't find a way to increse the number of P-frame or at least enable B-frames.

    


    Mainly it seems that I should use :

    


     ffprobe rtsp://localhost/video -g 30 -bf 3 -show_frames -of csv


    


    What am I doing wrong ?

    


  • ffmpeg to get a particular frame number as image with motion vectors drawn into it

    26 février 2018, par helmo

    I am looking for ways to get this output from ffmpeg :

    enter image description here

    Basically, I would like to pass to the shell, a command that allows me to output a particular frame number (say frame number 200) with the motion vectors drawn into it.

    Any clue ? Thanks in advance.