Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9814)

  • What is the purpose of the split filter in FFMpeg ?

    1er juin 2024, par TheOrbitHeart

    In complex filters specifically, is there a situation where it is necessary to use the split filter, rather than use the same input multiple times ?

    


    For example, consider the following FFmpeg command :

    


    ffmpeg -i input.mp4 -filter_complex \
  "[0:v]hflip[out1]; \
   [0:v]boxblur=10[blurred]; \
   [out1][blurred]hstack[out]" \
 -map "[out]" output.mp4


    


    It seems to work perfectly fine, But I saw some tutorials consistently using "split" in situations like this, where the input is split before any other filters are applied, making me wonder if there are unintended consequences to using inputs directly like this, I tried to find filters that may alter the input or optimization issues but I found no difference. So, it begs the question, what's the purpose of "split" ? and when should I use it ?

    


  • Split a very short second video into multiple parts

    6 décembre 2020, par Nicolas Tapino

    I've been looking for a lot of softwares that can split videos into multiple parts but most of them only manage to split large videos to let's say 1 or 2 minutes for each part.

    


    What I would like to do is to actually split a few seconds video into, let's say, 10 or more parts (therefore less that one second each, but still not frames).

    


    I don't know if ffmpeg can be that precise or if there is any other solutions that exist.

    


  • split video and keep pts unchanged

    31 mai 2020, par nobody0day

    I am trying to split a big video into small ones and keep the pts unchanged in small videos. Any ideas on how to program with ffmpeg library in c programming language.

    



    My first thought is that split video around the I-frame and keep the I-frame's pts as first_pts of next video but it didn't works.