Skip to content

Instantly share code, notes, and snippets.

@avrahamappel
Created April 11, 2025 17:16
Show Gist options
  • Save avrahamappel/fb11b7e2f8e8b3f004179fddadbea053 to your computer and use it in GitHub Desktop.
Save avrahamappel/fb11b7e2f8e8b3f004179fddadbea053 to your computer and use it in GitHub Desktop.
Download TorahAnytime video
read url && response=$(curl -s "$(echo $url | sed -E 's@(www\.)[email protected]@')") && video_url=$(echo "$response" | jq -r '.video_url') && title=$(echo "$response" | jq -r '.title') && extension="${video_url##*.}" && filename="${title}.${extension}" && curl "$video_url" -o "$filename"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment