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)

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

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

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

Sur d’autres sites (6823)

  • How can I configure ffserver to support rtmp instead of http?

    27 avril 2016, par randomuser1

    I grab the image from my camera using ffmpeg and the following command :

    ffmpeg -y -f vfwcap -r 25 -i 0 http://10.172.180.235:8090/feed2.ffm

    and on other machine (with the ip mentioned above) I have the ffserver running with the following config file :

    HttpPort 8090
    HttpBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 3000
    CustomLog -
    <stream>
       Format status
       ACL allow localhost
       ACL allow 192.168.0.0 192.168.255.255
       ACL allow 10.172.180.199
       ACL allow 10.172.180.216
       ACL allow 10.172.180.215
    </stream>
    <feed>
       File /tmp/feed2.ffm
       FileMaxSize 1G
       ACL allow 127.0.0.1
       ACL allow 10.172.180.199
       ACL allow 10.172.180.216
       ACL allow 10.172.180.236
       ACL allow 10.172.180.109
    </feed>
    <stream>
       Format flv
       Feed feed2.ffm

       VideoCodec libx264
       VideoFrameRate 30
       VideoBitRate 800
       VideoSize 1280x720
       AVOptionVideo crf 23
       AVOptionVideo preset medium
       AVOptionVideo me_range 16
       AVOptionVideo qdiff 4
       AVOptionVideo qmin 10
       AVOptionVideo qmax 51
       AVOptionVideo flags +global_header
    NoAudio
       AudioCodec aac
       Strict -2
       AudioBitRate 128
       AudioChannels 2
       AudioSampleRate 44100
       AVOptionAudio flags +global_header
    </stream>

    And that works, I can stream video in flv over http... But now I would like to use rtmp, becase I want to display the live stream on my webpage with some player. I wanted to use the video.js, but it seems like in the latest versions it doesn’t support live video any more... I found mediaelement.js, but to stream live content there I need the rtmp protocol, so that’s the cause of my question.
    Thanks for your help

  • avformat/http: Avoid calling http_shutdown() if end of chunk is signalled already

    25 décembre 2017, par Karthick Jeyapal
    avformat/http: Avoid calling http_shutdown() if end of chunk is signalled already
    
    • [DH] libavformat/http.c
  • How to stream the desktop using FFMPEG , and set the output to http://127.0.0.1:8080

    26 décembre 2023, par Yamine Klioui

    i am trying to use FFMPEG on windows to stream my entire desktop, through my localhost address : 127.0.0.1:8080 , and it will be accessible from another computer in the same network , using vlc by opening network url, or embed it in a source video file for exemple.&#xA;i tried the commande here :

    &#xA;

    ffmpeg -f gdigrab -framerate 6 -i desktop output.mp4  &#xA;

    &#xA;

    but this record the entire desktop (what i want to do) and store it in ouput.mp4 file , i tried changing it to :

    &#xA;

        ffmpeg -f gdigrab -framerate 6 -i desktop http://127.0.0.1:8080&#xA;

    &#xA;

    but i get this error :

    &#xA;

    [gdigrab @ 0000023b7ee4e540] Capturing whole desktop as 1920x1080x32 at (0,0)&#xA;[gdigrab @ 0000023b7ee4e540] Stream #0 : not enough frames to estimate rate ; consider increasing probesize&#xA;Input #0, gdigrab, from 'desktop' :&#xA;Duration : N/A, start : 1625841636.774340, bitrate : 398133 kb/s&#xA;Stream #0:0 : Video : bmp, bgra, 1920x1080, 398133 kb/s, 6 fps, 1000k tbr, 1000k tbn&#xA;[NULL @ 0000023b7ee506c0] Unable to find a suitable output format for 'http://127.0.0.1:8080'&#xA;http://127.0.0.1:8080 : Invalid argument

    &#xA;

    but i want to set the output as : http://127.0.0.1:8080&#xA;how should i do that ?

    &#xA;

    Update :&#xA;I found this command :

    &#xA;

    ffmpeg -f gdigrab -framerate 30 -i desktop -vcodec mpeg4 -q 12 -f mpegts http://127.0.0.1:8080

    &#xA;

    it seems to stream, but i am not able to open it from nor vlc nor media player

    &#xA;