Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (57)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (7547)

  • ffmpeg - how can I make a video out of video given a list of frames ?

    28 avril 2020, par Adam Gosztolai

    I have a list of frames frames = [23, 25, 26, 27, 28, 345, 346, 347] and a video file input.mp4 recorded at 100 fps.

    



    Could someone show me how to make a video output.mp4 taking only frames from frames ?

    


  • h264dec : use a large enough field for reference list modification values

    17 août 2017, par Anton Khirnov
    h264dec : use a large enough field for reference list modification values
    

    pic_num can be at most 17-bit, so uint8_t is not sufficient.

    Found-By : Bradley Sepos <bradley@bradleysepos.com>
    CC : libav-stable@libav.org

    • [DBH] libavcodec/h264dec.h
  • ffmpeg video of image list within a folder

    31 mars 2020, par Gergely Szarka

    I am trying to create an animation from a png files. They are all in the same folder and are named

    &#xA;&#xA;

    step0.png&#xA;step1.png&#xA;step2.png&#xA;.....&#xA;&#xA;step19998.png&#xA;step19999.png&#xA;

    &#xA;&#xA;

    I frame represents 0.01s, so I think I need 100 fps.

    &#xA;&#xA;

    the command I was trying :

    &#xA;&#xA;

    ffmpeg -r 100 -f image2 -pattern_type glob -i &#x27;*.png&#x27; -vcodec libx264 -crf 1  -pix_fmt yuv420p test.mp4&#xA;

    &#xA;&#xA;

    For some reason it doesnt put them together in the correct order, but when i put the last 500 into another folder and ran the command there it worked perfectly.

    &#xA;