自己開發的線上視訊下載工具,基於Java多執行緒

i042416發表於2018-10-12

比如這個線上視訊:

自己開發的線上視訊下載工具,基於Java多執行緒

我們可以正常播放,但是找不到下載按鈕。

開啟Chrome開發者工具,在Network標籤頁裡能看到很多網路傳輸請求:

自己開發的線上視訊下載工具,基於Java多執行緒

隨便看一個請求的響應,發現型別為video,大小為500多k。因此,這個線上視訊被拆分成了若干500多k的小片段,然後通過瀏覽器下載到本地進行播放。

自己開發的線上視訊下載工具,基於Java多執行緒

這個片段的url:

http://d2vvqvds83fsd.cloudfront.net/vin02/vsmedia/ definst /smil:event/18/36/06/3/rt/1/resources/180919_PID_Intelligent_Enterprise_Gruenewald_720p-5F92.smil/media_b433000_10.ts

那麼這個片段一共有多少個片段呢?在所有片段開始下載之前,有這樣一個請求:chunklist即是視訊片段的清單。

自己開發的線上視訊下載工具,基於Java多執行緒

通過這個清單我們知道這個視訊一共分為55個片段,序號從0開始。

自己開發的線上視訊下載工具,基於Java多執行緒

瞭解了原理,我們就可以開始程式設計了。

1. 首先實現視訊片段的下載邏輯,新建一個類,實現Runnable介面。

自己開發的線上視訊下載工具,基於Java多執行緒

2. 使用JDK自帶的多執行緒庫 ExecutorService多執行緒下載這些片段。ExecutorService實際是一個執行緒池。第15行可以指定執行緒池裡工作執行緒(Working thread)的個數。

自己開發的線上視訊下載工具,基於Java多執行緒

private void download(){
URL task = null;
String path = DownloadLauncher.LOCALPATH + this.mIndex +
DownloadLauncher.POSTFIX;
String url = this.mTask;try {
task = new URL(url);
DataInputStream dataInputStream = new DataInputStream(task.openStream());
FileOutputStream fileOutputStream = new FileOutputStream(new File(path));
ByteArrayOutputStream output = new ByteArrayOutputStream();byte[] buffer = new byte[1024];int length;while ((length = dataInputStream.read(buffer)) > 0) {
output.write(buffer, 0, length);
}
fileOutputStream.write(output.toByteArray());
dataInputStream.close();
fileOutputStream.close();
System.out.println("File: " + this.mIndex + " downloaded ok");
}catch (MalformedURLException e) {
e.printStackTrace();
}catch (IOException e) {
e.printStackTrace();
}
}

下載完成後,能在Eclipse的console控制檯看到這些輸出:

自己開發的線上視訊下載工具,基於Java多執行緒

下載成功的視訊片段:

自己開發的線上視訊下載工具,基於Java多執行緒

3. Merger負責把這些片段合併成一個大檔案。

自己開發的線上視訊下載工具,基於Java多執行緒

private static void run() throws IOException{
FileInputStream in = null;
String destFile = DownloadLauncher.LOCALPATH +
DownloadLauncher.MERGED;
FileOutputStream out = new FileOutputStream(destFile,true);for( int i = 0; i <= DownloadLauncher.LAST; i++){byte[] buf = new byte[1024];int len = 0;
String sourceFile = DownloadLauncher.LOCALPATH + i +
DownloadLauncher.POSTFIX;
in = new FileInputStream(sourceFile);while( (len = in.read(buf)) != -1 ){
out.write(buf,0,len);
}
}
out.close();
}public static void main(String[] args) {try {
run();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("Merged ok!");
}

自己開發的線上視訊下載工具,基於Java多執行緒

完整的程式碼在我的github上:

https://github.com/i042416/JavaTwoPlusTwoEquals5/tree/master/src/flick

要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2216133/,如需轉載,請註明出處,否則將追究法律責任。

相關文章