CamsterRecorder
CamsterRecorder copied to clipboard
404 error client url
hi, the progam don't worlk anymore it seems the url of transcode have change. error : 404 client error not found for url : http://transcode.k8s-do.naked.com/hls
Is it possible to resolve it ?
Thanks in advance.
It looks like a few things were changed on Camster's end. To grab the m3u8 link from the now more verbose beautifulsoup output, I changed line 39 to:
link = str(aux).split('"')[50][44:][:-4]
And to fix the static link to point to Camster now (Naked no longer works?), I changed line 46 to:
streams = session.streams("hls://https://static-transcode-k8s-do.camster.com/hls/" + link + "/index.m3u8")
It sort-of works in initial testing, but I'm sure beaston02 can come up with a much better fix.
Thank you again beaston02 for these scripts! Wish we could help you out a bit with a way to donate.
It looks like a few things were changed on Camster's end. To grab the m3u8 link from the now more verbose beautifulsoup output, I changed line 39 to:
link = str(aux).split('"')[50][44:][:-4]
And to fix the static link to point to Camster now (Naked no longer works?), I changed line 46 to:
streams = session.streams("hls://https://static-transcode-k8s-do.camster.com/hls/" + link + "/index.m3u8")
It sort-of works in initial testing, but I'm sure beaston02 can come up with a much better fix.
Thank you again beaston02 for these scripts! Wish we could help you out a bit with a way to donate.
Noob here,
How did you figure out the website changed things on their end? It would be nice to be able to fix something like this on my own.
Thanks.