ffmpeg

Ffmpeg Restream

Simple Device Restream

Ffmpeg is a swiss knife for streaming project. For any kind of device streaming you only need to get the specification of device. To list the device

ffmpeg -f dshow -list_devices true  -i dummy

Command prompt will list all the aviable device on machine.

[dshow @ 0000000004052420] DirectShow video devices
[dshow @ 0000000004052420]  "ManyCam Virtual Webcam"
[dshow @ 0000000004052420]  "UScreenCapture"
[dshow @ 0000000004052420] DirectShow audio devices

For restreaming the audio&video device,

ffmpeg -f dshow -i video="DirectShow video devices":audio="DirectShow audio devices" 
-vcodec libx264 -acodec aac -strict experimental 2 -tune zerolatency -f flv 
rmtp://WOWZA_IP/WOWZA_APP/STREAMNAME

This can be extended all kind of device like medical devices or video hardware.


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow