Recherche avancée

Médias (91)

Autres articles (42)

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

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

Sur d’autres sites (6051)

  • Value range for AVCodecContex::global_quality, ::compression_level and AVFrame::quality

    27 février 2019, par Bim

    I’m trying to compress video using different codecs (WMV, MP4, H264, VP8, VP9) using FFmpeg / libav. I’m unsure on how to set the global and per-frame quality values. Even the range of values is unclear to me. The docs are not helpful.
    Currently I’m using :

    AVCodecContex::global_quality = FF_QP2LAMBDA * quality; // no idea about range, default seems to be 0
    AVCodecContex::compression_level = 0; // There is FF_COMPRESSION_DEFAULT (-1), which seems to be the default
    AVFrame::quality = FF_LAMBDA_MAX * quality; // docs say range is [1, FF_LAMBDA_MAX], default seems to be 0

    quality is in the range [0,1], where 0 means best image quality. Only 0 seems to do anything for me and leads to ok-quality videos. All other values produce low-quality output.
    Any clarification on how to set these values is welcome.

  • http: Improve handling of Content-Range with Transfer-Encoding:chunked

    2 février 2022, par Justin Ruggles
    http: Improve handling of Content-Range with Transfer-Encoding:chunked
    

    When Transfer-Encoding:chunked is used, the client must ignore a
    Content-Length header, if present. However, it should not ignore a
    Content-Range header, which also includes the full size of the
    entity.

    • [DH] libavformat/http.c
  • ffmpeg - wrong length of video

    29 mars 2012, par Victor

    I use ffmpeg to convert a video from mp4 to flv and mpg formats. Just rough conversion with few params :

    ffmpeg -i my_file.mp4 -an -f flv my_new_file.flv

    (I don't need sound so I specified -an)

    When I convert file with 2:23 length I get 0:23 length of flv(or mpg) files. Why does that happen ?