Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (6370)

  • avfilter/vf_fps : properly preserve CEA-708 captions

    5 mai 2023, par Devin Heitmueller
    avfilter/vf_fps : properly preserve CEA-708 captions
    

    The existing implementation made an attempt to remove duplicate
    captions if increasing the framerate, but made no attempt to
    handle reducing the framerate, nor did it rewrite the caption
    payloads to have the appropriate cc_count (e.g. the cc_count needs
    to change from 20 to 10 when going from 1080i59 to 720p59 and
    vice-versa).

    Make use of the new ccfifo mechanism to ensure that caption data
    is properly preserved.

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/vf_fps.c
  • avcodec/vaapi_encode_vp9 : fix > 4k encode fail issue

    12 avril 2021, par Zhang yuankun
    avcodec/vaapi_encode_vp9 : fix > 4k encode fail issue
    

    This patch will fix following command :
    ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i input.264 \
    - vf 'scale_vaapi=w=7680:h=4096' -c:v vp9_vaapi output.ivf

    Max width of a vp9 tile is 4096. If the source frame > 4096, we need split to multiple tiles.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Zhang yuankun <yuankunx.zhang@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/vaapi_encode_vp9.c
  • swscale/swscale_unscaled : fix gbrap10be md5 different on big endian system

    30 octobre 2019, par Limin Wang
    swscale/swscale_unscaled : fix gbrap10be md5 different on big endian system
    

    You can reproduce it by below command :
    ./ffmpeg -f lavfi -i "testsrc=duration=1:rate=30" -vf format=gbrap10 -vcodec rawvideo \
    -pix_fmt gbrap10le -flags +bitexact -sws_flags +accurate_rnd+bitexact -fflags +bitexact \
    -frames:v 1 -f nut md5 :

    little-endian :
    f91e2edd8098276579c1929e5e160416
    big-endian :
    ba4d011dbbdc78ccbf6cc7d698630929

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libswscale/swscale_unscaled.c