
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (58)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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 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 -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (12086)
-
ffmpeg screencasting with webcam
6 septembre 2017, par curiouserI want to use the screen view of the computer in real-time for a fake webcam. I did the video action on the bottom. But the frames like the video (2.34) are forming on top of each other. How can I solve this problem.
https://www.youtube.com/watch?v=6AZRiW3hHrw
Load the module
sudo modprobe v4l2loopback exclusive_caps=1
Find the dummy device
v4l2-ctl --list-devices
Start the virtual-webcam (change "/dev/video1" to reflect your system)
ffmpeg -f x11grab -r 15 -s 1920x1080 -i :0.0+0,0 -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video1 -
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 stream MacOS desktop screen over local IP using ffmpeg or python or objective-C or Swift ?
24 novembre 2024, par Akella NiranjanI am trying to build a service/application/script on MacBook that can help me share my desktop screen [Mirror my screen] over a local IP address.


Or I want to display it on a webpage using flask framework using python.


I just wish to look at my desktop screen along with the mouse movements on a web-browser, just like a Remote Desktop.


I did try the following command, but when I try to open my browser and go to the IP address it just shows a blank screen


sudo ffmpeg -f avfoundation -framerate 30 -pix_fmt uyvy422 -i "0" -listen 1 -f mp4 -movflags frag_keyframe+empty_moov -preset ultrafast -tune zerolatency "http://localhost:8000"



Please kindly help !!