Recherche avancée

Médias (91)

Autres articles (55)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

Sur d’autres sites (7447)

  • FFMPEG RTSP client sending unsolicited error response

    22 mai 2018, par Jim Rhodes

    I have a server that pulls live video streams from IP cameras and makes those streams available to clients using RTSP. If I view one of the streams from a PC using ffplay.exe, the stream displays properly and I can pause and resume the stream without any issues.

    I have an iOS app originally written by someone else that uses ffmpeg as the RTSP client and I am seeing odd behavior when I try to pause a stream. ffmpeg is version 3.4 and is included in the iOS project as static libraries. I do not know what options were used to build the ffmpeg libraries.

    The problem is that after the iOS client sends a PAUSE command via av_read_pause(AVFormatContext*) and the server responds with "RTSP/1.0 200 OK", the iOS app sends "RTSP/1.0 501 Not Implemented" back to the server. An RTSP client should never be sending an RTSP response. I have to assume that this is a bug in ffmpeg. Are there known issues with ffmpeg’s handling of PAUSE ? Should I be using av_read_pause() to pause the stream ?

  • Run fluent-ffmpeg in browser javascript (client side)

    2 juin 2021, par Fabiotk

    In my program I use fluent-ffmpeg to convert a video into streamable HLS format (m3u8). but this is very cpu heavy and I'm wondering if it could be run at client-side in the browser. In this manner I'll be offloading some work from the server. If so, how to install it to be available in html <code class="echappe-js">&lt;script&gt;&lt;/code&gt; tag? I also tried asking in their github directly but no response so far...&lt;/p&gt;&amp;#xA;

  • Video streaming from server to client

    28 juillet 2016, par Johnnylin

    Currently, my program can use ffmpeg to encode yuv420p image into H264 video format and then output to network stream using udp protocol. Then on the client side, a GUI program using VLC library can read the network stream and display the video stream.

    HOWEVER, Using above method, I have to know every client side IP address and recompile the server code to send the network stream to client’s IP address using UDP. I want to implement something like, on the server side, the program will listen to a port (e.g. 1234), waiting for clients’ GUI program to connect, then on the client side, people can login to the GUI program in different computers with different IP addresses to connect to the server asking for network stream.

    What else should I do with my current program ? How can I do that ? Can someone show me a minimum example ?

    EDIT

    I have set up a ffserver, and used my program to send stream data to this ip address :

    http://localhost:8090/feed.ffm

    But I got this error :

    enter image description here

    My configuration is pretty simple.

    enter image description here

    I do understand why this happened. The server side show no error at all. Can anyone explain ? I tried to find solutions to this, but nothing succeeded.