
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (104)
-
La gestion des forums
3 novembre 2011, parSi les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
Accès à l’interface de modération des messages
Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...) -
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 ;
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (9055)
-
How can we transcode live rtmp stream to live hls stream using ffmpeg ?
24 décembre 2022, par KiranI am trying to convert a live rtmp stream to hls stream on real time.


I got some idea after reading




i am able to convert the live rtmp stream to hls but not at run time. when i run the command and test for any hsl files (.m3u8 and .ts) i am not able to see but when i interrupt the command and check there i get the hls files as required.


I searched on google for solution but not able to get proper answer.


-
Run ffmpeg as window service
7 juin 2018, par Brad ReiterMy setup is like this :
It contains components :
- Web Cam : which send out the RTP packets when i get a stream request
- Agent server : Which receives the stream from the Webcam and forwards
the same to ffmpeg server. - ffmpeg server : this where i need to run the ffmpeg as window service,
receives the rtp stream sent by agent server and create a ts file.
What have i done is :
I have setup the ffmpeg in one of my dev environment using this link :
https://video.stackexchange.com/questions/20495/how-do-i-set-up-and-use-ffmpeg-in-windows
My problems :
- How to make ffmpeg run as daemon.?
- How can i make ffmpeg aware that new stream is coming from agent
server and start creating a ts file.? - Is there a way in ffmpeg that i reserve ports for ffmpeg and make it
listen to all the ports for eg : reserve 2000 - 3000 ports and listen
to them as soon as rtp stream arrives, convert to ts stream.
Regards
-
How to monitor volume level during ffmpeg capture
7 septembre 2018, par VirkomI capture sound from soundcard, convert it to mp3 and stream to multicast IP.
Command looks like :ffmpeg -f alsa -i hw:0 -async 1 -vn -acodec libmp3lame -ac 1 -ar 44100 -b:a 128k -flush_packets 0 -f mpegts -pes_payload_size 426 -mpegts_start_pid 0x44 udp://233.21.215.101:1234?pkt_size=1316
But I need to monitor volume level of capturing. If there is no sound (or noise only) I need to switch to another (reserve) channel.
Can I get volume level in ffmpeg output ? How I can do it ?
P.S : I can get volume level by "volumedetect" filter but it’s not in realtime. I need realtime monitoring.
P.P.S : I run ffmpeg programmatically from my application and can’t monitor additional windows (like video frame when I use showvolume filter).