Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (50)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8718)

  • Combining sampled videos from multiple sources using ffmpeg

    4 juin 2016, par Mrunal Gawade

    If I have two videos shooting the same subject but from different angles, and then I want to create a single video, but the combination is not just concatenation but a time lined sample linearly from each of the video to create the same time line output video. Is it possible ?

    For e.g. if both videos were shot for 1 minute each. then when I combine I want to combine 0-15 secs from 1st then 15-30 secs from second, then 30-45 from 1st, then 45-60 from second video. to create a 1 minute video.

    Also as a generic case if above is possible, the time sample need not be uniformly distributed but random from each videos, as long as the total clips add upto original shoot time.

    As a more generic case if above is possible, extending it to more than two video sources, lets say 3 videos combined in the above manner in a random time clips to create a single video.

    many thanks
    Mrunal

  • Which library does Youtube use to process videos on their server ?

    25 janvier 2020, par Ali Raza

    I want to know which library/component does Youtube use to process videos amazingly fast on their server ? I am using FFMpeg to process my video right now but it takes much time to process and create different qualities using bitrate.

    Are there any better alternatives to FFMpeg that can process videos faster like youtube ?

  • ffmpeg concatenate 3 videos with crossfade

    17 mars 2019, par Crikey Mikey

    Im trying to join 3 videos together with a crossfade effect.

    I can get this working for 2 videos (sourced from stackoverflow but cant find the link) :

    ffmpeg -y -i part1.mp4 -i part2.mp4 -f lavfi -i color=black:s=1920x1080 -filter_complex \
    "[0:v]format=pix_fmts=yuva420p,fade=t=out:st=10:d=1:alpha=1,setpts=PTS-STARTPTS[va0]; \
    [1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+10/TB[va1]; \
    [2:v]trim=duration=20[over]; \
    [over][va0]overlay[over1]; \
    [over1][va1]overlay=format=yuv420[outv]" \
    -vcodec libx264 -map [outv] merged.mp4

    But cant work out how to make this work for 3 videos.

    I don’t need any audio. Any ideas ?

    Cheers,