Recherche avancée

Médias (91)

Autres articles (101)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (10199)

  • Revision 3011c53d36 : Fix a run-time integer overflow Change-Id : I87255d8a25ef8c7d235cbf3c8887d7bed78

    8 août 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/vp9_cx_iface.c



    Fix a run-time integer overflow

    Change-Id : I87255d8a25ef8c7d235cbf3c8887d7bed7892cfe

  • It takes a long time to add drawtext to large videos in ffmpeg

    28 novembre 2022, par AlwaysStudent

    I wanted to add text to the video uploaded to my server. And I am using the following ffmpeg code. But for large size videos the following code works very slowly and takes a very long time. Is there any way to shorten the time, can you help me with this.

    


    shell_exec("ffmpeg -I video.mp4 -vf \"drawtext=text='Text Here':fontfile=font.ttf:fontcolor='red':fontsize='40':x=w-mod(max(t-1\,0)*(w+tw)/30\,(w+tw)):y=main_h/2\" -acodec copy output.mp4 -preset ultrafast");


    


  • Mjpeg recording with FFMPEG preserving time information

    14 septembre 2012, par Muhammad Adeel Zahid

    I am recording the MJPEG video from an IP camera and saving it to a file but the problem is that file's duration is way smaller than the actual recording time. Its around 9 seconds video for 2 minutes recording. I tried following commands in order

    ffmpeg -f mjpeg -r 8 -i http://c-cam.uchicago.edu/mjpg/video.mjpg -vcodec mpeg4 -b 1000000 -r 8 video_file.avi

    Then I omitted the most of the flags and tried like this

    ffmpeg -f mjpeg -i http://c-cam.uchicago.edu/mjpg/video.mjpg video_file.avi

    But the problem is that the duration of recorded file is 9 seconds where as the actual recording time is around 2 minutes. I finally tried setpts filter that is supposed to insert the timestamps. The command is as follows

    ffmpeg -f mjpeg -i http://c-cam.uchicago.edu/mjpg/video.mjpg -vf "setpts=1*PTS" video_file.avi

    But result was still the same. Recording time was way more than video duration. How can I add presentational time stamps when recording from mjpeg source using ffmpeg ?