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.
- Install Tauri CLI
npm install -g @tauri-apps/cli
or I prefer to use cargo -
cargo install tauri-cli
- Clone the repository
- Install the dependencies
npm install
- Run the app
npm run tauri dev
First, to use it on desktop, you need to build the app. To do that, run the following command:
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:
- Paste the YouTube video URL in the input field
- Click the "Download" button
- Wait for the download to finish
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).