Yes this transcoding only applies for VLC.
To transcode, do as follows;
- Create a new file using "cmd" extension. e.g, Transcode.cmd. add the following lines to that file and add the path name to vlc.exe and the vlc.sdp.
Transcode.cmd
@echo off
"C:\PATH_TO_VLC.EXE" "C:\PATH_TO_VLC.SDP" --sout=#transcode{vcodec=MJPG,vb=1500,fps=15,scale=1,width=800,height=448,acodec=none}:duplicate{dst=http{mux=mpjpeg,dst=:8080/},dst=display} :sout-all :sout-keep
vlc.sdp
SDP:
v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 10.0.0.225
t=0 0
a=tool:libavformat 56.33.101
m=video 5000 RTP/AVP 96
b=AS:200
a=rtpmap:96 MP4V-ES/90000
a=fmtp:96 profile-level-id=1
There is also a possibility to use gstreamer instead of VLC. Take a look at this post at diy by Patrick Duffy