Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (84)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Revision e55f60240a : Implement variance-based adaptive quantization This should be similar to what x

    7 octobre 2013, par Guillaume Martres

    Changed Paths :
     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_rdopt.h


     Add /vp9/encoder/vp9_vaq.c


     Add /vp9/encoder/vp9_vaq.h


     Modify /vp9/encoder/vp9_variance.h


     Modify /vp9/encoder/vp9_variance_c.c


     Modify /vp9/vp9cx.mk



    Implement variance-based adaptive quantization

    This should be similar to what x264 does with —aq-mode 1.
    It works well with clips like parkjoy and touhou
    (http://x264.nl/developers/Dark_Shikari/LosslessTouhou.mkv).
    At low bitrates, the segmentation signaling overhead may negate the
    benefits of this feature.

    (PGW) Default changed to feature OFF to allow provisional merge.
    Change-Id : I938abf9bb487e1d4ad3b0264ea03d9826275c70b

  • gdigrab : grab right desktop size if DPI in use, based on patch from Alexander Brotzge

    5 octobre 2015, par Matt Oliver
    gdigrab : grab right desktop size if DPI in use, based on patch from Alexander Brotzge
    

    Signed-off-by : Matt Oliver <protogonoi@gmail.com>

    • [DH] libavdevice/gdigrab.c
  • dashenc : separate segments based on current segment duration

    29 janvier 2017, par Peter Große
    dashenc : separate segments based on current segment duration
    

    The current implementation creates new segments comparing

    pkt->pts - first_pts > nb_segs * min_seg_duration

    This works fine, but if the keyframe interval is smaller than "min_seg_duration"
    segments shorter than the minimum segment duration are created.

    Example : keyint=50, min_seg_duration=3000000
    segment 1 contains keyframe 1 (duration=2s < total_duration=3s)
    and keyframe 2 (duration=4s >= total_duration=3s)
    segment 2 contains keyframe 3 (duration=6s >= total_duration=6s)
    segment 3 contains keyframe 4 (duration=8s < total_duration=9s)
    and keyframe 5 (duration=10s >= total_duration=9s)
    ...

    Segment 2 is only 2s long, shorter than min_seg_duration = 3s.

    To fix this, new segments are created based on the actual written duration.
    Otherwise the option name "min_seg_duration" is misleading.

    Signed-off-by : Peter Große <pegro@friiks.de>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/dashenc.c