A portable desktop app for tagging your audio files.
Firstly, go to the releases page of the app's repository. Choose the release you want to use, and dowload either the corresponding package or ZIP archive, depending on your platform.
You can either:
- Download and unpack the .deb package
- Or download and extract the ZIP archive to your favourite directory. In order to run the app, open a terminal in this directory and run:
./electron-audio-tagger
Simply extract the ZIP archive into your favourite directory and run the electron-audio-tagger
executable.
Click the Open directory button, and choose a directory containing audio files.
For each file you want to edit, click on the Edit button (pen icon), and a dialog window will open.
Edit the properties as you please, and to conclude, click on the Edit file button.
Supported formats: MP3, WAV, WMA, AAC, FLAC, OGG, AIFF, M4A.
If you encounter any issue, you can write an email to the maintainer.
And if you have a Github account, please don't hesitate to open an issue in the repository.
Since this app uses Electron (with React and Typescript), the local installation is straightforward.
npm install
It uses the node-id3 library, to read and edit tags from the files.
Linting is done through ESLint and some useful plugins, and formatting is done through Prettier.
There are various available scripts to perform linting and formatting.
- Linting the code:
npm run lint
- Linting the code and automatically fixing errors:
npm run lint:fix
- Formatting the code:
npm run format
Unit tests are ran with Jest. UI testing is implemented with React Testing Library (RTL)
- To run the unit tests:
npm t
- To run the unit tests and output code coverage:
npm run test:ci
. Coverage can be analyzed in thecoverage/
directory.
E2E tests are ran with TestCafé and its Electron Browser Provider. They are implemented with TestCafé Testing Library. To run the E2E test suite(s), simply execute npm run test:e2e
.
This app uses Electron Forge, with the Webpack template, to start, package and publish it. The development server (with hot reload) can be started by running: npm start
.
Electron Forge takes care of building the executable for the platform you are using. If you are using Linux, it will create both a DEB package, and a ZIP archive. To build your executable, simply run: npm run make
.
This app is open-source, so contribution is highly encouraged. If you wish to do so, for a fix, a feature, etc... Here are the steps:
- Open an issue in the repository, describing what you want to implement
- If you are unsure about the validity of your idea, or prefer to wait for approval before opening a PR, don't hesitate to ask
- Branch out from the
dev
branch - Open a PR when you are done