Bro what setup did you use to record these so cleanly? And how did you rip the sub files for Black General? I’ve got some random unlocked eps that I used my points towards and love to be able to rip them like you.
@Deus_Ex_Machina
I didn’t record anything. This is a proper, untouched download.
Use some packet capture application on your smartphone. Or if you’re using an android emulator on your pc just use wireshark with winpcap, that’s easier. Then capture the moment you start a video. Look inside the log for GET requests with http.request.method == "GET"
First GET request should point to a manifest.mpd. Just open the link in your browser and it’ll download the mpd file. Then use “ffmpeg -i manifest.mpd -c copy output.mp4” to download the video/audio file. Subtitles aren’t downloaded, dunno why. Just open the manifest.mpd in notepad++ and you’ll see a direct link to the subtitles in VTT format. Optionally convert these to a more common filetype like SRT or ASS. That’s all.
Comments - 5
rlee
Thanks!
Deus_Ex_Machina
Bro what setup did you use to record these so cleanly? And how did you rip the sub files for Black General? I’ve got some random unlocked eps that I used my points towards and love to be able to rip them like you.
setyawan87
Thanksss
setyawan87
Its have japanese softsub ?
booman (uploader)
@Deus_Ex_Machina
I didn’t record anything. This is a proper, untouched download.
Use some packet capture application on your smartphone. Or if you’re using an android emulator on your pc just use wireshark with winpcap, that’s easier. Then capture the moment you start a video. Look inside the log for GET requests with http.request.method == "GET"
First GET request should point to a manifest.mpd. Just open the link in your browser and it’ll download the mpd file. Then use “ffmpeg -i manifest.mpd -c copy output.mp4” to download the video/audio file. Subtitles aren’t downloaded, dunno why. Just open the manifest.mpd in notepad++ and you’ll see a direct link to the subtitles in VTT format. Optionally convert these to a more common filetype like SRT or ASS. That’s all.