Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (98)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

Sur d’autres sites (7503)

  • http: Do not try to make a new request when seeking past the end of the file

    20 février 2019, par Justin Ruggles
    http: Do not try to make a new request when seeking past the end of the file
    

    This avoids making invalid HTTP Range requests for a byte range past the
    known end of the file during a seek. Those requests generally return a HTTP
    response of 416 Range Not Satisfiable, which causes an error response.

    Reference : https://tools.ietf.org/html/rfc7233

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavformat/http.c
  • playing http video url using ffmpeg

    17 mai 2012, par Ranjith

    I am using libavcodec of ffmpeg to play a http video stream in my application.
    I have implemented my own video player for this.This player is working fine.

    Now, I want to show buffering status of video (what percentage of video is downloaded by ffmpeg). But I could not find any api or event for this.

  • avformat/http: Fix double-free on error

    20 janvier 2022, par Andreas Rheinhardt
    avformat/http: Fix double-free on error
    

    av_dict_set() with AV_DICT_DONT_STRDUP_VAL takes ownership
    of the string it is passed to as val ; this includes freeing it
    on error.

    Fixes Coverity issue #1497468.

    Reviewed-by : Eran Kornblau <eran.kornblau@kaltura.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/http.c