Files
djconvert/README.md
T

44 lines
1.2 KiB
Markdown
Raw Normal View History

2026-06-05 22:13:01 +02:00
# tidalconvert
Batch convert FLAC and WAV files to 320kbps MP3 to save storage space while maintaining high enough audio quality for DJing.
## Usage
### djconvert
Organizes the current directory by moving all audio files into `original/` and `converted/` folders. Lossless files (FLAC, WAV) are converted to 320kbps MP3 and placed in `converted/`, while existing lossy files (MP3, M4A) are copied to both locations.
```text
Usage: ./djconvert
No arguments required. The script operates on the current working directory.
```
### mp3convert
A helper script used by `djconvert` to convert a single file to 320kbps MP3 using ffmpeg.
```text
Usage: ./mp3convert <input_file> <output_directory>
Arguments:
input_file Path to the FLAC or WAV file.
output_directory Directory where the resulting MP3 will be saved.
```
2026-06-05 23:01:28 +02:00
### tdl
Automates downloading a list of URLs from a text file using tiddl.
```text
Usage: ./tdl [FILE]
Arguments:
FILE Path to a text file containing one URL per line.
Options:
--help Display this help message and exit.
```
2026-06-05 22:13:01 +02:00
## Requirements
- ffmpeg (with libmp3lame support)
- bash
2026-06-05 23:01:28 +02:00
- [tiddl](https://github.com/oskvr37/tiddl) (for tdl script)