
Recherche avancée
Autres articles (32)
-
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. -
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 -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (2693)
-
avformat/dashenc : Fix a resource leak when http persistent in enabled
2 janvier 2018, par Karthick Jeyapal -
avcodec/nvenc : also clear data pointer after unregistering a resource
28 janvier 2018, par Timo Rothenpieler -
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 ?