Recherche avancée

Médias (91)

Autres articles (38)

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

  • How to join two videos into one stream using ffmpeg

    12 janvier 2016, par Andrey Prokhorenko

    I am new to ffmpeg, and I try to join two videos and get a video stream. I found a command :

    ffmpeg -i input0.avi -vf "movie=input1.avi [in1]; [in]pad=640*2:352[in0]; [in0][in1] overlay=640:0 [out]" out.avi

    but at the end we get a file "out.avi" and I need a video stream. Is there any way to achieve this ?

  • Splitting videos slowly using FFMpeg in android

    13 mai 2017, par Krish

    Hi i am using FFMpeg below command1 for splitting video files in android,I am facing problem here when i upload more than 40Mb file taking too long time for splitting the files

    Using command2 videos are splitting very fastly but splitting files size count more than main file size

    Is there no way for splitting videos fastly with not increasing splitting videos count size compare to main file,Can some one help me please.

    Command1 :-

           String[] cmd = {"-ss", "" + "0", "-y", "-i", "inputFile", "-t", "" + "5", "-s",
                   "width" + "x" +
                           "height", "-vcodec", "mpeg4", "-b:v",
                   "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", Environment.getExternalStorageDirectory() +
                   "/FFMpeg" + "/" + outPutFile + "" + indexValue + "" + "." + "mp4"};

    Command2 :-

           String cmd[] = new String[]{"-i","inputfile", "-ss", "" + start, "-c", "copy", "-t", "" +
                   end, "-acodec", "copy", "-vcodec", "copy",
                   Environment.getExternalStorageDirectory() +
                           "outPutFile.mp4"};
  • How to downsample all the videos in a folder using ffmeg

    8 novembre 2020, par amarykya_ishtmella

    I have a folder with videos of different types (mainly .MTS or .mov, but strong possibility that in future there will be other types). I want to downsample it. This is the code that I won't, but it's not working.

    


    from pathlib import Path
import subprocess, os
import cv2

path= '/Volumes/Element/videos/'

for filename in os.listdir(path):
    if filename.endswith(".MTS") or filename.endswith(".mp4"): 
        os.system("ffmpeg -i{0} -vf scale=500:-2 output%p.MTS".format(filename))
        continue
    else:
       os.system("ffmpeg -i{0} -vf scale=500:-2 output%p.MTS".format(filename))
       continue