Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (39)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (8142)

  • Evolution #3062 (Nouveau) : Suggestion : ?exec= admin_vider

    24 septembre 2013, par YannX spip

    On doit souvent rappeler aux utilisateurs de "vider les caches" (y compris celui du navigateur utilisé sur le poste client).

    Pour faciliter le travail à ceux qui ne connaissent pas toujours comment faire....
    ne pourrait-on rajouter un pavé-boite dans cette page (assez légère) qui
    - permettrait d’effectuer cette opération (en Ajax ?) sur le client
    - indiquerait (si c’est possible) comment le faire de façon intrinsèque au navigateur utilisé..

    Ou bien est-ce impossible à imaginer....

  • How to stream from ffmpeg to multiple udp clients ?

    24 mars 2021, par SelectedVertex

    Hello I'm streaming my own virtual camera to a localhost using ffmpeg using :

    


    ffmpeg -re -f dshow -i video="VTX_VirtualCam":audio="VTX_VirtualMic" -preset ultrafast -tune zerolatency -b 100000k -f mpegts udp://127.0.0.1:22588 -fflags nobuffer


    


    It works fine but I only can connect to it from single client at the same time but I want to connect from different and multiple clients.

    


    If I be connected and use another client it throws :

    


    


    bind failed : Error number -10048 occurred

    


    


    How can I do this ?
I have c++/c# programming skills as well if needed.

    


  • Try to close SDL_CloseAudio has deadlock when RTSP server is down

    24 juillet 2014, par Evan Lin

    I try to using live555(a.k.a OpenRTSP) to setup RTSP server and client.
    My Client application using live555, ffmpeg and SDL as streaming, decode and playback.

    I found it might have deadlock if I try to call SDL_CloseAudio as following situation :

    • When RTSP is down.
    • When network is broken.

    I am exclude it related to any timing issue because it works well if I try to call SDL_CloseAudio when server is not down.

    Also, I have tried following API but still not work :

    • Try SDL_PauseAudio before close it.
    • Try SDL_UnlockAudio before close it.

    Any idea for this ?