https://github.com/monkeywie/gopeed-extension-youtube
Youtube video download extension of gopeed.
https://github.com/monkeywie/gopeed-extension-youtube
gopeed-extension youtube youtube-dl youtube-downloader
Last synced: 5 months ago
JSON representation
Youtube video download extension of gopeed.
- Host: GitHub
- URL: https://github.com/monkeywie/gopeed-extension-youtube
- Owner: monkeyWie
- Created: 2023-11-30T10:52:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-08T01:43:38.000Z (10 months ago)
- Last Synced: 2025-05-09T04:07:49.285Z (6 months ago)
- Topics: gopeed-extension, youtube, youtube-dl, youtube-downloader
- Language: JavaScript
- Homepage:
- Size: 1.85 MB
- Stars: 393
- Watchers: 2
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gopeed YouTube Extension
Download YouTube videos easily with [Gopeed](https://gopeed.com).
## Install
Open the `Gopeed` extension page, enter `https://github.com/monkeyWie/gopeed-extension-youtube`, and click install.

## Usage
Create task with youtube video url, and click `Download` button, then the video will be resolved and ready to download.

### Video Quality
Typically 1080p or better videos do not have audio encoded with it, this extension defaults to downloading audio and video without separation, so the video quality will all be lower than 1080p. If you want to download the highest quality video, you can choose the `audio` and `video` separately on extension settings page, and then use `ffmpeg` to merge them.
- ffmpeg command
```bash
ffmpeg -i video.webm -i audio.mp4 -c:v copy -c:a copy output.mp4
```
## Useful Links
- [YouTube.js](https://github.com/LuanRT/YouTube.js)
- [How to develop a gopeed extension](https://docs.gopeed.com/dev-extension.html)