Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (91)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (9725)

  • libavformat/asfdec : Fix regression bug when reading image attachments

    19 avril, par softworkz
    libavformat/asfdec : Fix regression bug when reading image attachments
    

    Commit c8140fe7324f264faacf7395b27e12531d1f13f7 had introduced
    a check for value_len > UINT16_MAX.
    As a consequence, attached images of sizes larger than UINT16_MAX
    could no longer be read.

    This is a minimal fix of the regression, avoiding the controversies
    of my earlier submission regarding int type handling in asfdec.

    Signed-off-by : softworkz <softworkz@hotmail.com>

    • [DH] libavformat/asfdec_f.c
  • avutil/tablegen : add tablegen libm compatibility shims

    26 novembre 2015, par Ganesh Ajjanagadde
    avutil/tablegen : add tablegen libm compatibility shims
    

    This is useful for build-time table generation (—enable-hardcoded-tables),
    by providing compat shims for hosts that have broken libms.

    This file is deliberately kept minimal ; functions can always be added on
    an as-needed basis.

    Reviewed-by : Clément Bœsch <u@pkh.me>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavutil/tablegen.h
  • Make picture from stream(webcam) by ffmpeg [on hold]

    29 novembre 2018, par SkiF

    I have webcam and I want to store video from it. I need to store just last one hour. Can I limit space or time for ffmpeg out file ?

    Second and the main problem is make pictures every minute. I want make pictures from actual webcam state. with minimal delay.

    Based on my current knowledge I think the best solution is make 3 processes.
    The Fist will capture video for one minute and there will be 60 files with time stamp in name and every minutes ffmpeg will be restarted by script and script remove the oldest file. The Second will share video steam and The Third will take last frame from the newest video file. Maybe some one know better solution for this problem.

    I think bash is the best tool for this problem. Solution is based on c++ or python also welcome.