Colta is a small app designed to simplify the process of converting YouTube videos. The idea came up because Justi was annoyed by having to search for online converters, which often have download limits or simply don’t work as expected.
The build is configured to generate a version of the app for Macs with ARM
processors. If you're using an Intel Mac, you can easily change the parameter by
replacing --arch=arm64 with --arch=x64. Either way, I'll leave both versions
available in the releases.
-
Easy YouTube Downloads
Convert YouTube videos to MP3 or MP4 by simply pasting the video URL. -
Modern Utility Design
Looks cool and is easy to use.
-
Clone the repository:
git clone https://github.com/cijjas/colta.git cd colta -
Install Dependancies
npm install
-
Ensure binaries are executable
chmod +x bin/yt-dlp bin/ffmpeg
npm startThis will launch the Electron app. Enter a YouTube URL, and choose to download as MP3 or MP4.
To package the app for macOS (ARM64 or x64), run:
npm run buildThe packaged .app will be created in the output folder. Zip the .app file to share it with your friends.
On macOS, if the app is blocked, try running:
sudo xattr -rd com.apple.quarantine /path/to/Colta.appEnsure that yt-dlp and ffmpeg are correctly placed in the bin folder and marked as executable.
