alpha31476's picture
Image Audio Alingment
bda7d99 verified
raw
history blame contribute delete
357 Bytes
#!/bin/bash
URLS_FILE="images_urls.txt" # URL file containing the links to download
SAVE_DIR="/scratch/23m1521/Vaani/Audio/Hindi/" # Directory where files will be saved
mkdir -p "$SAVE_DIR"
aria2c --max-concurrent-downloads=48 -i "$URLS_FILE" -d "$SAVE_DIR" --auto-file-renaming=false -c &
echo "Download started! Files will be saved to: $SAVE_DIR"