Solved ffmpeg and rtsp_transport

Hello, I have an ubuntu box that I am trying to migrate over to freebsd.

This command works on the ubuntu box
Code:
ffmpeg -rtsp_transport tcp -i rtsp://myusername:mypwd@192.168.0.30/axis-media/media.amp?streamprofile=Recording -vcodec copy -t 60 test.mp4

but gives this error on freebsd
Code:
ffmpeg: No match.

I tried googling but did not find an answer.

I already did
Code:
portsnap fetch extract
pkg install ffmpeg

Thanks to any help you can give!
 
This command works on the ubuntu box
Code:
ffmpeg -rtsp_transport tcp -i rtsp://myusername:mypwd@192.168.0.30/axis-media/media.amp?streamprofile=Recording -vcodec copy -t 60 test.mp4

but gives this error on freebsd
Code:
ffmpeg: No match.
Quote the URL. It contains a ? which FreeBSD's default shell csh(1) doesn't like.
Code:
ffmpeg -rtsp_transport tcp -i "rtsp://myusername:mypwd@192.168.0.30/axis-media/media.amp?streamprofile=Recording" -vcodec copy -t 60 test.mp4

I already did
Code:
portsnap fetch extract
pkg install ffmpeg
You do not need to use portsnap(8) prior to installing binary packages.
 
Back
Top