Recherche avancée

Médias (91)

Autres articles (37)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (3397)

  • Use ffmpeg to concatenate a video and a timelapse

    26 décembre 2022, par tudors

    Input 1 : I used my phone to record a 25 fps movie with 1920x1080 resolution. There is sound.

    


    Input 2 : I used ffmpeg to create a timelapse movie i.e. 25 fps made out of 1920x1080 JPEGs. There is no sound.

    


    When I tried to concatenate them however, the result was a mess : It seems some fine detail is not matching between the two inputs, because the resulting video squishes the time lapse down to just 1 frame at the end.

    


    I have also tried this by first removing sound from video 1, so that both videos are soundless, and this does not give a different result.

    


    How can I tell ffmpeg that the two inputs are not incongruent, so as to achieve a correct 25 fps 1920x1080 video using all the frames from both inputs ?.

    


  • Gphoto2 live view with nikon dslr5100 pipes to ffplay for 3 seconds then dies

    30 avril 2020, par Will Simpson

    I am trying to use my DSLR camera with OBS.
I have installed Gphoto2 on mac and have managed to get a connection to the camera.
Now I am trying to get some kind of live view window that I can then capture in OBS.

    



    The problem is when I use the following command, the camera makes like it is about to go into movie mode, the window opens and then the image begins streaming for usually about 4 seconds before it freezes.

    



    gphoto2 --port usb:250,006 --capture-movie --stdout | ffplay -i pipe:0 -vcodec mjpeg


    



    I specify the port because I also have my iphone camera in another window in OBS

    



    Does anyone have any suggestions ?

    


  • ffmpeg encode video with different rates [on hold]

    12 août 2013, par alexis

    I have two videos. I make this videos with the following codes :

     ffmpeg -r 5 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an a.avi
     ffmpeg -r 15 -f image2 -i "b%d.png" -c:v mpeg4 -q:v 5 -an b.avi

    As you can see, the only difference is the rate. Now I want to concatenate them. Following the other post I use this :

     ffmpeg -i "concat:a.avi|b.avi" -c copy movie2.avi

    However the resulting movie shows the "b.avi" part much more slower. Actually no difference of speed is appreciated between "a" and "b" parts. How can I keep the differences of speed in the resulting movie ?

    Maybe I have some conceptual misunderstanding about rate... but the thing is that I want the "b.avi" part to be faster than the "a.avi" part.