Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (96)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6918)

  • http: add hack to make streams served by MediaGateway not seekable

    3 novembre 2013, par wm4
    http: add hack to make streams served by MediaGateway not seekable
    

    These streams are reported as seekable, but all tests show they are not,
    and the server merely pretends the streams are seekable. The server
    responds with :

    content-range : bytes 0-1999999999/2000000000

    Range requests seem to be correctly answered, but the actual data
    returned at the same offset is different. Assume this is a bug in the
    server software. The server identifies itself as :

    Server : MediaGateway 3.5.2-001

    Add a hack that checks the server name, and disables seeking in this
    case.

    Test URL : http://8283.live.streamtheworld.com:80/CBC_R1_VCR_H_SC

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • 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