Skip to content

Instantly share code, notes, and snippets.

@JakeTrock
Last active November 16, 2022 04:42
Show Gist options
  • Save JakeTrock/9b462546e892362ed9aa6376bc07999f to your computer and use it in GitHub Desktop.
Save JakeTrock/9b462546e892362ed9aa6376bc07999f to your computer and use it in GitHub Desktop.
automatic DV tape dumper(UNTESTED)
dvgrab --autosplit --format dv2 dvgrab-
touch dvg-files.txt
find -name "dvgrab-*" -exec echo {} >> dvg-files.txt \;
ffmpeg -f concat -safe 0 -i dvg-files.txt -c copy dvg-out-lossless.avi
ffmpeg -i dvg-out-lossless.avi -deinterlace -vcodec h264 -acodec mp3 dvg-compressed-out.mp4
rm dvgrab-*
rm dvg-files.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment