
Recherche avancée
Autres articles (46)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7097)
-
Revision 29721 : Afficher aussi un avatar, même hors contexte auteur (par exemple dans les ...
7 juillet 2009, par romy@… — LogAfficher aussi un avatar, même hors contexte auteur (par exemple dans les posts de forum) ; un peut bourin, mais ça marche, à condition de passer l’adresse mail au modele.
-
Anomalie #3011 (Fermé) : Bug formulaire de contact
31 mai 2013, par Luc _Dans la 3.0.10, lorsque l’on remplit insuffisamment le textarea du formulaire de contact, le message d’erreur est incorrect, il renvoie "forum attention dix caracteres" au lieu du message correspondant (tiré de forum_fr.php semble-t-il). Bug vérifié sur http://grml.eu/spip.php?page=contact.
Meilleures salutations, Luc.
-
How to add custom external video filter to ffmpeg at runtime ?
9 décembre 2019, par alexTrying to build ffplay app that uses ffmpeg LGPL build with custom filter that I want to plug in during runtime. Differently from adding custom filter during compilation described scenario is not documented, thus tried to experiment. Tried executing avfilter_register and avfilter_graph_alloc_filter functions before avfilter_graph_parse_ptr with avfilter_graph_parse_ptr resulting in -22 return value (Invalid argument).
Filter graph string :
[in] split [T1], fifo, [T2] overlay=0:H/2 [out]; [T1] fifo, crop=iw:ih/2:0:ih/2, my_edgedetect=low=0.1:high=0.4 [T2]
Lines added to configure_filtergraph function in ffplay.c :
if ((ret = avfilter_register(&ff_vf_edgedetect)) < 0)
goto fail;
if ((ret = avfilter_graph_alloc_filter(graph, &ff_vf_edgedetect, ff_vf_edgedetect.name)) < 0)
goto fail;Custom edge detect filter name (AVFilter.name) changed to my_edgedetect.
What is the proper way to register custom filter during runtime ?
P.S.
Same question on Zeranoa forum