
Recherche avancée
Autres articles (55)
-
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 (...) -
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 (7985)
-
Anomalie #3181 (Nouveau) : mots et groupes - API d’édition des objets
7 mars 2014, par Sylvain LesageLes fonctions d’action du plugin mots ne semblent pas suivre les mêmes règles que l’API d’édition des objets, ce qui en permet pas d’utiliser ces fonctions génériques pour les mots ou les groupes de mots (me semble-t-il). Est-il envisageable de les adapter au format défini par l’API ?
Insertion¶
API : objet_inserer
bool | int objet_inserer( string $objet , int $id_parent = null , array | null $set = null )
Mot : mot_inserer
int | bool mot_inserer( int $id_groupe )
Groupe de mots : groupemots_inserer
int | bool groupemots_inserer( string $table = ’’ )
Modification¶
API : objet_modifier
mixed | string objet_modifier( string $objet , int $id , array | null $set = null )
Mot : mot_modifier
string | null mot_modifier( int $id_mot , array | null $set = null )
Groupe mots : groupemots_modifier
string | null groupemots_modifier( int $id_groupe , array | null $set = null )
-
Anomalie #3575 (Nouveau) : Regression GD2
28 octobre 2015, par dani-belvil-net -Nomadgroup points out a functional regression on spip 3.0.20. compared to 3.0.17 :
Mensaje reenviado --------
Asunto : [Spip-es] Arreglado el problema del GD2
Fecha : Mon, 26 Oct 2015 22:02:48 -0500
De : Spip Nomadagroup <spip@nomadagroup.com>
A : spip <spip-es@rezo.net>Bueno como mis presentimientos eran ciertos. El problema es de la versión del spip 3.0.20. Me atrase a la versión 3.0.17 y anda bien el el GD2.
GD filters don’t work :El 26/10/15 a las 16:49, Spip Nomadagroup escibió : > Resulta que estoy queriendo usar la extensión para recortar unas imágenes pero no funciona... > me esta arrojando errores (Error : filtro image_recadre no definido) o no hace la modificación.
-
Correcting color cast with ffmpeg
16 mai 2018, par Henry HI have two videos that have a pretty significant blue cast to them. I took some stills at the same time and I’m happy enough with the colors on those and I’d like to re-encode the videos, adjusting the colors to something similar to the stills.
- A frame from the original video can be seen here : http://www.dotrose.com/temp/img_20180513_153484_original.png
- An attempt at correcting the color, which would be acceptable : http://www.dotrose.com/temp/img_20180513_153484_corrected.png
- A still image taken at the same time (but with some help from a flash) : http://www.dotrose.com/temp/img_20180513_153476.jpg
I understand I could either create a large collection of jpg images from the video and color correct them before reassembling them into a new video or I could use ffmpeg’s color level’s filter to do it directly. What I don’t know is how to get the numbers to pass to the filter. I’m assuming I want to do something like this :
ffmpeg -i video.mov -vf "colorlevels=rimin=##/255:gimin=##/255:bimin=#/255:rimax=###/255:gimax=###/255:bimax=###/255, eq=gamma=#.##" -y out.mov
How do I get the values to use for each of the r, g, and b min and max settings and gamma to use in place of the ###s ? Assuming this is the right approach, of course.
Update : Perhaps this question would be better asked in a forum for gimp or photoshop. But I know how to adjust the color in those. What I need to know is how I translate those changes to what ffmpeg is expecting.