
Recherche avancée
Autres articles (83)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (14468)
-
configure : Fix check_exec_crash for ICL support
25 mai 2013, par Laurentconfigure : Fix check_exec_crash for ICL support
Change the check_exec_crash test to use a function pointer instead of
simply calling the function. The EBP availability test will crash when
compiled with ICL likely due to compiler optimization shenanigans.Originally the check_exec_crash code was moved out of main to fix a
problem with gcc’s treatment of non-leaf main on x86_32. Libav already
moved the code out of main but the addition of the function pointer will
prevent any inlining which fixes the remaining problem.A function pointer is used since it is compiler agnostic (as opposed to
say __attribute__ ((noinline)) which would only work with gcc compatible
compilers).Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
-
lavc : move the vaapi encoders further down in the list of codecs
15 avril 2016, par Anton Khirnovlavc : move the vaapi encoders further down in the list of codecs
Right now they are the first encoders for those codecs in the list, so
they are selected when the caller requests a codec by id.
Since they require special treatment, they should not be selected by
default if there are other encoders (e.g. libx264/5) available. -
ffmpeg rawvideo image2pipe format ?
24 août 2020, par Sittin HawkI just wanted to confirm how to interpret the results of :


ffmpeg.exe -i inputMov.avi -f image2pipe -pix_fmt gray -vcodec rawvideo -



so if I understood this correctly, -f image2pipe allows piping the frames out, -pix_fmt gray gives me grayscale, and -vcodec rawvideo indicates that I want raw pixel data (no compression). The final '-' instructs to stream to the standard output, at which point my C# program can redirect the standard output to collect the bytes.


So this looks like it's almost working. I get a few lines of string responses containing metadata, and then I interpret the remaining bytes as raw grayscale values. The first byte of the "remaining bytes" is the top-left pixel, then the pixel to the right of that, and so on.


Is this correct ?