
Recherche avancée
Autres articles (85)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (17779)
-
Revision 1cda057261 : Refactor common code into a function Change-Id : Id156af5662ebe6fbe1cab636564f5f
15 avril 2014, par Yaowu XuChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Refactor common code into a functionChange-Id : Id156af5662ebe6fbe1cab636564f5f4bedb85ab0
-
What's common encoders and decodes on Android
31 mai 2018, par CoXierI do not know whether it’s suitable to ask this question here. If not, please tell me , thanks in advance.
Recently I am working on FFmpeg for Android. Everything works well but its size is too large so I decide to reduce the size.
I think I should at first only enable some encoders that I maybe use. What’s common encoders and decodes on Android ?
In additional, I can use
./configure --list-encoders
to show all available encodes. -
lavu/opt : consolidate common prologue for av_opt_set*()
28 septembre 2024, par Anton Khirnovlavu/opt : consolidate common prologue for av_opt_set*()
The options-setting functions share several operations at their
beginnings - locating the option and the object to operate on, handling
the read-only and deprecated flags, and constructing the pointer to the
target value. Some of the functions also do not perform some of the
checks, although they should. E.g. a deprecation warning is currently
only printed for av_opt_set().Introduce a prologue function that is called from every av_opt_set*()
and performs all these common initialization operations.