Création d'un serveur ffmpeg pour du streaming

Bonjour,

Je cherche a créer un server ffmpeg pour transmettre mon bureau à un autre PC local. J’ai trouvé plein de tuto expliquant comment faire mais je n’arrive pas à streamer ma webcam.

ffmpeg -f v4l2 -i /dev/video0 rtp://127.0.0.1:8090/feed1.ffm

J’ai créé mon fichier /etc/ffserver.conf :

HTTPPort 8080
RTSPPort 8554

HTTPBindAddress 0.0.0.0
RTSPBindAddress 0.0.0.0

MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000

CustomLog -

<Feed mycam1.ffm>
        ACL allow localhost
        ACL allow 127.0.0.1
        ACL allow 192.168.0.0 192.168.255.255
</Feed>

<Stream mycam1>
        NoAudio
        Format rtsp
        Feed mycam1.ffm
</Stream>

Le problème c’est que je dois lancer la commande ffserver -d /etc/ffserver.conf mais la commande ffserver n’est pas trouvé et je n’arrive pas à installer le paquet.

Quelqu’un pourrait une idée de l’erreur que j’ai faite?

D’avance merci.

Ce qui me semble logique vue qu’il a été retiré :

https://trac.ffmpeg.org/wiki/ffserver

Warning: ffserver has been removed on 2018-01-06. If you still need it checkout commit 2ca65fc or use the 3.4 release branch. The original documentation has been archived and can be downloaded as ​HTML or ​PDF while the sample ffserver configuration file can be found below. We can provide no support for ffserver.

Or try an alternative such as ​mkvserver_mk2.