Skip to content

Instantly share code, notes, and snippets.

@sebm
Last active November 22, 2018 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebm/d6725c1bbed1893f12ff827f8f233a1a to your computer and use it in GitHub Desktop.
Save sebm/d6725c1bbed1893f12ff827f8f233a1a to your computer and use it in GitHub Desktop.
How to rip VHS to mp4

Acknowledgements to this article for the ffmpeg commands.

  1. Install Ubuntu on a bootable partition - not a VM - a live CD / USB is ok.
  2. sudo apt install ffmpeg vlc v4l-utils. Don't be fooled, snaptools will not work.
  3. ffmpeg -f v4l2 -thread_queue_size 512 -i /dev/video1 -f alsa -thread_queue_size 512 -i hw:2,0 -t 00:00:30 -c:v h264 -c:a aac -pix_fmt yuv420p test.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment