Recherche avancée

Médias (91)

Autres articles (87)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11014)

  • lavc/mjpegdec : replace number with marker name

    27 juin 2019, par Zhong Li
    lavc/mjpegdec : replace number with marker name
    

    Make it easier to read.

    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavcodec/mjpegdec.c
  • Cross fading 2 videos segments using ffmpeg when number of frames are not known before hand

    5 avril 2016, par Hero Roma

    I am a newbie trying to cross fade 2 videos using ffmpeg and the stackoverflow answer. But in my case I do not know the length of the video or the number of the frames. I want to start the fade out in the first video in the last 5 frames and fade in the first 5 frames. I am able to do the fade in on the second video but I cannot figure out how to do the fade out in the last 5 frames when I don’t know the duration or the number of frames.

    The "-i" option is supposed to be able to extract that information but I cant seem to pipe it to the next block there.

    ffmpeg -i 1.mp4 -i 2.mp4 -f lavfi -i color=black -filter_complex \
    "[0:v]format=pix_fmts=yuva420p,fade=t=out:st=4:d=1:alpha=1,setpts=PTS-STARTPTS[va0];\
    [1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+4/TB[va1];\
    [2:v]scale=960x720,trim=duration=9[over];\
    [over][va0]overlay[over1];\
    [over1][va1]overlay=format=yuv420[outv]" \
    -vcodec libx264 -map [outv] out.mp4
  • format string in text of ffmpeg.drawtext(),i want the frame number to be 0001 , currently it is 1

    7 novembre 2022, par Đạt Nguyễn

    i want the frame number to be 0001 , currently it is 1

    &#xA;

    ff = ffmpeg.drawtext(ff_drawtext,text ='%n',start_number=1,fontfile='C :/Windows/Fonts/Arial.ttf',fontcolor="white",x='w-(w/1.8)',y='h-(h/30)',fontsize="28",escape_text=False)

    &#xA;

    i use : text =":04n".format(%'n) not unsuccessful

    &#xA;

    enter image description here

    &#xA;