Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (53)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5071)

  • in ffmpeg how to refer to double digit numbers in file names ? [closed]

    12 mai 2023, par santoku

    I have a list of images named img_05.png, img_10.png and so on, when i tried to use this command ffmpeg -i image_%09d.png test-merged.mp4 it shows 'no such file or directory', but if the files are named img_0.png, img_1.png and so on, running ffmpeg -i image_%d.png test-merged.mp4 would work. I tried either 09d% or 02d%, neither works. what should i put to indicate a double-digit non-continuous integer ? thanks

    


  • avformat/mpegtsenc : refact, remove h264, hevc magic numbers for nal_type

    30 janvier 2024, par Nuo Mi
    avformat/mpegtsenc : refact, remove h264, hevc magic numbers for nal_type
    
    • [DH] libavformat/mpegtsenc.c
  • can ffmpeg use actual frame number in stream instead of sequentially added image numbers

    26 mars 2024, par Wang
    ffmpeg  -i test.mp4  -vf select="eq(pict_type\,I)"  %d.png


    


    above code create file name incremental by 1, like :

    


    1.png
2.png
3.png
...


    


    but I want the actual frame number in the source stream :

    


    1.png
26.png
51.png
...


    


    there is very old thread asking the same thing. But I wonder is there a solution right now ?