Recherche avancée

Médias (91)

Autres articles (112)

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

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11147)

  • avcodec/ttmlenc : split header writing into its own function

    15 mars 2021, par Jan Ekström
    avcodec/ttmlenc : split header writing into its own function
    

    Signed-off-by : Jan Ekström <jan.ekstrom@24i.com>

    • [DH] libavcodec/ttmlenc.c
  • ffmpeg split avi into frames with known frame rate

    5 septembre 2023, par Myx

    I posted this as comments under this related thread. However, they seem to have gone unnoticed =(

    &#xA;&#xA;

    I've used

    &#xA;&#xA;

    ffmpeg -i myfile.avi -f image2 image-%05d.bmp&#xA;

    &#xA;&#xA;

    to split myfile.avi into frames stored as .bmp files. It seemed to work except not quite. When recording my video, I recorded at a rate of 1000fps and the video turned out to be 2min29sec long. If my math is correct, that should amount to a total of 149,000 frames for the entire video. However, when I ran

    &#xA;&#xA;

    ffmpeg -i myfile.avi -f image2 image-%05d.bmp&#xA;

    &#xA;&#xA;

    I only obtained 4472 files. How can I get the original 149k frames ?

    &#xA;&#xA;

    I also tried to convert the frame rate of my original AVI to 1000fps by doing

    &#xA;&#xA;

    ffmpeg -i myfile.avi -r 1000 otherfile.avi&#xA;

    &#xA;&#xA;

    but this didn't seem to fix my concern.

    &#xA;

  • ffmpeg split avi into frames with known frame rate

    31 mai 2016, par Myx

    I posted this as comments under this related thread. However, they seem to have gone unnoticed =(

    I’ve used

    ffmpeg -i myfile.avi -f image2 image-%05d.bmp

    to split myfile.avi into frames stored as .bmp files. It seemed to work except not quite. When recording my video, I recorded at a rate of 1000fps and the video turned out to be 2min29sec long. If my math is correct, that should amount to a total of 149,000 frames for the entire video. However, when I ran

    ffmpeg -i myfile.avi -f image2 image-%05d.bmp

    I only obtained 4472 files. How can I get the original 149k frames ?

    I also tried to convert the frame rate of my original AVI to 1000fps by doing

    ffmpeg -i myfile.avi -r 1000 otherfile.avi

    but this didn’t seem to fix my concern.