alexanderadam / ice_portal_downloader

small script which downloads all magazines, audiobooks and podcasts from the Deutsche Bahn ICE Portal

Home Page:https://www.iceportal.de/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for movies and series

alexanderadam opened this issue · comments

Getting infos and data from https://filme-serien.iceportal.de/

See also this comment:

Disclaimer: For educational purpose! Do not use it. Watch the videos and read the journals during your journey or buy them +1

curl -s -L https://api.filme-serien.iceportal.de/api/portal-teasers |jq -r '."hydra:member"[].slug' |while read a ; do curl -o ${a}.m4s "https://assets.filme-serien.iceportal.de/contents/media/videos/${a}/t/dash_vp9/video-stream-1080p-vp9-2200.m4s" ; done`
curl -L https://www.iceportal.de/api1/rs/page/zeitungskiosk |jq -r '.teaserGroups[].items[].navigation.href' |sed 's#^/zeitungskiosk/##g' |while read a ; do curl -o ${a}.pdf https://www.iceportal.de/api1/rs/magazines/file/freeCopy/$a/82d9cebe.5e94809b0d92d/$a.pdf ; done