
Recherche avancée
Autres articles (96)
-
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6969)
-
avconv/ffmpeg http audio streaming from mic
11 juillet 2014, par user3764830I need to establish a audio server that records audio from mic input hw:1,0.
I can able to do it with RTP server
avconv -f alsa -ac 1 -i hw:1,0 -acodec mp2 -b 64k -f rtp rtp://192.168.1.111:1234
But i need it as http server so that i can able to stream this audio in multiple devices with PI (ip+1234)address
Thanking You
-
Mac App (Cocoa) for producing HTTP Live Streaming
11 mars 2013, par MichaelI am building a Mac OS X application (Cocoa) with XCode that captures a video source and outputs the video through HTTP Live Streaming (HLS). After doing a fair amount of research I am thinking that I should be able to use the following stack of elements in my app to make this happen...
- AVCaptureDevice
- AVCaptureSession
- AVCaptureVideoDataOutput
- FFMPEG
- mediastreamsegmenter
- CocoaHTTPServer
I would really appreciate some feedback as to whether I'm on the right track, or correction if I am mistaken. Obviously any advice, pointers, perhaps some sample code snippets would be so very helpful.
Many thanks in advance !
-
How to stream the desktop using FFMPEG , and set the output to http://127.0.0.1:8080
26 décembre 2023, par Yamine Kliouii 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.
i tried the commande here :


ffmpeg -f gdigrab -framerate 6 -i desktop output.mp4 



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


ffmpeg -f gdigrab -framerate 6 -i desktop http://127.0.0.1:8080



but i get this error :


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


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


Update :
I found this command :


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


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