Recherche avancée

Médias (91)

Autres articles (79)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • interplayacm : validate number of channels

    30 octobre 2016, par Andreas Cadhalpun
    interplayacm : validate number of channels
    

    The number of channels is used as divisor in decode_frame, so it must
    not be zero to avoid SIGFPE crashes.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/interplayacm.c
  • Additional : Add Brazillian CNH number (Carteira Nacional de Habilitac…

    5 novembre 2018, par joaoissamu
    Additional : Add Brazillian CNH number (Carteira Nacional de Habilitacao) (#2234)
  • How to specify the exact number of output image frames with ffmpeg ?

    14 novembre 2020, par Miloslav Číž

    I have N input animation frames as images in a folder and I want to create interpolated inbetween frames to create a smoother animation of length N * M, i.e. for every input frame I want to create M output frames that gradually morph to the next frame, e.g. with the minterpolate filter.

    &#xA;

    In other words, I want to increase the FPS M times, but I am not working with time as I am not working with any video formats, both input and output are image sequences stored as image files.

    &#xA;

    I was trying to combine the -r and FPS options, but without success as I don't know how they work together. For example :

    &#xA;

      &#xA;
    • I have 12 input frames.
    • &#xA;

    • I want to use the minterpolate filter to achieve 120 frames.
    • &#xA;

    • I use the command ffmpeg -i frames/f%04d.png -vf "fps=10, minterpolate" -r 100 interpolated_frames/f%04d.png
    • &#xA;

    • The result I get is 31 output frames.
    • &#xA;

    &#xA;

    Is there a specific combination of -r and FPS I should use ? Or is there another way I can achieve what I need ?

    &#xA;

    Thank you !

    &#xA;