Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (85)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (8473)

  • avcodec/prosumer : Remove unused table element

    22 septembre 2018, par Michael Niedermayer
    avcodec/prosumer : Remove unused table element
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/prosumer.c
  • avcodec/dnxhddec : Use VLC symbol table to avoid lookup

    16 septembre 2023, par Andreas Rheinhardt
    avcodec/dnxhddec : Use VLC symbol table to avoid lookup
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/dnxhddec.c
  • ffmpeg : How to get ffmpeg to ignore or fill in missing frames in the input image sequence [closed]

    6 février 2024, par Greg E

    I have input frames image.0001.png, image.0002.png etc. Converting them to mp4 with

    &#xA;

    ffmpeg -f image2 -i image.%04d.png -vcodec libx264 -crf 1 -pix_fmt yuv420p out.mp4

    &#xA;

    However if there are missing frames in the sequence, eg. image.0020.png is missing, ffmpeg stops at frame 19 and makes a truncated movie with 19 frames.

    &#xA;

    I'd like ffmpeg to just ignore the missing frame 0020, or repeat 0019 as 0020, or anything else sensible (look ahead and pull 0021 back to be 0020 ?).

    &#xA;

    For context, this is a moving geometric art thing and a skipped frame will be a noticeable jerk in the movie, probably a repeated frame will be smoother.

    &#xA;

    Thanks for any assistance.

    &#xA;

    (Environment : Mac M1, Sonoma 14.3, ffmpeg 6.1.1)

    &#xA;