Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (88)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (14697)

  • vc2enc : do not allocate packet until exact frame size is known

    2 mars 2016, par Rostislav Pehlivanov
    vc2enc : do not allocate packet until exact frame size is known
    

    This commit solves most of the crashes and issues with the encoder and
    the bitrate setting. Now the encoder will always allocate the absolute
    lowest amount of memory regardless of what the bitrate has been set to.
    Therefore if a user inputs a very low bitrate the encoder will use the
    maximum possible quantization (basically zero out all coefficients),
    allocate a packet and encode it. There is no coupling between the
    bitrate and the allocation size and so no crashes because the buffer
    isn’t large enough.

    The maximum quantizer was raised to the size of the table now to both
    keep the overshoot at ridiculous bitrates low and to improve quality
    with higher bit depths (since the coefficients grow larger per transform
    quantizing them to the same relative level requires larger quantization
    indices).

    Since the quantization index start follows the previous quantization
    index for that slice, the quantization step was reduced to a static 1
    to improve performance. Previously with quant/5 the step was usually
    set to 0 upon start (and was later clipped to 1), that isn’t a big change.
    As the step size increases so does the amount of bits leftover and so
    the redistribution algorithm has to iterate more and thus waste more
    time.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/vc2enc.c
  • lavf/vplayerdec : support time durations with no ms specified

    7 mars 2016, par Clément Bœsch
    lavf/vplayerdec : support time durations with no ms specified
    

    Example found in the wild :

    0:00:03:25.000
    0:01:47:A legend is sung
    0:01:50:Of when England was young
    0:01:53:And knights|were brave and bold
    0:01:59:The good king had died

    Reported-by : wm4

    • [DH] libavformat/vplayerdec.c
  • avformat/concatdec : set safe mode to enabled instead of auto

    19 janvier 2016, par Michael Niedermayer
    avformat/concatdec : set safe mode to enabled instead of auto
    

    This is safer, as a selected demuxer could still mean that it was auto-detected
    by a user application

    Reviewed-previously-by : Nicolas George <george@nsup.org>
    Reviewed-previously-by : Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/demuxers.texi
    • [DH] libavformat/concatdec.c