Recherche avancée

Médias (91)

Autres articles (47)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (4876)

  • how to trim and merge videos with single commend [duplicate]

    18 mars 2020, par eomer

    Is it possible to trim a video and merge with another video at the same time ?

    



    I am learning ffmpeg and I know that I can merge videos and trim videos

    



    I could use output for trimmed video and merge with another but is it possible to do at one step ?

    


  • mpeg-dash toolkit, how can I make such videos ?

    21 mai 2015, par sathia

    I was reading about this nice specification but I’m not sure what’s the current status. Ffmpeg has some coverage

    http://ffmpeg.org/ffmpeg-all.html#webm_005fdash_005fmanifest

    but it is not clear to me if I could encode videos in such format.
    So, the question is, If I were to produce mpeg-dash compliant videos, how would I do nowadays ? thanks !

  • ffmpeg concatenate 3 videos with fade in/out

    10 janvier 2017, par Crikey Mikey

    Im trying to join 3 videos together with a fade in/out 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,