3

Is there a way to upload large movie file (around 5GB) and at some point interrupt the upload process, log out and come back to the website to resume de upload after 2/3 hours?

Of course, resume should be made from the same computer and referencing the same file.

4

1 に答える 1

6

これは、socket.io と HTML5 ファイルリーダー API を使用して実行できます。filereader API を使用すると、ビデオ ファイルを小さなチャンクにスライス アンド ダイスし、Web ソケットを介して Node.js に送信できます。このチャンクは明確に定義されており、列挙可能であるため、サーバーが現在ダウンロードされているチャンクを追跡している限り、いつでもアップロードを再開できます。この興味深いチュートリアルは、あなたが求めているものと非常によく似ていると思うかもしれません。

于 2013-08-16T21:26:02.377 に答える