Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (31)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

Sur d’autres sites (3245)

  • How to reduce size of video file without loosing quality with FFmpeg ?

    23 août 2020, par apollo

    I'm developing video streaming web site.So many videos. But the size of file is too large to be stored in server.
I want to reduce size of video file without loosing quality.
I'm new to ffmpeg . So I want somebody to help me to reduce file size.
Thanks.

    


  • cfhd : Do not initialize context size

    29 mars 2016, par Vittorio Giovara
    cfhd : Do not initialize context size
    

    Otherwise probing and stream analisys will report a correct coded size
    but an empty visible size.

    Approved by : kieran
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cfhd.c
  • How to animate video png overlay size with ffmpeg ?

    17 septembre 2021, par Nazarii Kahaniak

    I have a png overlay over a video and I am trying to add zoom animation after 10 seconds of the video, so that image takes the whole video size. I have tried to use zoompan for that but I it resized image instantly without any animation. How to smoothly change overlay size with ffmpeg ?

    &#xA;

    inputs :

    &#xA;

    &#x27;-i&#x27;, cameraVideoPath,&#xA;&#x27;-i&#x27;, overlayPath,&#xA;

    &#xA;

    command :

    &#xA;

    nullsrc=size=$cameraVideoSize [base]; &#xA;[0:v] setpts=PTS-STARTPTS, scale=$cameraVideoSize [p1];&#xA;[1:v] scale=640:300,setsar=1/1,zoompan=z=&#x27;if(gte(in,250),min(pzoom&#x2B;0.005,10),1)&#x27;:d=1:s=1920x900,trim=duration=1[overlay];&#xA;[base][p1] overlay=shortest=1 [v1];&#xA;[v1][overlay]overlay=0:(H-h)&#xA;

    &#xA;