Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (93)

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

  • avformat/http: add reconnect_delay_max option

    7 septembre 2015, par Michael Niedermayer
    avformat/http: add reconnect_delay_max option
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
  • FFmpeg : stream output to server over HTTP

    14 mars 2019, par glenn

    I am trying to send FFmpeg output over HTTP stream to a web server backend.

    The FFmpeg client is sitting behind a NAT so I need to stream outbound to server, rather than have server request stream.

    So far, while testing on my local network I am using these commands, which works, but uses TCP rather than HTTP. I need to use HTTP only.

    From Client :

    ffmpeg -re -i hq-video.mp4 -c:v libx264 -an -bsf h264_mp4toannexb -f mpegts -chunked_post 1 http://0.0.0.0:5558/mpegts

    Using Wireshark, I see that the output is being sent still over TCP, rather than HTTP. However, for my use case I require HTTP encapsulation.

    FFmpeg protocol documentation seems to indicate that this is possible but I have not been able to achieve the desired results after trying many different ways.

    Please help me understand what I can do to force HTTP output. The desired behavior is to send HTTP output direct to server (without server first sending out request to client) using PUT or POST headers.

    Thank You,

  • http: Reduce scope of a variable in parse_content_encoding()

    13 août 2014, par Diego Biurrun
    http: Reduce scope of a variable in parse_content_encoding()
    

    Also fixes an unused variable warning with zlib disabled.

    • [DH] libavformat/http.c