Fixed typo in the README

This commit is contained in:
2026-07-24 22:30:32 +01:00
parent 79f98c74c1
commit 5298ffcf99
+5 -5
View File
@@ -34,7 +34,7 @@ This script downloads YouTube playlists while maintaining a persistent database
## Installation ## Installation
1. Clone or download this script to your system 1. Clone or download this script to your system
2. Create the configuration file at `/opt/podcast-pownloader/PODCAST_NAME/podcast_settings.conf` (if you change the config file location, remember to update the "CONFIG_FILE=" in the podcast_downloader.sh script) 2. Create the configuration file at `/opt/podcast-downloader/PODCAST_NAME/podcast_settings.conf` (if you change the config file location, remember to update the "CONFIG_FILE=" in the podcast_downloader.sh script)
3. Update the configuration with your specific paths and preferences (see Configuration section) 3. Update the configuration with your specific paths and preferences (see Configuration section)
4. Make the script executable: 4. Make the script executable:
``` ```
@@ -50,10 +50,10 @@ Create a configuration file at the path specified in `CONFIG_FILE`. Required var
|----------|-------------|---------| |----------|-------------|---------|
| `DOWNLOAD_DIR` | Temporary directory for intermediate files | `/tmp/` | | `DOWNLOAD_DIR` | Temporary directory for intermediate files | `/tmp/` |
| `FINAL_DIR` | Directory where processed videos and audio are saved | `/location/to/save/directory` | | `FINAL_DIR` | Directory where processed videos and audio are saved | `/location/to/save/directory` |
| `LOG_DIR` | Directory for storing log files | `/opt/podcast-pownloader/PODCAST_NAME/` | | `LOG_DIR` | Directory for storing log files | `/opt/podcast-downloader/PODCAST_NAME/` |
| `LOG_FILE` | Path to the main activity log | `/opt/podcast-pownloader/PODCAST_NAME/.youtube_downloader.log` | | `LOG_FILE` | Path to the main activity log | `/opt/podcast-downloader/PODCAST_NAME/.youtube_downloader.log` |
| `DOWNLOADS_LOG` | Path to the downloads database | `/opt/podcast-pownloader/PODCAST_NAME/downloaded_episodes.log` | | `DOWNLOADS_LOG` | Path to the downloads database | `/opt/podcast-downloader/PODCAST_NAME/downloaded_episodes.log` |
| `DOWNLOADS_LOCK` | Path to lock directory (must not exist) | `/opt/podcast-pownloader/PODCAST_NAME/.podcast_downloads.lock` | | `DOWNLOADS_LOCK` | Path to lock directory (must not exist) | `/opt/podcast-downloader/PODCAST_NAME/.podcast_downloads.lock` |
| `MAX_LOG_SIZE` | Maximum log file size in bytes before rotation | `10485760` (10 MB) | | `MAX_LOG_SIZE` | Maximum log file size in bytes before rotation | `10485760` (10 MB) |
| `QUALITY` | yt-dlp format specification | `137+140` | | `QUALITY` | yt-dlp format specification | `137+140` |
| `VIDEO_FORMAT` | Output video container format | `mp4` | | `VIDEO_FORMAT` | Output video container format | `mp4` |