Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (76)

  • 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 ;

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7087)

  • Merge commit ’225e84e74544062706c0159ec0737b0e1d40915f’

    29 février 2016, par Derek Buitenhuis
    Merge commit ’225e84e74544062706c0159ec0737b0e1d40915f’
    

    * commit ’225e84e74544062706c0159ec0737b0e1d40915f’ :
    hls : disallow opening nested files in child demuxers

    Merged-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/hls.c
  • Revision fe776ce61f : add range_check for fdct in vp10 Unify the style of fdct4() fdct8() fdct16() Ad

    29 août 2015, par Angie Chiang

    Changed Paths :
     Modify /test/test.mk


     Add /test/vp10_dct_test.cc


     Modify /vp10/encoder/dct.c



    add range_check for fdct in vp10

    Unify the style of fdct4() fdct8() fdct16()
    Add fdct32()
    Add range_check() at each stage
    Add unit test at ../../test/vp10_dct_test.cc

    Change-Id : I13f76d9046c3ea473c82024b09a5bc8662e2c28e

  • How to effectively kill a frozen subprocess in Python ?

    2 janvier 2014, par Konos5

    I am dealing with a rather odd issue.

    I've written a Python wrapper (in Python 2.6.6) for a year old version of ffmpeg. The problem is that given a very particular video, ffmpeg stops working normally (clunky output, full cpu usage, no end stage etc) and takes the python interpreter down with it.

    Now, if I run ffmpeg with my encoding options directly from a terminal and the problematic video as input, ffmpeg won't immediately respond to Ctrl-c. I'll have to wait for a hefty of 10 seconds or more before it exits and gives me back the prompt. However if I use a 'healthy' video instead, it will simply print Received signal 2: terminating. and gracefully exit.

    In the python wrapper I use p.kill() to no effect. The behavior is exactly the same a.k.a I have to wait 10 sec before the program exits. How can I immediately stop ffmpeg when it freezes with some problematic video ?

    Note that if I do a double Ctrl-c I get the prompt back immediately no matter what.