
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (50)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
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 (...) -
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 (3755)
-
Evolution #2816 : Conserver un état complet du formulaire à travers les étapes CVT
10 août 2012, par RastaPopoulos -Un élément de réponse ici : http://drupal.stackexchange.com/questions/26004/where-is-form-state-stored-between-form-build-and-form-submit-functions Ce serait donc stocké dans une table.
-
x86inc : Clear __SECT__
26 mai 2015, par Timothy Gux86inc : Clear __SECT__
This commit silences warning(s) like :
libavcodec/x86/fft.asm:93 : warning : section flags ignored on section
redeclarationThe cause of this warning is that because `struc` and `endstruc` attempts to
revert to the previous section state [1]. The section state is stored in the
macro __SECT__, defined by x86inc.asm to be `.note.GNU-stack ...`, through the
`SECTION` directive [2]. Thus, the `.note.GNU-stack` section is defined twice
(once in x86inc.asm, once during `endstruc`), causing the warning.That is the first part of the commit : using the primitive `[section]` format
for .note.GNU-stack etc., which does not update `__SECT__` [2].That fixes only half of the problem. Even without any `SECTION` directives,
`__SECT__` is predefined as `.text`, which conflicting with the later
`SECTION_TEXT` (which expands to `.text align=16`).[1] : http://www.nasm.us/doc/nasmdoc6.html#section-6.4
[2] : http://www.nasm.us/doc/nasmdoc6.html#section-6.3Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Live webcam stream to mjpeg file [on hold]
20 mars 2018, par neph94I am looking for a way for ffmpeg or any other alternative to be able to continuously stream data to an mjpeg (or any other) file. There would be a size limitation to it. When exceeded oldest frames would just be removed to make space.
Basically, what I am looking is ffserver with an option to stream locally to a file without serving it on an HTTP server.