Skip to content

Instantly share code, notes, and snippets.

@Kirill89
Created March 20, 2024 23:29
Show Gist options
  • Save Kirill89/ca4b0e2da1bc3422fd5220c7af6ad809 to your computer and use it in GitHub Desktop.
Save Kirill89/ca4b0e2da1bc3422fd5220c7af6ad809 to your computer and use it in GitHub Desktop.
How to download video from vidyard.com
# For the URL https://share.vidyard.com/watch/ySQXtKoGAXS656HscU4yNe
curl https://play.vidyard.com/player/ySQXtKoGAXS656HscU4yNe.json | jq -r '.payload.chapters |.[0].sources.mp4 |.[0].url' > 1.txt && curl -H "Referer: https://play.vidyard.com/ySQXtKoGAXS656HscU4yNe" -vvv $(cat 1.txt) > 111.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment