Recherche avancée

Médias (91)

Autres articles (100)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • How to catch images from a http webcam livestream

    1er février 2016, par mcExchange

    I need to capture images from a webcam livestream that is provided here

    Has anyone an idea how to do it ?

    I found this answer but it doesn’t help me. When I enter

    ffmpeg -i rtmp://85.126.233.214/heidelberg-live/stream1.flv -r 1 -f image2 -vcodec mjpeg captured%d.jpg

    It returns

    [rtmp @ 0xc45f40] Cannot open connection tcp://85.126.233.214:1935
    rtmp://85.126.233.214/heidelberg-live/stream1.flv: Connection timed out
    Conversion failed!

    This is what the livestream part of the website looks like :

  • lavf/http: remove special case for cookies attributes.

    17 août 2014, par Nicolas George
    lavf/http: remove special case for cookies attributes.
    

    With the previous change, unknown attributes are all ignored,
    as specified by the RFC.

    • [DH] libavformat/http.c
  • Seek and cut mp4 http stream on the fly with mp4Parser java library

    27 septembre 2016, par xyman

    Is it possible to create new mp4 file(which will be just one small video segment of full length mp4 file) from mp4 http stream without downloading the whole mp4 file to disk and feeding it to mp4Parser. If any other stable java library exist which could do the sam job please point me to it.

    I know it can be done with ffmpeg as explained in this post but i want to avoid using full feature heavy library(cutting the mp4 file doesn’t involve transcoding the video, this operation just repacks the mp4 file) for just cutting the mp4 file.

    ffmpeg -ss 00:01:00.000 -i "http://myfile.mp4" -t 00:02:00.000 -c:a copy -c:v copy output.mp4