dir_path="walkingvid_clips"
total_files=$(ls -1 "$dir_path" | wc -l)
delete_count=$(($total_files / 2))

ls -1 "$dir_path" | head -n $delete_count | while read file; do
    echo "Deleting $file"
    rm -rf "$dir_path/$file"
done
