6 lines
193 B
Bash
Executable File
6 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VIDEO_ID=$(curl -s https://makkahlive.net/madinalive.aspx | grep -o "videoid= '[^']*'" | head -n1| cut -d"'" -f2)
|
|
|
|
yt-dlp -g -f b $(echo https://www.youtube.com/watch?v=$VIDEO_ID)
|