Skip to content

Instantly share code, notes, and snippets.

@5shekel
Created April 7, 2015 15:40
Show Gist options
  • Save 5shekel/c05c6bcc9cd7181317fa to your computer and use it in GitHub Desktop.
Save 5shekel/c05c6bcc9cd7181317fa to your computer and use it in GitHub Desktop.
iba stream grab
#go to an iba.org.il stream page
#open chrome debugger > network tab
# copy playlist .m3u > https://imgur.com/EVdjB9A
#curl that .m3u
#you will get a a list of sub playlists, with diff bitrates.
#get the last m3u (highest bitrate)
# grab all .ts files
curl http://82.80.192.28/iba_vod/_definst_/smil:iba-JOtQy1-R5f4.smil/chunklist_w1953643242_b1992000_pd33000.m3u8 | grep ts | (while read f; do curl -O http://82.80.192.28/iba_vod/_definst_/smil:iba-JOtQy1-R5f4.smil/$f; done)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment