
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (52)
-
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 (...) -
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 (...) -
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
Sur d’autres sites (8839)
-
Avoid auto-inserted scale filter
13 mars 2017, par CryGuyUsing the LibAv libraries, I’ve built a filter graph by calling
avfilter_graph_parse2
. This works well.
The string passed is"buffer=(several args),eq=gamma=5,buffersink"
The pixel format at the beginning and the end of the queue is yuv420p. Everything’s fine.
Now I wanted the output pixel format to be BGRA. I inserted the "format" filter :
"buffer=(several args),eq=gamma=5,format=pix_fmts=bgra,buffersink"
This works well, either.
However, I found out that a "scale" filter is auto-inserted between the "eq" filter and the "format" filter. I do know from the documentation that this can happen ("Libavfilter will automatically insert scale filters where format conversion is required."), but I don’t think it’s required in this case. This way, the scale filter already performs the pixel format conversion (yuv420p->bgra), and consequently makes the format filter useless.
So, anybody’s able to see why the scale filter gets auto-inserted ?
-
In FFmpeg, can -filter_complex do everything that -filter can ? (i.e., is it a direct replacement)
1er avril 2020, par Robert SalesasThis may seem like a strange question but... is it possible to do everything -filter can do using only -filter_complex filters ? That is, is there anything that -filter can do, that is not possible with -filter_complex ?


-
How to add a new filter to FFMPEG in c with third-party dependences
8 avril 2024, par ucagI'm a newbie to FFMPEG development and want to add a customized filter to FFMPEG.


I've followed the filter tutorial in the docs. However, it's just a very simplified example and not mentioned how to add other dependences to Makefile. Especially in
libavfilter/Makefile
, there is only aOBJS-(CONFIG_NAME_FILTER) += name.o
for me to add my filter.

I want to add a new video filter with third party dependencies, like third-party c code with some other dependences, third-party compiled
.so
on Linux,.dylib
on Mac,.dll
and.lib
on Windows, etc.

How can I add these third-party dependences to build process of FFMPEG ?