Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7721)

  • avcodec/aom_film_grain : add AOM film grain synthesis

    4 octobre 2023, par Niklas Haas
    avcodec/aom_film_grain : add AOM film grain synthesis
    

    Implementation copied wholesale from dav1d, sans SIMD, under permissive
    license. This implementation was extensively verified to be bit-exact,
    so it serves as a much better starting point than trying to re-engineer
    this from scratch for no reason. (I also authored the original
    implementation in dav1d, so any "clean room" implementation would end up
    looking much the same, anyway)

    The notable changes I had to make while adapting this from the dav1d
    code-base to the FFmpeg codebase include :

    - reordering variable declarations to avoid triggering warnings
    - replacing several inline helpers by avutil equivalents
    - changing code that accesses frame metadata
    - replacing raw plane copying logic by av_image_copy_plane

    Apart from this, the implementation is basically unmodified.

    • [DH] libavcodec/aom_film_grain.c
    • [DH] libavcodec/aom_film_grain.h
    • [DH] libavcodec/aom_film_grain_template.c
  • yuv4mpeg : Correctly round chroma up for odd luma sizes

    25 juin 2013, par Ronald S. Bultje
    yuv4mpeg : Correctly round chroma up for odd luma sizes
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/yuv4mpeg.c
  • How to send traffic to all pods of service instead of round robin method in kubernetes

    10 janvier 2018, par MDK

    I want to build a cluster that contains a single pod that running ffmpeg to convert input video to different qualities and send the result to a nginx cluster to serve it.
    for nginx cluster I have a kubernetes service.
    if ffmpeg pod wants to push video (which is in rtmp format) to nginx cluster each nginx pod receive some part of video and when a user connects to nginx from outside just get some packets.
    because when ffmpeg pod send video to nginx service kubernetes send packet to nginx pods in round-robin all nginx pods can not get full live video traffic.
    so I need to send traffic from ffmpeg to all pods of nginx services.
    but I don’t know how should I change routing methods to achieve this.