Recherche avancée

Médias (91)

Autres articles (101)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8591)

  • avformat/http: Add support for Retry-After header

    22 avril 2024, par Derek Buitenhuis
    avformat/http: Add support for Retry-After header
    

    429 and 503 codes can, and often do (e.g. all Google Cloud
    Storage URLs can), return a Retry-After header with the error,
    indicating how long to wait, asd either a date, or in seconds,
    before retrying again. If it is not respected by, for example,
    using our default backoff stratetgy instead, chances of success
    are very unlikely.

    Some references :
    * https://datatracker.ietf.org/doc/html/rfc6585
    * https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.3

    This adds an AVOption to respect that header.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
    • [DH] libavformat/version.h
  • http: do not print a warning message for expired cookies

    8 mars 2018, par wm4
    http: do not print a warning message for expired cookies
    

    libavformat prints a warning that the cookie couldn't be parsed (see
    callers of parse_cookie()). This is obviously not true - it could be
    parsed, but was simply ignored. Don't return an error to avoid the
    warning.

    • [DH] libavformat/http.c
  • How to record the http live streaming from an IP Cam

    26 novembre 2012, par abhishek

    I have created the application in which the client can view the ip camera which is giving
    an http live stream of MJPEG using this link
    Android ICS and MJPEG using AsyncTask

    Now i want the user to record the video into its memory card .
    I have googled for a while and the only two approaches which came in my mind :-

    1. Either i keep storing the jpeg images and when user clicks stop recording then i
      somehow clip all the images as to provide a 3GP video or some other file format.
      But i don't know how to create the video from all the images and will this be an efficient
      approach or not.

    2. Or i do ffmpeg and in this case i will have to deal with NDK and it seems to be a longer
      path which may lead to nowhere :P

    So is FFMPEG a better option ? If yes please share some links or is the first option better.
    Thanks in advance