Videos not detected on https://aki-h.com/ #2228
-
Your questionHello to all . I been trying to download videos from this page https://aki-h.com/ . But VDH doesn't detect the video stream adress. I been trying also Jdownloader and other stream downloaders but nothing seems work on that page. https://aki-h.com/ Addon & CoApp version and detailsversion: 9.5.0.1 platform: x86-64 win |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I do not work for VDH. I am just another user. Also, please read #2214. I quote you:
What page? Post the URL of the page. Actually type https://whatever into the text of a post. That will give us a link we can click & then we can investigate your problem. |
Beta Was this translation helpful? Give feedback.
-
I looked at something random from there and I can see why there isn't detection. The site flies under the radar by not using .m3u8 Since I'm not a coder I used AI to do that. Add the stream manifest to the script, save it and then execute it. The link highlighted up the top is the master manifest, the link highlighted below is the 720p stream playlist. |
Beta Was this translation helpful? Give feedback.
-
Taking my cue from Matt, I picked something at random on the site as well: https://aki-h.com/videos/eW8645N6Gk/ When I first visited that page, I hit the Play button in the player embedded on the web page. That did not cause the video to play. It seemed to cue up the video & another Play button was displayed. However, the Network Monitor was populated with useful stuff at that point so I never did actually launch playback of the video in the web page. The Firefox Network Monitor did not show a proper HLS master manifest, as Matt pointed out. So I just trawled through the items listed until I found this one that did look like an HLS master manifest: There is no magic to this. You just scroll through the items until you find one whose Response shows something that looks like an HLS master manifest. The problem is that this item does not have the right extension in its file name. That would be Now, I am using Firefox & you are using Chrome. I believe you can get essentially the same Network Monitor by hitting F12 in Chrome. This is the same key for Firefox. From there, it is my understanding that the content of the Network Monitor is pretty much the same in both Chrome & Firefox. You'll have to let us kn0w about that. But here's where Matt & I take different paths. I've posted numerous examples in this forum of what I like to call Plan B. This is a perfect example of my Plan B. In order to make the manifest look like a manifest, I copied the file to my system using the Looks like there should be no problem downloading this with ffmpeg, and indeed there was not: That's not a particularly fast download. Fortunately, it's not a very big file so it took a reasonable time to download. Longer than it should have for such a small file, but not a very long time in the absolute sense. You can see the exact ffmpeg command I invoked to perform this download near the top of that log file. I want to point out that the objects downloaded in this download were another bit of non-standard occurrences. Each chunk of this download was a Back to the download. That got me a file with these properties: Those video bit rates are pretty low for a 1920x1080 video. Then again, it's just a cartoon so the bit rates are adequate for the purpose. The audio information is pretty typical for mp4 content. Not surprisingly, it played fine in VLC: I had to be careful what to show here. The video is actually cartoon sex. That's what hentai is, as I understand it. You can see in that image that the video is fine. You can also see that there are English subtitles burned into the file. You'll have to take my word for it that the audio was also fine. It was in Japanese, so I didn't understand it. I didn't sit & watch this, just skimmed it to make sure it was all there & played fine with video & audio right to the end. So you don't necessarily need to be a programmer, nor do you need to rely on an AI. You can perform a manual download of this using the same tool VDH uses . . . when it works. The ffmpeg I used here is the one from the CoApp directory. But this site seems to have intentionally not followed any standards, thus making it impossible for any reasonable application to automatically download this content. But if you can deal with Windows command line & .bat files, you can easily get any of the content off this site. I am assuming this example is representative of what you will find on the site. |
Beta Was this translation helpful? Give feedback.
Taking my cue from Matt, I picked something at random on the site as well:
https://aki-h.com/videos/eW8645N6Gk/
When I first visited that page, I hit the Play button in the player embedded on the web page. That did not cause the video to play. It seemed to cue up the video & another Play button was displayed. However, the Network Monitor was populated with useful stuff at that point so I never did actually launch playback of the video in the web page.
The Firefox Network Monitor did not show a proper HLS master manifest, as Matt pointed out. So I just trawled through the items listed until I found this one that did look like an HLS master manifest:
There is no magic to this. You just scr…