Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manaspatil0967/ytmp3-tauri

A Tauri desktop app to convert YT videos to MP3 using their URL.
https://github.com/manaspatil0967/ytmp3-tauri

desktop-app nextjs rust tauri

Last synced: about 1 month ago
JSON representation

A Tauri desktop app to convert YT videos to MP3 using their URL.

Awesome Lists containing this project

README

        

# YouTube to MP3 Converter
This is a simple YouTube to MP3 converter that uses the youtube-dl library to download the video and ffmpeg to convert it to an MP3 file. The app uses Tauri to create a desktop app from the web app.

## Installation
0. Install Tauri CLI
```bash
npm install -g @tauri-apps/cli
```
or I prefer to use cargo -
```bash
cargo install tauri-cli
```
1. Clone the repository
2. Install the dependencies
```bash
npm install
```
3. Run the app
```bash
npm run tauri dev
```

## Usage
First, to use it on desktop, you need to build the app. To do that, run the following command:
```bash
npm run tauri build
```
After building the app, you can find the setup file in the `src-tauri/target/release/bundle/msi` directory.
To use the app, follow these steps:
1. Paste the YouTube video URL in the input field
2. Click the "Download" button
3. Wait for the download to finish

## Install
To install ytmp3-tauri on Windows, use the msi package in the latest release. To use the app on other platforms, you need to build the app from the source code. Currently, Tauri supports building for Windows, macOS, and Linux (Debian and Ubuntu).