Last active
November 16, 2022 04:42
-
-
Save JakeTrock/9b462546e892362ed9aa6376bc07999f to your computer and use it in GitHub Desktop.
automatic DV tape dumper(UNTESTED)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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