Renamed files, Updated Readme with new files

This commit is contained in:
2025-07-16 23:02:43 +02:00
parent 35252fc068
commit dbdd8263b3

View File

@@ -1,8 +1,8 @@
# anime_audio_copilot.py
# anime_audio_encoder.py
## Overview
`anime_audio_copilot.py` is a batch-processing script for MKV files, designed for anime encoding workflows. It automates video encoding (with AV1 via SVT-AV1 and `av1an`), audio conversion (to Opus with normalization and optional downmixing), and preserves detailed per-file logs. The script also handles VFR-to-CFR conversion using HandBrakeCLI when needed.
`anime_audio_encoder.py` is a batch-processing script for MKV files, designed for anime encoding workflows. It automates video encoding (with AV1 via SVT-AV1 and `av1an`), audio conversion (to Opus with normalization and optional downmixing), and preserves detailed per-file logs. The script also handles VFR-to-CFR conversion using HandBrakeCLI when needed.
## Features
@@ -31,7 +31,7 @@ The following tools must be installed and available in your `PATH`:
Place your `.mkv` files in the working directory. Run the script:
```sh
python3 anime_audio_copilot.py
python3 anime_audio_encoder.py
```
### Optional Arguments
@@ -39,10 +39,10 @@ python3 anime_audio_copilot.py
- `--no-downmix`
Preserve original audio channel layout (do not downmix surround audio to stereo).
Example:
Example:
```sh
python3 anime_audio_copilot.py --no-downmix
python3 anime_audio_encoder.py --no-downmix
```
## Output
@@ -59,4 +59,4 @@ python3 anime_audio_copilot.py --no-downmix
## License
See repository for
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.