All i'm trying to do is receive an rtsp video stream rotate it and use --crop-geometry to trim out the bits i dont want. Unfortunately it needs to be an uneven crop rather than just a ratio. Ratio crops seem to work fine.
This is what is in my batch file:
Code: Select all
vlc rtsp://192.168.0.70:8554/stream :rtsp-caching=80 :vout-filter=transform,crop :transform-type=90 :crop-geometry="768x565+0+10"
I also tried eliminating the rotate to help debuging:
Code: Select all
vlc rtsp://192.168.0.70:8554/stream :rtsp-caching=80 --vout-filter=crop --crop-geometry="768x565+0+0"
I'm hoping it's a syntax error
Any help would be great!