How to create file and write file (over byte)
Hi,
I read this tutorial about streaming video-on-deman over p2p network. It load video file through URL, and split file to chunks, save in RAM. If file has big size, it may be crash...
I want store data file (load from URL) in hard disk. And my player can play file from harddisk, not RAM.
First, I start load video file over URL, I can get size of this file (example 18MB), and create a video file 18MB size. Then, my created file is ingested by bytes load from URL.
It similary Torrent.
Is this possible ?