
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (48)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (6622)
-
How do I edit the PKG_CONFIG_PATH environment variable on windows ?
2 janvier 2024, par Project PowerPointI'm trying to use pkg-config to combine files from ffmpeg into a library so I can use them as such in my program. However, I can't seem to figure out how to get pkg-config to look in another location.


It's worth mentioning that I'm compiling this program into a node API addon for a node project, so I'm using pkg-config from NPM and CMake-js.


Currently, pkg-config looks in
C:/Strawberry/c/lib/pkgconfig


I want it to look in
C:/ffmpeg/lib/
as well.
I've tried looking for how to do this, but I can only find how to do it on linux.

In the one stackoverflow question which is similar, the link provided is broken : link to question , broken link provided


Otherwise, I find conflicting info saying pkg-config in windows doesn't consider PKG_CONFIG_PATH environment variable. I can't test this if I can't find out how to actually do it.


I've also tried copying the ffmpeg folder inside
C:/Strawberry/c/lib/pkgconfig
so it can find it. Even then, it 'cant find libavcodec.pc' despite being located in that folder (albeit several folders deep).

How do I change the environment variable for pkg-config ?


-
can't open video files with opencv in windows
13 novembre 2018, par BarracudaI’m trying to open a video file in my program written in C++ using Visual Studio. I’ve tried adding the path to the environment using the answers to this question. But it still doesn’t work. What else do I have to do ?
I’ve installed the opencv using this link. I have also downloaded the static ffmpeg using this link.
-
How to compile ffmpeg using libx264 static library ?
10 octobre 2020, par bearhangI had installed x264 static and dynamic library on Linux.


And I compile ffmpeg by
./configure --enable-gpl --enable-libx264 && make
.

The executable program link to the x264 dynamic library


I want to know how to config ffmpeg link to the static library