Results 1 to 8 of 8

Thread: ffmpeg x11grab capture freezing. Any idea why?

  1. #1
    Join Date
    Jun 2014
    Beans
    4

    ffmpeg x11grab capture freezing. Any idea why?

    Hi Guys,

    I've been having this unsolvable issue with screen capture via x11grab on 12.04. The source is running at 60fps and here is my ffmpeg capture command: "ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1280x720 -i :0.0+nomouse -vcodec libx264 -crf 18 -vsync 0 -threads 0 -pix_fmt yuv420p -f mp4 #{@filename}"

    Keeps happening and I have no idea why. Also seems to be happening at the same spot. I tried capturing at 60fps same issue. tried with -framerate 60 and same issue.

    Anybody else faced the same problem, any solution?

    Any help would be greatly appreciated, I've been stuck on this one for a while.

    Thanks!

  2. #2
    Join Date
    Sep 2006
    Beans
    3,713

    Re: ffmpeg x11grab capture freezing. Any idea why?

    Please include the complete ffmpeg console output that results from your command.

  3. #3
    Join Date
    Jun 2014
    Beans
    4

    Re: ffmpeg x11grab capture freezing. Any idea why?

    Attached log file.

    Thanks!
    Attached Files Attached Files

  4. #4
    Join Date
    Sep 2006
    Beans
    3,713

    Re: ffmpeg x11grab capture freezing. Any idea why?

    Thanks for the output, although increasing the loglevel verbosity actually makes it harder to find issues. Also, I forgot to ask, what is the actual issue?

  5. #5
    Join Date
    Jun 2014
    Beans
    4

    Re: ffmpeg x11grab capture freezing. Any idea why?

    Let me know if there is a way to reduce the verbosity in the log, will regenerate one. The issue I'm seeing screen freezes when the capture is happening on a GPU instance, though I don't see the same issue on a CPU instance that lacks a GPU but has more CPU cores. I doubt this is a performance issue as the GPU should be more than powerful for the capture.

    Any ideas?

  6. #6
    Join Date
    Sep 2006
    Beans
    3,713

    Re: ffmpeg x11grab capture freezing. Any idea why?

    I'm not sure why it was so verbose because I didn't see -loglevel or -v being used. "-loglevel info" is the default.

    ffmpeg does not use the GPU for capturing.

    Does it make a difference if you replace "-r 30" with "-framerate 30"? Does the freezing occur if you reduce the capture size? Change "-s 1280x720" to "-video_size 640x360" just to test.

    Are you sure it is not the output file itself that is being jerky due to playback issues and not due to the actual capturing or encoding?

  7. #7
    Join Date
    Jun 2014
    Beans
    4

    Re: ffmpeg x11grab capture freezing. Any idea why?

    Tried the -framerate 30 change already didn't change much. The video size change either. I am also sure it is not my output file as I have captured dozens of files this way. Do you think any of the settings that have in there might have a performance hit on the capture? I appreciate your help on this.

  8. #8
    Join Date
    Sep 2006
    Beans
    3,713

    Re: ffmpeg x11grab capture freezing. Any idea why?

    Things you could try/test:

    • Use a recent build (re-compile ffmpeg and x264 using source from git head).
    • Omit audio.
    • Try without "-vsync 0".
    • Try a faster encoder:
      Code:
      -i :0.0+nomouse -vcodec libx264 -preset ultrafast -qp 0 output.mp4

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •