See attached log.
I guess the relevant piece is:
I had to apply this workaround, else StreamFab would fail while analyzing:
in file amazon_get_meta_info.py replace line:
with line:
I guess the relevant piece is:
Code:
2025:02:10-16:14:26 0x00000a50 [Info]: Processer: StartGetCRT - Service :24, Catch :0 2025:02:10-16:14:26 0x00000a50 [Info]: Get CKS. 2025:02:10-16:14:26 0x00000a50 [Info]: Get cvk: df7ee213db664dc18b25c83e97b185e5 2025:02:10-16:14:26 0x00000a50 [Log]: http status code: 404 2025:02:10-16:14:26 0x00000a50 [Info]: Get cvk rs: 200 2025:02:10-16:14:26 0x00000a50 [Info]: **** Processer: StartGetCRT - Get CHCRT net error. 2025:02:10-16:14:26 0x00000a50 [Info]: "[DownloadControlAmazon]" **** Get download Processed fail. The error is : 310
I had to apply this workaround, else StreamFab would fail while analyzing:
in file amazon_get_meta_info.py replace line:
Code:
movie_play_urls = amazonSoup.select('.dv-dp-node-playback')
Code:
movie_play_urls = amazonSoup.select('.episodes-playbutton')
Comment