Samsung PRO Endurance 128GB microSD Card MB-MJ128GA/AM (Amazon Affiliate)
US: https://amzlink.to/az0CKgHQxHoT8
UK: https://amzlink.to/az05bLeI6UJBW
CA: https://amzlink.to/az0KFD2OIYRJR
DE: https://amzlink.to/az03g2WP8Lsbg
ES: https://amzlink.to/az046hR8IgCRh
FR: https://amzlink.to/az0VHRmiRyeHk
IT: https://amzlink.to/az0XsCKOisDpc
IN: https://amzlink.to/az0BMnmGaADKV
AU: https://amzlink.to/az0FnfvZhWBWl
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
