Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (60)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7747)

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

    


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

    


  • FFMPEG : Overylaying multiple videos with offset

    4 novembre 2014, par user1064504

    I am trying to overlay multiple videos in a split screen, with different offset (Audio, video both offset), initially I tried offsetting & overlaying like following

    avconv -i 1.webm -itsoffset 2 -s 640x480 -vf "movie=1.webm, scale=320:480 [vid2]; [vid2] overlay=0:0 [basis1]; [basis1][1] overlay=320:0" splitScreenOut.mp4

    & overlayed videos being offset by

    movie=overlay.avi:seek_point=1.4

    But this approach didn’t worked on my end, the -itsoffset offsets entire video output & seek_point wasn’t recognized by my ffmpeg build.

    Then I tried offsetting each video individually.

    avconv -itsoffset 4 -i 1.webm -c copy tmp1.webm

    & simply overlaying

    avconv -i tmp1.webm -s 640x480 -vf "[in] scale=640/3:480, pad=3.01*iw:ih [video0]; movie=tmp2.webm, scale=640/3:480 [video1];[video0][video1] overlay=(640)/3:0 [VidO1]; movie=tmp3.webm, scale=640/3:480 [video2];[VidO1][video2] overlay=(640/3)*2:0 [out]" -b:v 768k Output.webm

    The problem is all video start in split screen, from offset of first video as if individually offsetting didn’t worked.