Skip to content

Instantly share code, notes, and snippets.

@monkut
Created June 30, 2019 07:12
Show Gist options
  • Save monkut/1d00900b4a633f407cd1a00c2217666c to your computer and use it in GitHub Desktop.
Save monkut/1d00900b4a633f407cd1a00c2217666c to your computer and use it in GitHub Desktop.
video_transfer.sh
#!/bin/bash
# Command to transfer
export VIDEO_DIRECTORY=/storage/VIDEO/HOME/$(python3 -c "import datetime;print(datetime.datetime.now().strftime('%Y%m%d-video-dump'), end='')")
echo Making directory: ${VIDEO_DIRECTORY}
mkdir ${VIDEO_DIRECTORY}
echo Copying...
rsync --progress -h /media/monkut/JVCCAM_MEM/AVCHD/BDMV/STREAM/*.MTS ${VIDEO_DIRECTORY}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment