Recherche avancée

Médias (91)

Autres articles (62)

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

  • how do I save the videos in an specific bitrate using ffmpeg ?

    15 mai 2022, par david

    I am trying to save some videos in specific bitrate (8000k) and for this, I used the following code :

    


    ffmpeg  -i  input_1080p60  -c:v  libx264 -pix_fmt yuv420p  -b:v 8000K -bufsize 8000K -minrate 8000K -maxrate 8000K -x264opts keyint=120:min-keyint=120 -preset veryfast -profile:v high out_1080p.264


    


    but after saving the videos, I find out each video has a different bitrate except 8000k ( for example 5000k, 6000k, 7500k,...). but I define the minrate 8000k. do you know what is the problem and how can I force the above code to have the specific bitrate ? Thank you.

    


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

  • 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