Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (100)

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

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5762)

  • configure : select subordinate formats for HLS

    11 février 2023, par Gyan Doshi
    configure : select subordinate formats for HLS
    

    HLS segments may be MPEG-TS or fragmented MP4, so those (de)muxers are
    required for reading/writing HLS media segments.

    Fixes functionality with —disable-everything —enable-demuxer=hls
    — enable-muxer=hls

    • [DH] configure
  • lavfi/select : add support for concatdec_select option

    24 octobre 2015, par Marton Balint
    lavfi/select : add support for concatdec_select option
    

    This option can be used to select useful frames from an ffconcat file which is
    using inpoints and outpoints but where the source files are not intra frame
    only.

    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/filters.texi
    • [DH] libavfilter/f_select.c
  • How to select range of an image sequence with sequential suffixes in ffmpeg

    6 septembre 2022, par J. SungHoon

    I have 100 images (001.png ... 100.png) in my img folder and I want to create 2 gif files with different frame ranges for specific uses from there.

    &#xA;

    The first case uses all 100 images. I use the code below and it works fine.
    &#xA;ffmpeg -f image2 -framerate 30 -i %003d.png -vf scale=-2:480 myAnim.gif

    &#xA;

    But in the second case, we want to use only 50 images from 20 to 70. What code should I use to select this specific range ?

    &#xA;