summaryrefslogtreecommitdiffstats
path: root/.local/bin/pagalnew
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/pagalnew')
-rwxr-xr-x.local/bin/pagalnew50
1 files changed, 50 insertions, 0 deletions
diff --git a/.local/bin/pagalnew b/.local/bin/pagalnew
new file mode 100755
index 0000000..cf5a1cf
--- /dev/null
+++ b/.local/bin/pagalnew
@@ -0,0 +1,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
+