
Recherche avancée
Autres articles (59)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (13267)
-
chroma key my command for filter white background works but filter white and black ?
21 décembre 2018, par userpovffmpeg -i bakground.avi -i overlay.avi -filter_complex "[1:v]chromakey=0xFFFFFF:0.02:0[keyed]; [0:v][keyed]overlay[out]" -map "[out]" output.avi
this command filter white and black
I need filter only white color
please help me
-
ffmpeg - how to remove white frames ?
29 avril 2019, par FrankWe doing videorecording with strobelight and the framerate is 30 fps.
If we set the strobe below 30hz we got a black frame in the video. if we set the strobe over 30hz we got a white frame.I found how to remove the blackframe and duping the the frame before using :
ffmpeg -i test.avi -vf blackframe=1,metadata=select:key=lavfi.blackframe.pblack:value=0:function=less -vsync cfr -c:a copy out.avi
But i cant find anything to remove the white frame. Is there any filter i can use ?
Greetings
Frank -
Android ffmpeg white space in input path causing "no such file or directory"
24 juin 2024, par MehranI'm using the latest version of WritingMinds/ffmpeg-android-java library.



I've tried single/double quoting the path with no success.



I Logged my command after execution,
please look to the input path where a subDirectory contains whiteSpace, a comma has been added between the space :



ffmpeg, -i, "storage/emulated/0/Telegram/Telegram, Video/4_5828137322067002802.mp4", -vf...




I split and run my command like this :



String crop = "-ss " + skipTimeForCrop + " -noautorotate -i " + newPath + " -vframes 10 -vf cropdetect=24:16:0 -f null -";
String[] cropCommand = crop.trim().split(" ");
execFFmpegForCrop(cropCommand);






storage/emulated/0/Telegram/Telegram : No such file or directory





Any idea on this ?