Im currently working with ubuntu 10.04 and ffmpeg. Here is my situation:
I have this command which creates a window and reproduces a video in it:
video_handle/static/simpleVRML media/generated/video1330515739317/chunk0.avi
I need to record the video that is being displayed in that video container and save it to a video file; webm is preferred. The video length is exactly 1 second and fps is 29.97
I have already tried this command:
ffmpeg -loglevel panic -f x11grab -s 640x480 -r 25 -i :0.0+0,50 -vframes 30 -sameq -y out.mpg >/dev/null 2>&1
It actually records the screen as the container emerges but I need the output to be really accurate
Any ideas???