Compare commits
3
Commits
main
..
96582c4aa0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96582c4aa0 | ||
|
|
1d9fb48d40 | ||
|
|
1b944738d2 |
@@ -11,9 +11,6 @@ This tool is perfect for users who want to standardize their media library's aud
|
||||
|
||||
`eac3-transcode` automates the often tedious process of inspecting video files, identifying specific audio tracks, and re-encoding them. It's designed to be smart about which tracks to process:
|
||||
|
||||
* **✨ Optional GUI:**
|
||||
* A user-friendly graphical interface is available for those who prefer not to use the command line. Launch it with `eac3-transcode --launch-gui`.
|
||||
|
||||
* **Scans Individual Files or Entire Directories:**
|
||||
|
||||
* Process a single video or batch-process an entire folder (including subfolders).
|
||||
@@ -116,24 +113,6 @@ __*This will use all available CPU cores for maximum speed.*__
|
||||
|
||||
`eac3-transcode --input "/path/to/your/video_folder/" --force-reprocess`
|
||||
|
||||
6. **Launching the GUI:**
|
||||
|
||||
`eac3-transcode --launch-gui`
|
||||
|
||||
The GUI provides access to all the same features as the command line, including:
|
||||
|
||||
* Browse for input files or folders.
|
||||
|
||||
* Browse for an output directory.
|
||||
|
||||
* Adjust bitrate, languages, and job count.
|
||||
|
||||
* Toggle "Dry Run" and "Force Reprocess".
|
||||
|
||||
* Manually load a custom options.json config file.
|
||||
|
||||
* A real-time log viewer to see the progress.
|
||||
|
||||
## Configuration
|
||||
|
||||
For convenience, the script supports a `options.json` file to set your preferred defaults.
|
||||
@@ -185,9 +164,6 @@ An advanced video transcoder that processes files to use E-AC3 for specific audi
|
||||
* `-h, --help`
|
||||
Show this help message and exit.
|
||||
|
||||
* `--launch-gui`
|
||||
**(Optional)** Launch the graphical user interface.
|
||||
|
||||
* `-i INPUT_PATH, --input INPUT_PATH`
|
||||
**(Required)** Path to the input video file or folder.
|
||||
|
||||
@@ -273,10 +249,11 @@ An advanced video transcoder that processes files to use E-AC3 for specific audi
|
||||
## Contributing
|
||||
|
||||
[](http://makeapullrequest.com)
|
||||
[](https://github.com/jono-rams/surround-to-eac3/graphs/contributors)
|
||||
[](https://github.com/jono-rams/surround-to-eac3/issues)
|
||||
[](https://github.com/jono-rams/surround-to-eac3/pulls)
|
||||
|
||||
Contributions, issues, and feature requests are welcome! Feel free to check [issues page](https://github.com/jono-rams/surround-to-eac3/issues).
|
||||
Contributions, issues, and feature requests are welcome! Feel free to check [issues page](https://gitea.jono-rams.work/jono/ffmpeg-audio-transcoder/issues).
|
||||
|
||||
## Contributors
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = surround-to-eac3
|
||||
version = 0.5.1
|
||||
version = 0.5.0
|
||||
author = Jonathan Rampersad
|
||||
author_email = [email protected]
|
||||
description = A CLI tool to transcode 5.1 audio in video files to E-AC3.
|
||||
|
||||
@@ -225,7 +225,7 @@ def main():
|
||||
|
||||
# --- Summary (unchanged) ---
|
||||
summary_title = "--- Dry Run Summary ---" if args.dry_run else "--- Processing Summary ---"
|
||||
processed_label = "Would be processed" if args.dry_run else "Successfully processed"
|
||||
processed_label = "Would be processed" if args.dry_row else "Successfully processed"
|
||||
|
||||
print()
|
||||
print(f"\n{summary_title}")
|
||||
|
||||
Reference in New Issue
Block a user