Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (101)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (6660)

  • libavformat/http: add support for headers option in listen mode

    11 août 2016, par Moritz Barsnick
    libavformat/http: add support for headers option in listen mode
    

    Instead of silently ignoring the headers option in listen mode, use
    the provided headers.

    Signed-off-by : Moritz Barsnick <barsnick@gmx.net>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/http.c
  • Stream OpenCV frames to http using ffmpeg

    15 mars 2023, par Christoph Meyer

    I have a small Python OpenCV project and would like to stream my processed frames to HTTP using ffmpeg.

    &#xA;

    For this I used the following sources :&#xA;Pipe and OpenCV to FFmpeg with audio streaming RTMP in Python&#xA;and&#xA;https://github.com/kkroening/ffmpeg-python/blob/master/examples/README.md#stream-from-a-local-video-to-http-server

    &#xA;

    To make things more readable I used the ffmpeg-python library but as far as I understand, it doesn't matter if I open a pipe using subprocess or use the library.

    &#xA;

    The problem that I have is, that I always get a broken pipe or "Connection refused" when I open the stream with ffplay.

    &#xA;

    import ffmpeg&#xA;import cv2&#xA;&#xA;video_format = "flv"&#xA;server_url = "http://localhost:8080"&#xA;&#xA;cap = cv2.VideoCapture(1)&#xA;width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))&#xA;height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))&#xA;&#xA;&#xA;process = (&#xA;    ffmpeg&#xA;    .input(&#x27;pipe:&#x27;, format=&#x27;rawvideo&#x27;,codec="rawvideo", pix_fmt=&#x27;bgr24&#x27;, s=&#x27;{}x{}&#x27;.format(width, height))&#xA;    .output(&#xA;        server_url,&#xA;        #codec = "copy", # use same codecs of the original video&#xA;        listen=1, # enables HTTP server&#xA;        codec="libx264",&#xA;        pix_fmt="yuv420p",&#xA;        preset="ultrafast",&#xA;        f=video_format)&#xA;    .overwrite_output()&#xA;    .run()&#xA;)&#xA;&#xA;while True:&#xA;    ret, frame = cap.read()&#xA;    if not ret:&#xA;        break&#xA;    print("Sending frame")&#xA;    process.stdin.write(frame.tobytes())&#xA;

    &#xA;

    I also tried to stream using only ffmpeg and FaceTime and that works as i expected.

    &#xA;

    My operation system is MacOS 12.3

    &#xA;

    Maybe someone knows how to fix this.

    &#xA;

    Thanks for your help

    &#xA;

    Chris

    &#xA;

  • cannot open http://[wowza-ip-address]:8086/streammanager

    26 août 2017, par mahdi gh

    I’m following this guide for publishing mpegts to wowza server. but when I try to navigate to http://[wowza-ip-address]:8086/streammanager it redirects to http://[wowza-ip-address]:8086/enginemanager

    What should I do ?
    here is the link for guide page : How to publish and play a live stream (MPEG-TS based encoder)