
Recherche avancée
Médias (3)
-
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
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (6)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (...)
Sur d’autres sites (1267)
-
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


-
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 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 ?