
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (34)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parPré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 2013Puis-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 -
How to get the support for SRT (Secure Reliable Transport) in React Native (for both iOS & Android) ?
18 mars 2021, par Sourav DeyI 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.
I tried using ffmpeg library but they are not providing the support for SRT as of now.


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


Code :


useEffect(() => {
 RNFFmpeg.execute(
 '-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',
 ).then(result => console.log(`>> FFmpeg process exited with rc=${result}.`));

 return () => {
 console.log('cancelling all executions');
 RNFFmpeg.cancel();
 };
 }, []);
</port>


Output :


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


Can anyone please help ?


-
How to test packet loss and recovery features of Secure Reliable Transport Protocol
26 novembre 2019, par aramokI 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 ?