Recherche avancée

Médias (91)

Autres articles (34)

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

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

Sur d’autres sites (3710)

  • How to merge two videos using FFMpeg PHP

    7 août 2015, par Vikas

    currently i am working on a project where i need to merge the two videos using ffmpeg and php. I need to make two video play same time and on stop should stop at same time and if one video stop’s than other should also pause. I have searched a lot but didn’t find any thing, hope anyone can help me.

  • How do I combine videos with ffmpeg with delay ?

    8 février, par Isaiah Barrier

    I have 44 videos that are all encoded the same and have the same dimensions, and they all have audio. I want to combine all of them with a 0.5 second pause between them in ffmpeg. How do I do that ? The command I used that combines them without delay is ffmpeg -f concat -safe 0 -i fl.txt -c copy -map 0 output.mp4

    


  • How can one concatenate videos with different playback rates using ffmpeg ?

    5 juillet 2015, par ankit

    I had an mp4 (H-264 AAC) video and I changed the playback rates to make 2 new videos at .5x and 2x.

    FFMPEG, "-i", file, filter_complex, output_file_name

    Where (in R),

    filter_complex = paste0("-filter_complex ", "'[0:v]setpts=", vspeed[i], "*PTS[v];[0:a]atempo=", aspeed[i], "[a]'", " -map ", "'[v]'", " -map ", "'[a]' ", " -strict -2")

    When I tried to concatenate them the sped up and slowed down videos using

    `FFMPEG, " -f concat -i ", fname, " -c copy ", fileName, "run", ".mp4"`

    I found that the concatenated video was getting stuck (asynchronous) at the sped up and slowed down parts. How can I concatenate them such that it plays correctly ?