Recherche avancée

Médias (91)

Autres articles (101)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6799)

  • vf_lut : Add support for RGB48 and RGBA64.

    11 octobre 2015, par Steven Robertson
    vf_lut : Add support for RGB48 and RGBA64.
    

    Signed-off-by : Steven Robertson <steven@strobe.cc>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_lut.c
    • [DH] tests/ref/fate/filter-pixfmts-lut
  • re-stream rtsp stream to youtube [closed]

    2 novembre 2024, par Darter

    i would like to re-stream an rtsp stream of a wifi camera to youtube&#xA;the stream is allready a H.264 codec.

    &#xA;

    The camera does not have any audio, but youtube needs audio to accept the stream, thats why i faked and audio stream.&#xA;I tried this

    &#xA;

    ffmpeg -re -rtsp_transport tcp -i rtsp://192.168.1.140/live -f lavfi -i anullsrc -f rawvideo rtmp://a.rtmp.youtube.com/live2/<stream key="key">&#xA;</stream>

    &#xA;

    but it fails

    &#xA;

    av_interleaved_write_frame(): Broken pipeB time=00:00:00.20 bitrate=884736.0kbits/s speed=0.0156x    &#xA;Error writing trailer of rtmp://a.rtmp.youtube.com/live2/dgyh-qzba-t13k-6qtf-6rgq: Broken pipe&#xA;

    &#xA;

    i would like to not change the codec to not put any stress on the machine

    &#xA;

  • FFplay/FFmpeg connect to a Socket

    17 janvier 2013, par user1958067

    I hava a Wifi Webcam connected to my PC. that i can get the stream and play it with

    "ffplay http://192.168.43.3:4555"

    and it works fine !

    Now i would like to plug this cam to the internet with an Android device. I wrote a Android app to connect to the cam via
    Socket s = Socket(192.168.43.3,4555) ;
    and s.getInputStream() gets me the Stream of the cam.

    How can i achieve to play the stream the same way as i mentioned above

    (something like ffplay http://xxx.xxx.xx.x:port)

    from my server ? I.e. open a socket,etc, ffplay/ffmpeg can connect to.

    Its ok for me, to write an Java programm on the server side where ffmpeg/ffplay is, if its necessary.

    I use "org.apache.commons.io.IOUtils.copy(InputStream,OutputStream)" to redirect one InputStream to other sockets OutputStream.