{"id":36964517,"url":"https://github.com/lfcypo/biliget","last_synced_at":"2026-02-10T10:10:48.215Z","repository":{"id":328167119,"uuid":"965906397","full_name":"lfcypo/biliget","owner":"lfcypo","description":"简单的B站视频下载工具 免登录下载B站高清视频","archived":false,"fork":false,"pushed_at":"2026-01-29T15:16:03.000Z","size":80,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-30T03:55:59.950Z","etag":null,"topics":["bilibili","cli","download","downloader","video"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/lfcypo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-14T05:19:36.000Z","updated_at":"2026-01-29T15:16:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lfcypo/biliget","commit_stats":null,"previous_names":["lfcypo/biliget"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/lfcypo/biliget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lfcypo%2Fbiliget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lfcypo%2Fbiliget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lfcypo%2Fbiliget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lfcypo%2Fbiliget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lfcypo","download_url":"https://codeload.github.com/lfcypo/biliget/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lfcypo%2Fbiliget/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29297103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T09:11:24.369Z","status":"ssl_error","status_checked_at":"2026-02-10T09:10:47.789Z","response_time":65,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bilibili","cli","download","downloader","video"],"created_at":"2026-01-13T19:37:27.875Z","updated_at":"2026-02-10T10:10:48.209Z","avatar_url":"https://github.com/lfcypo.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BiliGet\n\n简单的 B 站视频下载工具 支持免登录下载 B 站高清视频\n\n## 使用\n\n### 使用前\n\n在使用前，您需要安装[FFmpeg](https://ffmpeg.org/)命令行工具，并将其二进制程序添加至环境变量中。\n\n对于 Windows 系统，您可以使用[Scoop](https://scoop.sh/)。\n\n```shell\nscoop install ffmpeg\n```\n\n对于 macOS 系统，您可以使用[HomeBrew](https://brew.sh/)。\n\n```shell\nbrew install ffmpeg\n```\n\n在 Linux 系统上，您也可以使用您喜爱的方式进行安装。\n\n### 下载\n\n默认模式：自动合并音视频为一个`.mp4`视频文件\n\n```shell\n./biliget [url]\n```\n\n仅下载音频：保存为`.wav`音频文件\n\n```shell\n./biliget [url] -a\n```\n\n指定下载位置：可以指定目标路径或目标文件名 支持绝对路径和相对路径\n\n```shell\n./biliget [url] -o [path]\n```\n\n## 编译与构建\n\nGitHub Action 会自动编译构建并发布至[Release页面](https://github.com/lfcypo/biliget/releases)\n\n如您需要自行编译，请参考以下指南：\n\n请确保您安装并配置了[Rust](https://rust-lang.org/)语言开发工具链。\n\n```shell\ngit clone https://github.com/lfcypo/biliget.git\ncd biliget\ncargo update\ncargo build --release\n```\n\n然后 您可以在`target/release/`目录下找到您编译的可执行文件 `biliget`\n\n## 待实现的功能\n\n- :white_check_mark: GitHub Action 自动构建与发布\n- :white_check_mark: 多线程下载\n- 字幕、弹幕下载\n\n## 常见问题\n\n### 命令执行出错\n\n```text\nzsh: parse error near `\u0026'\n```\n\n请把`[url]`的部分使用英文双引号包裹\n\n### 找不到`ffmpeg`命令\n\n请参照[使用前准备](https://github.com/lfcypo/biliget?tab=readme-ov-file#%E4%BD%BF%E7%94%A8%E5%89%8D)正确安装`ffmpeg`\n\n## 致谢\n\n- [share121/unidown](https://github.com/share121/unidown)\n- [fast-down/core](https://github.com/fast-down/core) 多线程下载由`fast-down`强劲驱动","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flfcypo%2Fbiliget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flfcypo%2Fbiliget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flfcypo%2Fbiliget/lists"}