Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (49)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (8358)

  • IP camera livestream on server

    1er juillet 2015, par kunsti

    i have written an ASP.NET MVC Application.
    On the website is there are some ipcameras streams.
    They are inbounded with an image tag

    <img height='169' width='300' style='border:1px solid' src="http://xx.xx.xx.xxx/nphMotionJpeg?Resolution=320x180&amp;Quality=Standard" alt="Kamerastream" />

    Because of some changes of the accesslist it is not possibile for some users to see these streams anymore.

    The Windows server (a virtual machine) can proceed to this camera streams.
    The users which are not able to see the streams can reach the server.
    So my idea was to provide the stream by server instead of front end.
    I tried to do it via iis live smooth streaming.

    But I wasn’t able to find an introduction which I was able to understand.
    The one I unterstand is with Expression Encoder pro, which is not available for download anymore.

    I have also found FFMPEG but I do not no how tow ork with it.
    Is anyone out there who could explain it to me, knows a good tutorial or knows a better way to do what I want.

  • network : prevent SIGPIPE on OSX

    30 mai 2015, par wm4
    network : prevent SIGPIPE on OSX
    

    OSX does not know MSG_NOSIGNAL, and provides its own non-standard
    mechanism instead. I guess Apple hates standards.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/network.c
  • My RTMP server(freebsd) wont let me hear video when I play a huge file over the server itself :/

    19 avril 2021, par Engi Gang

    rm -rf /mnt/hls/loool && ffmpeg -re -i "$file" -c:v libx264 -c:a aac -b:v 300k -b:a 95k -f flv -flvflags no_duration_filesize rtmp ://lambright.xyz:1935/live/loool

    &#xA;

    any work around I literally cant play the audio :( I can only hear (my source file is an MKV and 3gb )

    &#xA;

    rtmp {&#xA;    server {&#xA;        listen 1935; # Listen on standard RTMP port&#xA;        chunk_size 4000;&#xA;&#xA;        application live {&#xA;            allow play all;&#xA;            live on;&#xA;            record off;&#xA;            hls on;&#xA;            hls_nested on;&#xA;            hls_path /mnt/hls/;&#xA;            hls_fragment 2s;&#xA;        }&#xA;        &#xA;    }&#xA;}&#xA;

    &#xA;