Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (34)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (4280)

  • avformat/rtsp : Support mode field of Transport header being sent in upper case

    15 janvier 2024, par Paul Orlyk
    avformat/rtsp : Support mode field of Transport header being sent in upper case
    

    Fixes server compatibility issues with rtspclientsink GStreamer plugin

    Signed-off-by : Paul Orlyk <paul.orlyk@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/rtsp.c
  • How to get the support for SRT (Secure Reliable Transport) in React Native (for both iOS & Android) ?

    18 mars 2021, par Sourav Dey

    I tried many ways to get the support for SRT (Secure Reliable Transport) streaming in React Native but none of them worked. There were very few resources over the Internet and none seems to be working.&#xA;I tried using ffmpeg library but they are not providing the support for SRT as of now.

    &#xA;

    The following error was thrown when a valid SRT link was passed to the below code :

    &#xA;

    Code :

    &#xA;

    useEffect(() => {&#xA;    RNFFmpeg.execute(&#xA;      &#x27;-i "srt://:<port>?streamid=live.sls.com/live/test2" -vcodec copy -acodec copy -strict -2 -y -f mpegts /storage/emulated/0/Download/srt_test_0.ts&#x27;,&#xA;    ).then(result => console.log(`>> FFmpeg process exited with rc=${result}.`));&#xA;&#xA;    return () => {&#xA;      console.log(&#x27;cancelling all executions&#x27;);&#xA;      RNFFmpeg.cancel();&#xA;    };&#xA;  }, []);&#xA;</port>

    &#xA;

    Output :

    &#xA;

    srt://:<port>?streamid=live.sls.com/live/test2: Protocol not found&#xA;index.js:115 Did you mean file:srt://:<port>?streamid=live.sls.com/live/test2index.js:22 &#xA;>> FFmpeg process exited with rc=1.&#xA;</port></port>

    &#xA;

    Can anyone please help ?

    &#xA;

  • How to test packet loss and recovery features of Secure Reliable Transport Protocol

    26 novembre 2019, par aramok

    I am using h264 encode method with ffmpeg and I am able to stream it with UDP Protocol. Without packet loss video quality is good. Since UDP Protocol does not guarantee packet reliability , I implemented Haivision’s Secure Reliable Transport (SRT) protocol on top of UDP Protocol.

    Before that I tested UDP Protocol with dropping some percentage of packets intentionally by writing simple program and video stream results were not that good.Since I am using h264 , losing packets effects video quality rapidly. Now I am using SRT Protocol on top of UDP Protocol. SRT Protocol also use UDP Protocol but it has packet recovery feature for live video streams. I want to test it’s packet drop recovery feature and see the results.

    How can i do that programmatically or with any tools ?

    SRT Protocol Repository