blob: cf5a1cf50d9f50ad51757422b3bd46ef30e8c614 (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/bash
printf "Enter Album Name: "
read albumname
# Create directory for the album
mkdir -p "$albumname"
# Replace spaces with '+' for search
searchname=$(echo "$albumname" | sed 's/ /+/g')
# Fetch the search results page
search_url="https://pagalnew.com/search.php?find=$searchname"
echo "Searching for album: $albumname..."
# Extract album URLs and names that belong to the /album/ directory
albums=$(curl -s "$search_url" | grep -oiE "/album/[^\" ]+" | uniq)
if [ -z "$albums" ]; then
echo "No albums found!"
exit 1
fi
# Use fzf to let the user choose the album interactively
chosen_album=$(echo "$albums" | fzf --prompt="Select an album: " --preview="curl -s https://pagalnew.com{} | grep -oP '(?<=<title>)(.*)(?=</title>)'")
if [ -z "$chosen_album" ]; then
echo "No album selected!"
exit 1
fi
album_url="https://pagalnew.com$chosen_album"
echo "Selected album: $album_url"
# Extract and download all song URLs
urls=$(curl -s "$album_url" | grep -oiE "https://pagalnew.com/songs/.*" | cut -d\" -f1 | sort | uniq)
for url in $urls; do
echo "Downloading $url..."
song_url=$(curl -s "$url" | grep "320 KBPS Song Download" | cut -d'"' -f8)
if [ -z "$song_url" ]; then
echo "Download link not found for $url"
continue
fi
# Download using aria2c
aria2c -d "$albumname" "https://pagalnew.com$song_url"
done
|