
Recherche avancée
Autres articles (60)
-
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 (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (7748)
-
Anomalie #2013 : Limiter la previsu en redaction à ses propres articles
27 septembre 2015, par realet RealET- Equipement a écrit :
Pour information, prévisualiser les articles, qui ont le statut "en cours de rédaction", correspond à l’une des fonctionnalités du plugin CIPR "Prévisualisation étendue" (http://contrib.spip.net/cipr-plugin-Previsualisation-etendue).
Remarque : Le plugin CIPR permet, en plus, de prévisualiser une rubrique (avec ses articles publiés et ses articles non publiés) et de naviguer en prévisualisation entre articles et rubriques, sur la page d’accueil, etc.
Je suis allé voir la doc du plugin : ça me semblerait bien d’intégrer carrément ce plugin à SPIP 3.1 !
-
Anomalie #2013 : Limiter la previsu en redaction à ses propres articles
27 septembre 2015, par realet RealETUn autre bug constaté sur une 3.1 (svn 22423) avec le var_previewtoken activé : pour les gens non connectés à qui on communique l’URL avec le var_previewtoken, c’est une page 404 qui est vue si l’article est en cours de rédaction.
Et si l’article est proposé à l’évaluation, alors c’est bon.(j’ai eu un sacré qui-proquo en demandant une relecture d’un article dans cette situation !).
Pour mémoire :
define(’_PREVIEW_TOKEN’, true) ; // introduit par http://core.spip.org/projects/spip/repository/revisions/21077 et http://core.spip.org/projects/spip/repository/revisions/21084(c’est un define que je garde depuis SPIP 2.1, ne sachant si c’est natif en SPIP 3.1)
-
Using ffmpeg with Visual Studio 2013 and C
19 juin 2016, par user5000935I’m try
main.c
av_register_all() ;AVFormatContext *pFormatCtx = NULL;
// Open video file
if (avformat_open_input(&pFormatCtx, argv[1], NULL, NULL) != 0)
return -1; // Couldn't open file
if (avformat_find_stream_info(pFormatCtx, NULL) < 0)
return -1; // Couldn't find stream information
}- I’ve added the include (C :\ffmpeg\include) directory to my C/C++ > General > Additional Include Directories ;
- I’ve added
I’m using "Zeranoe FFmpeg Build Version : git-5911eeb (2015-10-08)". I tried both 32/64bits versions as said in another question here in SO.
These are the errors I’m getting :
Error 3 error C2143: syntax error : missing ';' before '{' c:\ffmpeg\include\libavutil\error.h 110 1 FFMpeg Test
Error 6 error C2143: syntax error : missing ';' before '{' c:\ffmpeg\include\libavutil\mem.h 94 1 FFMpeg Test
Error 9 error C2143: syntax error : missing ';' before '{' c:\ffmpeg\include\libavutil\mem.h 229 1 FFMpeg Test
Error 12 error C2143: syntax error : missing ';' before '{' c:\ffmpeg\include\libavutil\mem.h 338 1 FFMpeg Test
Error 15 error C2143: syntax error : missing ';' before '{' c:\ffmpeg\include\libavutil\rational.h 54 1 FFMpeg Test
Error 18 error C21in formal parameter list c:\ffmpeg\include\libavutil\mem.h 338 1 FFMpeg Test
Error 20 error C2085: 'av_q2d' : not in formal parameter list c:\ffmpeg\include\libavutil\rational.h 80 1 FFMpeg Test
Error 8 error C2085: 'av_mallocz_array' : not in formal parameter list c:\ffmpeg\include\libavuormal parameter list c:\ffmpeg\include\libavutil\rational.h 54 1 FFMpeg Test