Created
April 7, 2015 15:40
-
-
Save 5shekel/c05c6bcc9cd7181317fa to your computer and use it in GitHub Desktop.
iba stream grab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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