Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (106)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

Sur d’autres sites (23919)

  • pgssubdec : Check RLE size before copying

    31 juillet 2014, par Michael Niedermayer
    pgssubdec : Check RLE size before copying
    

    Make sure the buffer size does not exceed the expected
    RLE size.

    Prevent an out of array bound write.

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
    Bug-Id : CVE-2013-0852

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/pgssubdec.c
  • FFmpeg php set image size thumbnail

    3 février 2014, par user3262579
    $movie=new ffmpeg_movie(&#39;&#39;.$url.&#39;&#39;);
    $duration = $movie->getDuration();
    $uzanti = substr($url , -3);
    $duration = date(&#39;i:s&#39;,&#39;&#39;.$duration.&#39;&#39;);
    $framesay = $movie->getFrameCount();
    $framerate = $movie->getFrameRate();
    $framehesap = $thumb * $framerate;
    $md5 = md5($url);
    $frame = $movie->getFrame($framehesap);
    $gd = $frame->toGDImage();
    imagepng($gd,&#39;../thumb/&#39;.$md5.&#39;.png&#39;);

    I want to set image size. I'm using ffmpeg as you see. how can I set thumbnail size ? (I want 220x130)

  • FFMPEG : max size for adelay parameter

    10 mai 2021, par Aleksandar Nikolic

    Command with large size adelay parameter throws an error

    &#xA;

    Delay must be non negative number.&#xA;Failed to configure input pad on Parsed_adelay_1&#xA;Error reinitializing filters!&#xA;Failed to inject frame into filter network: Invalid argument&#xA;Error while processing the decoded data for stream #0:1&#xA;

    &#xA;

    The command is :

    &#xA;

    ffmpeg -y -i input.mp4 -filter_complex "[0:a]adelay=55555555:all=1[a0];[a0]amix=inputs=1[a]" -map [a] out.mp3&#xA;

    &#xA;

    How can this be solved ? What's the max size for adelay parameter ?

    &#xA;