
Recherche avancée
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (8282)
-
avfilter/avf_showspectrum : fix stride and set scale
18 novembre 2022, par Paul B Mahol -
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 ?
-
libavfilter/avf_showwaves : make sqrt and cbrt scale option values available to showwa...
9 mars 2017, par Moritz Barsnicklibavfilter/avf_showwaves : make sqrt and cbrt scale option values available to showwavespic by name
The ’sqrt’ and ’cbrt’ scalers were added in commit
80262d8c86e94ff9a4bb3a9e3c2d734e04ccb399, but their symbolic option values
only made available to the showwaves filter, not showwavespic, despite
the scalers working properly by their numerical option values.Signed-off-by : Moritz Barsnick <barsnick@gmx.net>