Tommy Wu
Tommy Wu
試著改了一下, 應該就只有網址變 iq.com, 然後抓不到正確的 tvid (還有 title), 有正確的 tvid 後, 就能正常下載. ``` diff -Nur -x .git annie/extractors/extractors.go annie.patched/extractors/extractors.go --- annie/extractors/extractors.go 2021-06-26 00:56:03.846803530 +0800 +++ annie.patched/extractors/extractors.go 2021-06-26 01:00:28.961230925 +0800 @@ -53,7...
1. 到 annie 的 github 選 Code => Download Zip, 下載後解開 2. 照著上面的改程式碼, 然後到上面解開的 annie-master 的目錄執行 go build 就會產生執行檔. PS. 需要有 go 的環境, 如果是 Windows, 就到 https://golang.org/doc/install 下載.
It's not same issue. IQiyi block some VIP video access in getVPS() method. so annie not working for them.
please re-open issue #3908 , I think it's different issue with this.
add following setting to nginx will make login work. `add_header Content-Security-Policy "upgrade-insecure-requests";` but, it will also force 8008 video stream using https, so you also need to change kvmd-video.sh to...
here is better solution to support https via Nginx. 1. unpack kvm-link 2. change video_stream_url() in dist/built-package/index.6b657291.js (filename might changed for different version) from: ```video_stream_url(){return`http://${yn.video_host}:${this.mjpeg_port}/stream?advance_headers=1`}``` to: ```video_stream_url(){let port=this.mjpeg_port+(location.protocol==='https:'?10:0);return`http://${yn.video_host}:${port}/stream?advance_headers=1`}``` 3. zip...