
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (68)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (8931)
-
avfilter/avf_showvolume : Fix "warning : comparison of unsigned expression 0 is alway...
29 novembre 2015, par Michael Niedermayer -
vp8/armv6 : mc : avoid boolean expression in calculation
9 juillet 2016, par Janne Grunauvp8/armv6 : mc : avoid boolean expression in calculation
GNU as evaluates true as ’-1’ while Apple’s variant and llvm’s internal
assembler evaluate it as ’1’. The best way to avoid this madness is to
eliminate boolean expressions instead of trying to fix it with
preprocessor directives. Use a direct formula to calculate the
required temporary space on the stack in
ff_put_vp8_epel,bilin4,8,16_h[246]v[246]_armv6().Fixes a checkasm segfault in vp8dsp.mc when using llvm’s internal
assembler for a non-Apple target. -
Ffmpeg mathematical "expression" syntax in filters
9 novembre 2022, par Jason CMultiple ffmpeg filters take a mathematical expression as a parameter, for example
setpts
andselect
(examples from docs) :

setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))';
select=select=between(t\,10\,20)



The docs for each filter are generally good about listing available variables for that specific filter, but the actual syntax of this expression appears (?) to be completely undocumented, despite its heavy use. For example, what functions are available (e.g.
sin
,between
) ? Are boolean combinations allowable and if so, what are the operators ? What other mathematical operators are available ?

What is the syntax of these expressions ? Or, at the very least, is some non-ffmpeg library parsing them and if so, what is it ? That way I can at least look up the syntax. Or have I missed some documentation section somewhere...?