Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-25T10:21:16.000Z (3 months ago)
- Last Synced: 2024-12-14T16:05:25.778Z (7 days ago)
- Topics: gopeed-extension, youtube, youtube-dl, youtube-downloader
- Language: JavaScript
- Homepage:
- Size: 1.72 MB
- Stars: 326
- Watchers: 2
- Forks: 9
- Open Issues: 3
-
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.
![](image/install.gif)
## Usage
Create task with youtube video url, and click `Download` button, then the video will be resolved and ready to download.
![](image/create.gif)
### 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)