Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (62)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

Sur d’autres sites (7886)

  • Revision 999f31f71c : Move documentation file list to relevant make file Change-Id : I2fe3095c4eb60233

    16 novembre 2012, par Johann

    Changed Paths : Modify /libs.mk Modify /vpx/vpx_codec.mk Move documentation file list to relevant make file Change-Id : I2fe3095c4eb60233f00830d4124583ce7a64caa4

  • fftools/ffmpeg : use a bsf list instead of individual bsfs

    17 avril 2020, par Marton Balint
    fftools/ffmpeg : use a bsf list instead of individual bsfs
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_opt.c
  • How to concat videos from a file list while adding black fade transitions in ffmpeg

    6 avril 2022, par connor449

    I have a piece of code that concats videos from a file list. It works perfectly.

    &#xA;

    ffmpeg -f concat -safe 0 -i file_list.txt -c copy mergedVideo.avi&#xA;

    &#xA;

    However, I want to add a black fade transition between each video. I found this code snippet that apparently does this, but it requires you to input each file by hand.

    &#xA;

    ffmpeg -i in.mp4 -i main.mp4 -i out.mp4 -filter_complex \&#xA;  "[0:v]fade=type=out:duration=2:start_time=28,setpts=PTS-STARTPTS[v0]; \&#xA;   [1:v]fade=type=in:duration=2,fade=type=out:duration=2:start_time=28,setpts=PTS-STARTPTS[v1]; \&#xA;   [2:v]fade=type=in:duration=2,setpts=PTS-STARTPTS[v2]; \&#xA;   [v0][0:a][v1][1:a][v2][2:a]concat=n=3:v=1:a=1[v][a]" \&#xA;  -map "[v]" -map "[a]" output.mp4&#xA;

    &#xA;

    I want to be able to read all the video files from a txt file as I have hundreds of videos. How do I combine these two snippets, or is there a better way to accomplish the concat with fade transitions ?

    &#xA;