{"id":15201621,"url":"https://github.com/x45iq/jtube","last_synced_at":"2026-03-05T20:42:54.779Z","repository":{"id":228458022,"uuid":"770570453","full_name":"x45iq/jtube","owner":"x45iq","description":"Java library for parsing: videos,shorts,playlists,channels and downloading videos","archived":false,"fork":false,"pushed_at":"2024-04-13T22:39:21.000Z","size":33,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-15T00:26:42.446Z","etag":null,"topics":["java","library","parser","youtube","youtube-api","youtube-downloader","youtube-video"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/x45iq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-11T19:24:27.000Z","updated_at":"2024-03-26T22:54:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"da869ae8-5918-47b4-abdf-c6c68ba0d124","html_url":"https://github.com/x45iq/jtube","commit_stats":null,"previous_names":["x45iq/jtube"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fjtube","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fjtube/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fjtube/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fjtube/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/x45iq","download_url":"https://codeload.github.com/x45iq/jtube/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241884912,"owners_count":20036848,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","library","parser","youtube","youtube-api","youtube-downloader","youtube-video"],"created_at":"2024-09-28T03:20:18.342Z","updated_at":"2026-03-05T20:42:49.730Z","avatar_url":"https://github.com/x45iq.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![badge-jdk](https://img.shields.io/badge/jdk-8-green.svg)](https://www.oracle.com/java/technologies/downloads/)\n[![License badge](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/license/mit)\n\n# jtube\nJava library for parsing: videos,shorts,playlists,channels and downloading videos\n \n## Description\n\nI don't like web downloaders with adds and low info that's why I present to you jtube.\n\n*jtube* is a lightweight library written in Java. It has some dependencies, but that's not a problem.\n\n*jtube* allows you to get information about videos and more, and then download them with the ability to track the status.\n\n## Features\n\n- Support for video,shorts,playlist,channel\n- Support for downloading video,subtitles,audio tracks with special language\n- Ability to capture thumbnail URL\n- Extensively documented source code\n\n## Quickstart\nWill be later\n\n### Installation\n\njtube requires an installation of Java 8+\n\nTo install from Gradle:\n\n```gradle\nimplementation 'io.github.x45iq:jtube:1.0.1'\n```\nTo install from Maven:\n\n```maven\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.x45iq\u003c/groupId\u003e\n    \u003cartifactId\u003ejtube\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Using jtube\n\nTo get video by url\n\n```java\nif(VideoParser.isUrlSupported(url)){\n    Video video = new VideoParser().parse(url);\n}\n```\n\nTo get all videos in playlist\n\n```java\nif(PlaylistParser.isUrlSupported(url)) {\n    Playlist playlist = new PlaylistParser().parse(url);\n    playlist.videos().forEach(System.out::println);\n}\n```\n\nTo get all videos in channel\n\n```java\nif(ChannelParser.isUrlSupported(url)) {\n    Channel channel = new ChannelParser().parse(url);\n    channel.videos().forEach(System.out::println);\n}\n```\n\nTo download any StreamingData from video\n\n```java\nStreamingData streamingData = ...;\nFile folderToSave = new File(\"...\");\nFile result = new StreamingDataDownloader.Builder()\n        .streamingData(streamingData)\n        .folder(folderToSave)\n        .progressCallback(System.out::println)\n        .build()\n        .download();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx45iq%2Fjtube","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fx45iq%2Fjtube","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx45iq%2Fjtube/lists"}