Hello.
First, let me congratulate the VideoLAN team for the spectacular work that you have been doing.
Second, I am trying to use VLC to take a http stream input, resize it to a lower resolution, and stream it through http.
All this, without having to change the input's video codec (which is MJPEG).
Can anyone please give some suggestions?
These were my failed attempts:
vlc stream_input --sout #transcode{vcodec, width=320,height=240}:std{access=http,dst=localhost:8080,mux=ts}
vlc stream_input --sout #transcode{vcodec, vfilter=canvas{width=320,height=240}}:std{access=http,dst=localhost:8080,mux=ts}
vlc stream_input --sout #transcode{width=320,height=240}:std{access=http,dst=localhost:8080,mux=ts}
Thank you for your attention.
Bernardo