Compare commits
5 Commits
v0.7.1
..
a7edde8a32
| Author | SHA1 | Date | |
|---|---|---|---|
| a7edde8a32 | |||
| 4204483792 | |||
| 94ef814fa7 | |||
| 78a168ca5c | |||
| 3b9dd6788d |
+2
-2
@@ -10,8 +10,8 @@ dist
|
|||||||
|
|
||||||
# Secrets — never commit
|
# Secrets — never commit
|
||||||
.gitea-token
|
.gitea-token
|
||||||
# Retired: no longer read by the build (baked update token removed), but the
|
# Retired: the baked update token was removed from the build and its service
|
||||||
# local file still holds a live token until it's revoked — keep it ignored.
|
# account revoked; kept ignored so a stray local .update-token can never be committed.
|
||||||
.update-token
|
.update-token
|
||||||
|
|
||||||
# VS Code user settings (workspace settings/.vscode/launch.json are committed)
|
# VS Code user settings (workspace settings/.vscode/launch.json are committed)
|
||||||
|
|||||||
@@ -0,0 +1,89 @@
|
|||||||
|
<div align="center">
|
||||||
|
|
||||||
|
# AeroFetch
|
||||||
|
|
||||||
|
**A clean, native-feeling video & audio downloader for Windows — a friendly front-end for [yt-dlp](https://github.com/yt-dlp/yt-dlp).**
|
||||||
|
|
||||||
|
Paste a link, pick a quality, and go. No command line, no Python setup, no chasing down FFmpeg — everything is bundled.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## What it is
|
||||||
|
|
||||||
|
AeroFetch wraps the power of yt-dlp in a modern Windows desktop app. It handles single videos, whole playlists, and watched channels; it can grab audio-only, embed thumbnails and metadata, trim clips, skip sponsor segments, and keep a library of channels in sync — all from a point-and-click interface built with Fluent UI.
|
||||||
|
|
||||||
|
It ships as a **regular installer** *and* a **single portable `.exe`** (no admin rights required), with `yt-dlp`, `FFmpeg`, and `aria2c` bundled in — so it runs on a fresh machine with nothing else installed.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **One-paste downloads** — drop in a video or playlist URL and press Enter. Clipboard detection can offer the link automatically.
|
||||||
|
- **Format & quality control** — pick a resolution/codec (H.264 / VP9 / AV1), or extract audio to MP3, M4A, Opus, FLAC, WAV, or AAC.
|
||||||
|
- **Playlists & channels** — select which videos to grab, or add a channel to your **Library** and let AeroFetch watch it for new uploads.
|
||||||
|
- **Post-processing** — embed thumbnails, metadata, chapters, and subtitles; **SponsorBlock** to skip or mark sponsor segments; trim to a start/end timestamp.
|
||||||
|
- **Queue that behaves** — concurrent downloads with a configurable cap, pause/resume, cancel, retry-all, and live speed/ETA.
|
||||||
|
- **Library & sync** — organized per-source folders, scheduled daily sync, retention rules, and quality-upgrade selectors.
|
||||||
|
- **History** — searchable, filterable record of everything you've downloaded, with quick open-file / show-in-folder / re-download.
|
||||||
|
- **Fast & convenient** — `aria2c` acceleration, a `Ctrl+K` command palette, light / dark / auto themes, and native Windows notifications.
|
||||||
|
- **Portable-friendly** — runs from a USB stick or Downloads folder without installing or needing admin rights.
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
|
|
||||||
|
| Downloads (light) | Downloads (dark) |
|
||||||
|
| :---: | :---: |
|
||||||
|
|  |  |
|
||||||
|
|
||||||
|
| Library — watched channels & playlists | History — searchable & filterable |
|
||||||
|
| :---: | :---: |
|
||||||
|
|  |  |
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
**Settings — grouped & searchable**
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Download & install
|
||||||
|
|
||||||
|
Grab the latest build from the [**Releases**](https://gitea.netbird.zimspace.uk:5938/debont80/AeroFetch/releases) page:
|
||||||
|
|
||||||
|
- **`AeroFetch Setup <version>.exe`** — standard installer. Installs per-user (no admin), adds a Start-menu shortcut, and auto-updates.
|
||||||
|
- **`AeroFetch-<version>-portable.exe`** — single self-contained executable. No install, no admin; keeps its data in an `AeroFetch-data` folder beside the `.exe`. Ideal for locked-down or shared PCs.
|
||||||
|
|
||||||
|
Each release also publishes a `.sha256` next to every executable so you can verify the download.
|
||||||
|
|
||||||
|
> Because the executables aren't code-signed, Windows SmartScreen may warn on first launch — choose **More info → Run anyway**. No administrator rights are required either way.
|
||||||
|
|
||||||
|
## Build from source
|
||||||
|
|
||||||
|
Requires **Node.js 24.x**.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://gitea.netbird.zimspace.uk:5938/debont80/AeroFetch.git
|
||||||
|
cd AeroFetch
|
||||||
|
npm install
|
||||||
|
|
||||||
|
npm run dev # launch the app in development
|
||||||
|
npm run ui # preview just the renderer in a browser (http://localhost:5173)
|
||||||
|
npm test # run the test suite
|
||||||
|
npm run build:win # produce the installer + portable .exe in dist/
|
||||||
|
```
|
||||||
|
|
||||||
|
The bundled `yt-dlp.exe`, `ffmpeg.exe`, `ffprobe.exe`, and `aria2c.exe` live in `resources/bin/` and are packaged automatically.
|
||||||
|
|
||||||
|
## Tech stack
|
||||||
|
|
||||||
|
Built with **Electron** + **electron-vite** + **electron-builder**, a **React 19** / **TypeScript** renderer, **Fluent UI**, **Zustand** for state, and **Zod** for boundary validation. yt-dlp runs only in the main process; the renderer talks to it over a typed IPC bridge with context isolation enabled.
|
||||||
|
|
||||||
|
## A note on responsible use
|
||||||
|
|
||||||
|
AeroFetch is a tool for downloading media you have the right to download — your own uploads, content offered for download, or material whose license permits it. Respect the terms of service of the sites you use and the rights of content creators.
|
||||||
|
|
||||||
|
## Licensing
|
||||||
|
|
||||||
|
AeroFetch bundles third-party binaries under their own licenses: **yt-dlp** (Unlicense), **FFmpeg** (LGPL/GPL), and **aria2** (GPL). Those licenses apply to their respective executables in `resources/bin/`.
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 92 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "aerofetch",
|
"name": "aerofetch",
|
||||||
"version": "0.7.1",
|
"version": "0.7.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "aerofetch",
|
"name": "aerofetch",
|
||||||
"version": "0.7.1",
|
"version": "0.7.2",
|
||||||
"license": "UNLICENSED",
|
"license": "UNLICENSED",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@electron-toolkit/utils": "^4.0.0",
|
"@electron-toolkit/utils": "^4.0.0",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "aerofetch",
|
"name": "aerofetch",
|
||||||
"version": "0.7.1",
|
"version": "0.7.2",
|
||||||
"description": "A yt-dlp frontend for Windows",
|
"description": "A yt-dlp frontend for Windows",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "AeroFetch",
|
"author": "AeroFetch",
|
||||||
|
|||||||
+7
-6
@@ -4,15 +4,16 @@
|
|||||||
* timeouts, caps, tickers) and from user settings (settings.ts). Retarget a
|
* timeouts, caps, tickers) and from user settings (settings.ts). Retarget a
|
||||||
* fork's update source by editing these three values.
|
* fork's update source by editing these three values.
|
||||||
*
|
*
|
||||||
* The update source is a PUBLIC, releases-only repo — it holds no source, just
|
* The update source is the main AeroFetch repo itself, made PUBLIC — so anonymous
|
||||||
* the published installers — so anonymous reads work and the updater sends no
|
* reads work and the updater sends no auth at all; there is no secret in the bundle
|
||||||
* auth at all. Keeping releases separate from the (private) source repo is what
|
* to leak. (A prior design split releases into a separate releases-only repo so the
|
||||||
* lets the client stay tokenless: there is no secret in the bundle to leak. A
|
* source could stay private; that's retired now that the source repo is public
|
||||||
* private fork retargets its updater by editing these constants and rebuilding.
|
* itself — one fewer moving part.) A private fork retargets its updater by editing
|
||||||
|
* these constants and rebuilding.
|
||||||
*/
|
*/
|
||||||
export const UPDATE_HOST = 'https://gitea.netbird.zimspace.uk:5938'
|
export const UPDATE_HOST = 'https://gitea.netbird.zimspace.uk:5938'
|
||||||
export const UPDATE_OWNER = 'debont80'
|
export const UPDATE_OWNER = 'debont80'
|
||||||
export const UPDATE_REPO = 'AeroFetch-releases'
|
export const UPDATE_REPO = 'AeroFetch'
|
||||||
export const RELEASE_API = `${UPDATE_HOST}/api/v1/repos/${UPDATE_OWNER}/${UPDATE_REPO}/releases/latest`
|
export const RELEASE_API = `${UPDATE_HOST}/api/v1/repos/${UPDATE_OWNER}/${UPDATE_REPO}/releases/latest`
|
||||||
|
|
||||||
// --- ffmpeg dependency source ------------------------------------------------
|
// --- ffmpeg dependency source ------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user