
Recherche avancée
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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" (...)
Sur d’autres sites (4625)
-
Anomalie #3898 : LaTeX et entites html
7 février 2017, par Hugues ArouxBonsoir,
Oui, il faut à chaque test vider le cache image idoine, pfuu me suis fait avoir ... comprenais plus ... ;-)
J’ai pris ce même bout de code (que tu cite), avant de poser ce ticket, pour m’assurer que ce que l’on m’avait fournis n’était pas erroné.
Spip.net est en 3.0.x donc le problème n’apparait pas.
Dans mon 3.1.3 apparait alors des "amp ;" devant chaque signe égal de la fonction : z = 2x.... : :>> z amp ;= 2x + 3y...
Latex interprète bien le "&" comme code de mise en colonne et retourne le reste de notre entite html.
Regarde cette page : https://contrib.spip.net/Serveur-TeX, typique du problème.
Ou mieux encore, celle-ci : http://forum.spip.net/fr_182887.html, le code latex a été écrit en 2006, et les images régénérées par un SPIP 3.2.0-dev SVN [22930].
Il est évident que quelque part dans/avant la fonction produire_image_math() il y a un encodage qui envois un&
!
Dans propre() .. ? Là moi je sèche !Pour info, avec mon p’tit patch sur la fonction j’obtiens ce beau tableau en bas de page : http://dali.coria.fr/spip.php?article1
Sans, c’était, tu l’auras compris, des "amp ;" devant chaque chiffre !Sinon je n’ai pas rencontré de problème d’image partielle ; de ce côté réponse nickel du serveur.
Cordialement -
Evolution #3964 : mise en forme minimum des formulaires
26 mars 2018, par nico d_Et encore un dans theme.css :
@media print
/* Ne pas imprimer */
.spip-admin,
.spip-admin-float,
.spip-previsu display : none ;
.repondre,
.formulaire_spip display : none ;
...Pas de pitié pour les formulaires :p
Je serais plutôt d’avis de ne garder que ça dans spip.css :
@media print .forum-titre, .formulaire_forum display : none ;
-
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