Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (28)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (3943)

  • fftools/ffmpeg_filter : honor -reinit_filters 0 even on changed display matrix

    29 décembre 2023, par Marton Balint
    fftools/ffmpeg_filter : honor -reinit_filters 0 even on changed display matrix
    

    Not sure about honoring it also in case of a hwaccel change, so left that as is
    for now.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] fftools/ffmpeg_filter.c
  • avcodec/pdvdec : honor the requested avctx->skip_frame value

    20 avril 2023, par James Almer
    avcodec/pdvdec : honor the requested avctx->skip_frame value
    

    The decoder is tagged as being FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM, so might as
    well make use of it.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/pdvdec.c
  • http: honor response headers in redirect caching

    10 janvier 2022, par erankor
    http: honor response headers in redirect caching
    

    add a dictionary that maps "src_url" -> "expiry ;dst_url", the dictionary
    is checked before issuing an http request, and updated after getting a
    3xx redirect response.

    the cache expiry is determined according to the following (in desc
    priority) -
    1. Expires header
    2. Cache-Control containing no-cache/no-store (disables caching)
    3. Cache-Control s-maxage/max-age
    4. Http codes 301/308 are cached indefinitely, other codes are not
    cached

    • [DH] libavformat/http.c