Results 1 to 10 of 12

Thread: Noise reduction with ffmpeg

Threaded View

  1. #1
    Join Date
    Jun 2010
    Beans
    57

    Noise reduction with ffmpeg

    I archived some old VHS tapes using an stk1160 video grabber. Naturally these are a bit noisy and I read that ffmpeg can do noise reduction in two pass mode. This is what I tried:
    Code:
    ffmpeg -i invideo.avi -sameq -vcodec libx264 -nr 1000 -pass 1 -passlogfile passlog -acodec libvo_aacenc outvideo.mp4
    ffmpeg -i invideo.avi -sameq -vcodec libx264 -nr 1000 -pass 2 -passlogfile passlog -acodec libvo_aacenc outvideo.mp4
    Now I have different issues:

    1. Audio is gone after the first pass
    2. The first pass result looks fragmented and a lot of frames seem to be missing
    3. Second pass does not start and gives the following error message:
    Code:
    [libx264 @ 0x1630d60] constant rate-factor is incompatible with 2pass.
    Last edited by xxlray; December 6th, 2012 at 04:39 PM.

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
  •