Samsung PRO Endurance 128GB microSD Card MB-MJ128GA/AM (Amazon Affiliate)
US: https://amzn.to/3bDvxBC
UK: https://amzn.to/3jDPlcv
CA: https://amzn.to/3aA1ZU0
DE: https://amzn.to/32M2IRQ
ES: https://amzn.to/30GmOdu
FR: https://amzn.to/31ScBN9
IT: https://amzn.to/2ABGWEz
IN: https://amzn.to/32N8OkZ
AU: https://amzn.to/2Z8m4OX
Balena Etcher: https://www.balena.io/etcher/
Raspberry Pi OS: https://www.raspberrypi.org/software/
Update Package List
sudo apt update
Install dvgrab and ffmpeg
sudo apt install dvgrab ffmpeg
Move to Desktop Directory
cd Desktop/
Create Directory
mkdir tape_20<br>
Move to Newly Created Directory
cd tape_20
Capture DV Video from DV Camera
dvgrab -showstatus -t -a -rewind
Press “control-C” to stop capture
Move to Parent Directory
cd ..
View Directory Sizes
du -sh *
Batch Convert DV files to MP4*
for i in *.dv; do ffmpeg -i "$i" -vf yadif "${i%.*}.mp4"; done
*script sourced from: https://stackoverflow.com/questions/5784661/how-do-you-convert-an-entire-directory-with-ffmpeg
View Video Stats
ffprobe video.mp4
Remove DV files
rm *.dv