Datasets:
File size: 703 Bytes
bebba93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
#!/bin/bash
# Path to the deface executable
deface_cmd="deface"
# Directory containing the folders with videos
parent_dir="videos"
# Loop through each folder
for folder in "$parent_dir"/*; do
if [ -d "$folder" ]; then
# Get the video file in the folder
video_file=$(find "$folder" -maxdepth 1 -type f -name "*.mp4" -print -quit)
if [ -n "$video_file" ]; then
# Blur the video using deface
output_file="$folder/blurred_video.mp4"
$deface_cmd "$video_file" -o "$output_file"
echo "Video in $folder blurred and saved as blurred_video.mp4"
else
echo "No video file found in $folder"
fi
fi
done
|