Commit ea10b7fc3455

Vincent Demeester <vincent@sbr.pm>
2025-12-15 12:21:17
fix(pkgs): Skip podcast episodes in audible-converter downloads
- Add --ignore-podcasts flag to prevent 406 errors on podcast content - Podcasts are streaming-only and cannot be downloaded as audiobooks - Eliminates failed downloads and improves sync reliability
1 parent 08ec9e9
Changed files (1)
pkgs
audible-converter
pkgs/audible-converter/convert.sh
@@ -144,6 +144,7 @@ download_all() {
 			--pdf \
 			--cover \
 			--quality "$QUALITY" \
+			--ignore-podcasts \
 			--output-dir "$TEMP_DIR" 2>&1; then
 			log_warn "Failed to download ASIN: $asin (may already be downloaded)"
 		fi
@@ -159,6 +160,7 @@ download_book() {
 		--asin "$asin" \
 		--aax \
 		--quality "$QUALITY" \
+		--ignore-podcasts \
 		--output-dir "$TEMP_DIR"
 }