Skip to content Skip to sidebar Skip to footer

Download The Second Half Of A Video Using Http's Range Header

I want to download the second half of a video I have on my local host, I wrote some python code to download the file starting from the half to the end(via http's Range header) but

Solution 1:

You would need to download the complete moov. From there you can get the offset to the middle frame, You can then download for that frame to end (assuming the frames are in order, Likely, but not required by mp4). Next rewrite the moov using only the entries you wish to keep, and make sure all the offsets are adjusted to match the new chunks offsets.


Post a Comment for "Download The Second Half Of A Video Using Http's Range Header"