Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (96)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

Sur d’autres sites (6489)

  • lavf/http: add support for reading streamcast metadata

    26 juin 2013, par wm4
    lavf/http: add support for reading streamcast metadata
    

    Allow applications to request reading streamcast metadata. This uses
    AVOptions as API, and requires the application to explicitly request
    and read metadata. Metadata can be updated mid-stream ; if an
    application is interested in that, it has to poll for the data by
    reading the "icy_metadata_packet" option in regular intervals.

    There doesn’t seem to be a nice way to transfer the metadata in a nicer
    way. Converting the metadata to ID3v2 tags might be a nice idea, but
    the libavformat mp3 demuxer doesn’t seem to read these tags mid-stream,
    and even then we couldn’t guarantee that tags are not inserted in the
    middle of mp3 packet data.

    This commit provides the minimum to enable applications to retrieve
    this information at all.

    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
    • [DH] libavformat/version.h
  • Fix the timeout option not working when connecting to a HTTP url that requires authen...

    15 novembre 2014, par Brandon Lees
    Fix the timeout option not working when connecting to a HTTP url that requires authentication.
    

    In http_open_cnx, the patch restores the AVDictionary if connection needs to be re-tried
    because of a authentication/redirect status code.

    Previously, if a 401/407/30x status code was encountered, http_open_cnx would restart at the redo label, but any options
    used by the underlying protocol would be missing because they were removed by the first attempt.

    Signed-off-by : Brandon Lees <brandon@n-hega.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • http: avoid logging reconnect warning if stream was aborted

    4 janvier 2018, par wm4
    http: avoid logging reconnect warning if stream was aborted
    

    If the stream was aborted using the libavformat interrupt callback, we
    don't want it to log the reconnect warning. (Exiting after logging this
    warning worked well, so this is only for avoiding the ugly warning.)

    • [DH] libavformat/http.c