Recherche avancée

Médias (0)

Mot : - Tags -/xmp

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (82)

  • 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

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (9990)

  • How to extract frames and name them starting with 0.png ?

    10 août 2021, par Jesse Hix

    I am extracting frames from a video to alter them however for the program to work properly I need ffmpeg to extract the frames and name them starting with 0.png. Right now it extracts at 1.png. The command to extract the frames is :

    


    ffmpeg -i input_video -vf select="between(n\,'0'\,'20'\)" -vsync 0 frames/%d.png

    


    Is this possible still using this command or should I create a loop that extracts them and names them based on a counting variable ?

    


  • Fix some minor word duplication

    1er décembre 2014, par Zoë Blade
    Fix some minor word duplication
    

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] doc/html/documentation_tools_metaflac.html
    • [DH] include/FLAC/all.h
    • [DH] include/FLAC/metadata.h
    • [DH] include/share/compat.h
    • [DH] include/share/macros.h
    • [DH] man/metaflac.1
    • [DH] man/metaflac.sgml
    • [DH] src/metaflac/usage.c
  • ffmpeg select filter starting time ?

    8 mars 2021, par Sergey Yermak

    I am stuck with ffmpeg select filter.

    &#xA;

    I am trying to generate 10 thumbnails from the video and it works fine.

    &#xA;

    However, I want to skip some starting time (around 30 seconds), since there are usually video intros, etc.

    &#xA;

    So I can't figure out a way to do that - not using ffmpeg too often.&#xA;The command I'm currently using :

    &#xA;

    ffmpeg -loglevel panic -y -i "test.mp4" -frames 1 -q:v 1 -vf "select=not(mod(n\,7877)),scale=-1:227,tile=10x1" video_preview.jpg&#xA;

    &#xA;