Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (68)

  • Other interesting software

    13 avril 2011, par

    We 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, par

    La 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, par

    Afin 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
    avfilter/avf_showvolume : Fix "warning : comparison of unsigned expression < 0 is always false"
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/avf_showvolume.c
  • vp8/armv6 : mc : avoid boolean expression in calculation

    9 juillet 2016, par Janne Grunau
    vp8/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.

    • [DBH] libavcodec/arm/vp8dsp_armv6.S
  • Ffmpeg mathematical "expression" syntax in filters

    9 novembre 2022, par Jason C

    Multiple ffmpeg filters take a mathematical expression as a parameter, for example setpts and select (examples from docs) :

    &#xA;

    setpts=&#x27;1/(25*TB) * (N &#x2B; 0.05 * sin(N*2*PI/25))&#x27;;&#xA;select=select=between(t\,10\,20)&#xA;

    &#xA;

    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 ?

    &#xA;

    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...?

    &#xA;