
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (75)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (9109)
-
Evolution #4148 : Augmenter la largeur de l’espace privé
23 juin 2018, par chan kalanJusque là on avait une option "grand écran" qui utilisait la colonne droite. C’est un comportement qu’on peut avoir sans option, juste si on a un écran assez large.
Et finalement on pourrait utiliser l’option pour présenter un affichage 100% lorsqu’on en a besoin... parce qu’il me semble pas que ce soit courant... ? -
ffmpeg development recompile only changed part on windows
8 décembre 2020, par HarryNew to ffmpeg development, i am trying to develop a patch for a specific demuxer in avformat and sure i want to be able to test my changes without recompiling all parts of ffmpeg again as it takes about an hour. My toolchain is set up as per https://ffmpeg.org/platform.html 4.1.1. Using mingw64.exe, it was no problem to compile an initial version :


./configure --disable-static --enable-shared --enable-gpl
make -j4



Voila, i have a shared build, means the .exe and .dll files are built and i can run the program successfully.


Now when i change some code , e.g. in libavformat/pcm.c, i can recompile this part easily by doing


make pcm.o



make will even recognize automatically if there were changes to the code and only rebuild the single .o file. But when executing make in the root path of the ffmpeg source again, it will always recompile all .o files which of course something i want to avoid.


I tried disabling some components e.g. by doing


./configure --disable-static --enable-shared --enable-avisynth --enable-gpl --disable-avcodec --disable-avdevice --disable-avfilter



But this way, i am only getting a new avutil.dll, avscale.dll and avresample.dll but no avformat.dll (which i dont understand because i dont disable avformat), also it seems to recompile the parts instead of re-using and just link the existing .o files together.


How could i tell the make command not to compile anything but instead just link all the existing .o files - and only for avformat instead of all parts ?


-
Anomalie #4261 : Vider l’opcache au recalcul et à l’upgrade
22 novembre 2019, par jluc -L’opcache foire aussi les installations de plugins : cf https://www.mail-archive.com/spip-zone@rezo.net/msg49046.html
Mise à jour du contournement proposé plus haut : il faut aussi vider le cache apcu.
if (isset($_REQUEST[’var_mode’]) and ($_REQUEST[’var_mode’] == ’recalcul’))
if (function_exists('spip_clear_varnish_cache'))<br /> spip_clear_varnish_cache();
include_spip ('inc/invalideur');<br /> suivre_invalideur('recalcul');
if (function_exists('opcache_reset'))<br /> opcache_reset();
if (function_exists('apc_clear_cache')) {<br /> apc_clear_cache();<br /> apc_clear_cache('user'); <br /> }
if (function_exists('apcu_clear_cache')) {<br /> apcu_clear_cache();<br /> }
spip_log("recalcul a vidé varnish, SPIP, opcache et apc_cache");<br />}
Mais le mieux serait de mettre ça dans une fonction appelée lors des différentes mise à jour le nécessitant (et pas seulement au recalcul via l’url)