Recherche avancée

Médias (91)

Autres articles (13)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (4248)

  • matroskadec : introduce resync function.

    28 mai 2013, par Sean McGovern
    matroskadec : introduce resync function.
    

    This allows handling matroska files with errors.
    Fixes test4.mkv and test7.mkv from the official Matroska test suite,
    and by extension Bugzilla #62.

    Based on a patch by Reimar Doffinger <Reimar.Doeffinger@gmx.de>

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/matroskadec.c
  • lavfi/paletteuse : fix to support transparency

    24 octobre 2017, par Bjorn Roche
    lavfi/paletteuse : fix to support transparency
    

    This patch enables paletteuse to identify the transparency in incoming
    video and tag transparent pixels on outgoing video with the correct
    index from the palette.

    This requires tracking the transparency index in the palette,
    establishing an alpha threshold below which a pixel is considered
    transparent and above which the pixel is considered opaque, and
    additional changes to track the alpha value throughout the conversion
    process.

    This change is a partial fix for https://trac.ffmpeg.org/ticket/4443
    However, animated GIFs are still output incorrectly due to a bug
    in gif optimization which does not correctly handle transparency.

    Signed-off-by : Clément Bœsch <u@pkh.me>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_paletteuse.c
  • ffmpeg : How to create a video from images with different delay between the images ? [duplicate]

    28 mai 2020, par Alex Poca

    I grabbed a quantity of snapshots at irregular times and would like to create a posthumous (fake) real-time video (mp4, animated GIF, etc) from them. This means I need to insert a proper delay between these frames, and this dwell time changes between each couple of frames.

    &#xA;&#xA;

    As an example :

    &#xA;&#xA;

      &#xA;
    • frame0, taken at t0 ;
    • &#xA;

    • frame1, taken at t1=1 sec ;
    • &#xA;

    • frame2, at t2=5 sec ;
    • &#xA;

    • end dwell time of 2 seconds
    • &#xA;

    &#xA;&#xA;

    should return a 7-sec video like this :

    &#xA;&#xA;

    example_video

    &#xA;&#xA;

    I cannot afford to work manually with a video editing software because we are talking about hundreds of frames, but I can easily prepare a list with all frame names and delays between them.

    &#xA;&#xA;

    I read around how to create a video with a fixed interframe time (i.e. from here), how to create animated GIFs with Python (alas with fixed delay), and how to add a frame at the end of an existing video (the dwell time between second-last and last frame can be set, but the process is very inefficient and slow for hundred of frames).

    &#xA;&#xA;

    Can it be done with ffmpeg or any other Linux tool ?

    &#xA;