
Recherche avancée
Autres articles (106)
-
List of compatible distributions
26 avril 2011, parThe 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, parUne 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, parCertains 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 Niedermayerpgssubdec : 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-0852Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
-
FFmpeg php set image size thumbnail
3 février 2014, par user3262579$movie=new ffmpeg_movie(''.$url.'');
$duration = $movie->getDuration();
$uzanti = substr($url , -3);
$duration = date('i:s',''.$duration.'');
$framesay = $movie->getFrameCount();
$framerate = $movie->getFrameRate();
$framehesap = $thumb * $framerate;
$md5 = md5($url);
$frame = $movie->getFrame($framehesap);
$gd = $frame->toGDImage();
imagepng($gd,'../thumb/'.$md5.'.png');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 NikolicCommand with large size
adelay
parameter throws an error

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



The command is :


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



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