Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (84)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Amélioration de la version de base

    13 septembre 2013

    Jolie 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 (9783)

  • avfilter/af_afftdn : stop producing small impulsive noise at start of output

    14 mars 2022, par Paul B Mahol
    avfilter/af_afftdn : stop producing small impulsive noise at start of output
    
    • [DH] libavfilter/af_afftdn.c
  • random_seed : Improve behaviour with small timer increments with high precision timers

    29 janvier, par Martin Storsjö
    random_seed : Improve behaviour with small timer increments with high precision timers
    

    On a Zen 5, on Ubuntu 24.04 (with CLOCKS_PER_SEC 1000000), the
    value of clock() in this loop increments by 0 most of the time,
    and when it does increment, it usually increments by 1 compared
    to the previous round.

    Due to the "last_t + 2*last_td + (CLOCKS_PER_SEC > 1000) >= t"
    expression, we only manage to take one step forward in this loop
    (incrementing i) if clock() increments by 2, while it incremented
    by 0 in the previous iteration (last_td).

    This is similar to the change done in
    c4152fc42e480c41efb7f761b1bbe5f0bc43d5bc, to speed it up on
    systems with very small CLOCKS_PER_SEC. However in this case,
    CLOCKS_PER_SEC is still very large, but the machine is fast enough
    to hit every clock increment repeatedly.

    For this case, use the number of repetitions of each timer value
    as entropy source ; require a change in the number of repetitions
    in order to proceed to the next buffer index.

    This helps the fate-random-seed test to actually terminate within
    a reasonable time on such a system (where it previously could hang,
    running for many minutes).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/random_seed.c
  • Ffmpeg & PHP - Small Clip with Good Quality

    14 novembre 2013, par FakeHeal

    what are the best options to keep video in nearly good quality while converting it to flv and shrinking its size ?

    I use the followin code now :

    exec("ffmpeg -i $faila -sameq -s 600x450  -ar 44100 $file_final");