Downloading video from Youtube using JAVA - Mr.Kurd - 02-06-2019
In The Name OF Allah
Al-Salam Alekum
Guys today am going to teach you How to download Youtubes video using Java but you can make your own tool with any other language the tutorial purpose is to understand the method used to download videos.
For any video we are getting its ID in ex. https://www.youtube.com/watch?v=B7bqAsxee4I The ID = B7bqAsxee4I
What to do next is getting this Video info, Youtube provide us a way to get any video info, Which contain URLs we can download videos from: https://www.youtube.com/get_video_info?&video_id=ID_Here
We will fetch our video info by visiting this URL: https://www.youtube.com/get_video_info?&video_id=B7bqAsxee4I
You will download a file called get_video_info Basically we will search for a URL, you may find more than a URL which used for different Qualities of the Video.
![[Image: Screenshot-7.png]](https://i.ibb.co/HP3WnW9/Screenshot-7.png)
In this file we will search for a wrod: "url_encoded_fmt_stream_map" What come after it, You should see URLs start with &url= or url=
This file had been encoded with URL Encoding for batter understanding it and making it easier to search for URL even IF we used a tool it is somewhat hard to get the URL because they had been encoded. We will decode it Two times using any decoding method for example this websites: https://www.urldecoder.org/
![[Image: Screenshot-9.png]](https://i.ibb.co/NxxxrSZ/Screenshot-9.png)
You can see the URL batter now, IF we visit any of these URLs we are getting the video and using an Open stream in any Programming language we can download the Video. The URL start from url= to &tag Some of videos its URL differ so may need another way of Parsing.
Let us download this video using a simple Java tool:
Source:
PHP Code: package youtubedownloader;
import java.io.BufferedInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.util.logging.Level; import java.util.logging.Logger;
/** * * @author Mr.Kurd */ public class downloading {
/** * @param args the command line arguments */ private static URL downloadURL; public static void main(String[] args) { try { downloadURL = new URL("URL Here"); } catch (MalformedURLException ex) { Logger.getLogger(downloading.class.getName()).log(Level.SEVERE, null, ex); } long length; boolean completed = false; int count = 0; try (BufferedInputStream bis = new BufferedInputStream(downloadURL.openStream()); FileOutputStream fos = new FileOutputStream("Kurdy.mp4")) { length = downloadURL.openConnection().getContentLength(); int i = 0; final byte[] data = new byte[1024]; while ((count = bis.read(data)) != -1) { i += count; fos.write(data, 0, count); } } catch (IOException ex) {} } }
Replace your Download link with URL HERE in side the source and run it, Video Downloaded:
![[Image: Screenshot-11.png]](https://i.ibb.co/3sprPL1/Screenshot-11.png)
I think you got the idea, Now what our program will do to download video is auto doing steps above.
- Getting the Video ID.
- Downloading get_video_info.
- Parsing the info file till getting the URL.
- Open stream downloading the video from the URL.
The tool "Created and Developed by Deepank Pant" The Source:
PHP Code: /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package YoutubeDownloader;
import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import java.net.URLDecoder; import javafx.application.Application; import javafx.concurrent.Service; import javafx.concurrent.Task; import javafx.concurrent.WorkerStateEvent; import javafx.event.ActionEvent; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Alert; import javafx.scene.control.Alert.AlertType; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.ProgressBar; import javafx.scene.control.TextField; import javafx.scene.text.Font; import javafx.stage.Stage; /** * * @author Passionate Coder */ public class download extends Application { /*java fx UI element used in the javafx application*/ private Button downloadBtn = new Button(); private TextField youtubeUrlField = new TextField(); private TextField fileName = new TextField(); private Label label1 = new Label(); private Label label2 = new Label(); private Label about = new Label("Created and Developed by Deepank Pant"); private ProgressBar pbar = new ProgressBar(0); private URL downloadURL; @Override public void start(Stage primaryStage) { /*Font used in the project*/ Font poorRichard = new Font("Poor Richard", 16); Font poorRichard2 = new Font("Poor Richard", 13); /*setting for the UI element*/ downloadBtn.setText("Download"); downloadBtn.setFont(poorRichard); downloadBtn.setLayoutX(10); downloadBtn.setLayoutY(200); youtubeUrlField.setFont(poorRichard); youtubeUrlField.setLayoutX(10); youtubeUrlField.setLayoutY(80); youtubeUrlField.setPrefColumnCount(23); fileName.setFont(poorRichard); fileName.setLayoutX(10); fileName.setLayoutY(150); fileName.setPrefColumnCount(23); label1.setFont(poorRichard); label1.setText("Youtube URL"); label1.setLayoutX(10); label1.setLayoutY(50); label2.setFont(poorRichard); label2.setText("File Name (Optional)"); label2.setLayoutX(10); label2.setLayoutY(120); pbar.setVisible(false); pbar.setPrefWidth(350); pbar.setLayoutX(100); pbar.setLayoutY(200); about.setFont(poorRichard2); about.setLayoutX(20); about.setLayoutY(260); /*Event is triggered when we press the download button*/ downloadBtn.setOnAction((ActionEvent event) -> { sendHTTPRequest.restart(); }); /*Event is triggered when the sendHTTP request service completed successfully*/ sendHTTPRequest.setOnSucceeded((WorkerStateEvent we) -> { try { System.out.print(getURLS(sendHTTPRequest.getValue()).toString()); downloadURL = new URL(getURLS(sendHTTPRequest.getValue())); pbar.progressProperty().unbind(); pbar.setProgress(0); pbar.progressProperty().bind(VideoDownload.progressProperty()); pbar.setVisible(true); /*if everything goes right then it will start a new service to download the video*/ VideoDownload.restart(); } catch (MalformedURLException ex) { Alert msg = new Alert(AlertType.INFORMATION); msg.setTitle("Message from Youtube Downloader"); msg.setContentText("Invalid Url"); msg.showAndWait(); } }); /*Event is fired when videDownload service is completed successfully*/ VideoDownload.setOnSucceeded((WorkerStateEvent we) -> { boolean val = VideoDownload.getValue(); System.out.println(val); if (val) { Alert msg = new Alert(AlertType.INFORMATION); msg.setTitle("Message from Youtube Downloader"); msg.setContentText("Download complete"); msg.showAndWait(); } else { Alert msg = new Alert(AlertType.INFORMATION); msg.setTitle("Message from Youtube Downloader"); msg.setContentText("Download Failed"); msg.showAndWait(); } pbar.setVisible(false); }); Group root = new Group(); root.getChildren().add(downloadBtn); root.getChildren().add(youtubeUrlField); root.getChildren().add(fileName); root.getChildren().add(label1); root.getChildren().add(label2); root.getChildren().add(pbar); root.getChildren().add(about); Scene scene = new Scene(root, 500, 280); primaryStage.setTitle("Youtube Downloader"); primaryStage.setScene(scene); primaryStage.setResizable(false); primaryStage.show(); } /*Method to extract the video id from the url. if the url does not contain 'v=' parameter then it will not work. It will accept only standard url*/ private String getVideoID(String url) { int index = url.indexOf("v="); String id = ""; index += 2; for (int i = index; i < url.length(); i++) id += url.charAt(i); return id; } /*This service send the HTTP Request to the youtube server. In response the youtube server sends the video information. This information contains the url in the encoded format. This method decode the url return it as a StringBuilder Object*/ final private Service < StringBuilder > sendHTTPRequest = new Service < StringBuilder > () { @Override protected Task < StringBuilder > createTask() { return new Task < StringBuilder > () { @Override protected StringBuilder call() { String response; StringBuilder res = new StringBuilder(); StringBuilder refinedres = new StringBuilder(); try { URL url = new URL("https://www.youtube.com/get_video_info?&video_id=" + getVideoID(youtubeUrlField.getText())); System.out.println(url.toString()); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); System.out.println(conn.getResponseMessage()); BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream())); while ((response = in .readLine()) != null) res.append(response); refinedres.append(URLDecoder.decode(URLDecoder.decode(res.toString(), "UTF-8"), "UTF-8")); in .close(); return refinedres; } catch (MalformedURLException ex) {} catch (IOException ex) {} return null; } }; } }; /*This service will download the videos using the URL*/ Service < Boolean > VideoDownload = new Service < Boolean > () { @Override protected Task < Boolean > createTask() { return new Task < Boolean > () { @Override protected Boolean call() throws Exception { long length; boolean completed = false; int count = 0; try (BufferedInputStream bis = new BufferedInputStream(downloadURL.openStream()); FileOutputStream fos = new FileOutputStream(fileName.getText().length() == 0 ? "video.mp4" : fileName.getText().concat(".mp4"))) { length = downloadURL.openConnection().getContentLength(); int i = 0; final byte[] data = new byte[1024]; while ((count = bis.read(data)) != -1) { i += count; fos.write(data, 0, count); updateProgress(i, length); } completed = true; } catch (IOException ex) {} return completed; } }; } }; /*This methid receives refined response as a paramter and extract the url from the response which will be used to download the video from the youtube*/ private String getURLS(StringBuilder response) { StringBuilder temp1 = new StringBuilder(); String[] temp2, temp3, temp4; try { int index = response.indexOf("url_encoded_fmt_stream_map"); for (int i = index; i < response.length(); i++) { temp1.append(response.charAt(i)); } temp2 = temp1.toString().split("&url="); if (temp2.length > 0) { temp3 = temp2[1].split(";"); if (temp3.length > 0) { temp4 = temp3[0].split(","); if (temp4.length > 0) return temp4[0]; else return temp3[0]; } else return temp2[1]; } } catch (Exception e) { Alert msg = new Alert(AlertType.INFORMATION); msg.setTitle("Message form youtube Downloader"); msg.setContentText("Error in downloading"); msg.showAndWait(); } return null; } /** * @param args the command line arguments */ public static void main(String[] args) { launch(args); } }
![[Image: Screenshot-12.png]](https://i.ibb.co/hR8H6Vv/Screenshot-12.png)
I hope you liked the tutorial..
For any grammatically error am sorry and if you have any question ask below.
Wa Salam Alekum
RE: Downloading video from Youtube using JAVA - darkninja1980 - 02-07-2019
wow, another great guide to read and learn from.
RE: Downloading video from Youtube using JAVA - mothered - 02-07-2019
Brilliant guide.
Well formatted, elaborated and Illustrated. I look forward to further tutorials of this quality.
RE: Downloading video from Youtube using JAVA - darkninja1980 - 02-07-2019
(02-07-2019, 03:30 AM)mothered Wrote: Brilliant guide.
Well formatted, elaborated and Illustrated. I look forward to further tutorials of this quality.
Yes I feel the same way.
RE: Downloading video from Youtube using JAVA - Mr.Kurd - 02-07-2019
(02-07-2019, 12:29 AM)darkninja1980 Wrote: wow, another great guide to read and learn from.
(02-07-2019, 03:30 AM)mothered Wrote: Brilliant guide.
Well formatted, elaborated and Illustrated. I look forward to further tutorials of this quality.
Thank you, I hope you got benifit from.
RE: Downloading video from Youtube using JAVA - darkninja1980 - 02-07-2019
(02-07-2019, 11:33 AM)Mr.Kurd Wrote: (02-07-2019, 12:29 AM)darkninja1980 Wrote: wow, another great guide to read and learn from.
(02-07-2019, 03:30 AM)mothered Wrote: Brilliant guide.
Well formatted, elaborated and Illustrated. I look forward to further tutorials of this quality.
Thank you, I hope you got benifit from.
you are very welcome.
RE: Downloading video from Youtube using JAVA - mothered - 02-07-2019
(02-07-2019, 11:33 AM)Mr.Kurd Wrote: (02-07-2019, 12:29 AM)darkninja1980 Wrote: wow, another great guide to read and learn from.
(02-07-2019, 03:30 AM)mothered Wrote: Brilliant guide.
Well formatted, elaborated and Illustrated. I look forward to further tutorials of this quality.
I hope you got benifit from.
Definitely.
It must've taken quite a while to complete the tutorial, so thanks for a quality guide.
RE: Downloading video from Youtube using JAVA - darkninja1980 - 02-07-2019
(02-07-2019, 03:11 PM)mothered Wrote: (02-07-2019, 11:33 AM)Mr.Kurd Wrote: (02-07-2019, 12:29 AM)darkninja1980 Wrote: wow, another great guide to read and learn from.
(02-07-2019, 03:30 AM)mothered Wrote: Brilliant guide.
Well formatted, elaborated and Illustrated. I look forward to further tutorials of this quality.
I hope you got benifit from.
Definitely.
It must've taken quite a while to complete the tutorial, so thanks for a quality guide.
good point.
RE: Downloading video from Youtube using JAVA - gelandangan - 05-14-2019
walaikum salam..
Thank's good job!
RE: Downloading video from Youtube using JAVA - Mr.Kurd - 05-28-2019
(05-14-2019, 07:04 PM)gelandangan Wrote: walaikum salam..
Thank's good job!
Thank you for been here and you welcome.
|