I've found solution to transcode my webcam source, here's the command:
Code: Select all
cvlc --intf=dummy v4l2:///dev/video1 --noaudio --sout-mux-caching=6000 --sout '#transcode{vcodec=h264,venc=x264{preset=medium,tune=ssim,level=3,video_filter={select_every:2,1},profile=baseline,keyint=60,bframes=0}}:standard{mux=ts,access=http,dst=:8090/myStream.mp4}' -v 1
This message drops twice, by the way.[0xb520e908] main encoder warning: option video_filter is unknown
[0xb520e908] main encoder warning: option deinterlace is unknown
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 Cache64 SlowCTZ SlowAtom
x264 [info]: profile Constrained Baseline, level 3.0
1. How to use video_filter? [http://mewiki.project357.com/wiki/X264_ ... lect_every]
Wanted to drop one per two or three frames.
Or shall i use other way to drop frames?
2. Do i need deinterlaced?
3. As far i as i know:
Code: Select all
x264 [warning]: MB rate (5152760) > level limit (40500)
Regards!