Fix ab-av1 ffprobe issue by passing tdarr-ffmpeg path explicitly (v2.32)

- ab-av1 now uses --ffmpeg and --ffprobe flags to locate tdarr-ffmpeg
- No symlinks needed - uses existing Tdarr binaries
- tdarr-ffmpeg acts as both ffmpeg and ffprobe (multi-call binary)
This commit is contained in:
Tdarr Plugin Developer
2025-12-15 22:33:30 -08:00
parent 2b40a8451b
commit fe125da51a
4 changed files with 3883 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -10,7 +10,7 @@ const details = () => ({
Features resolution-aware CRF, source-relative bitrate strategies, ab-av1 auto-CRF, and performance optimizations.
**Balanced defaults**: Preset 6, CRF 26, tune 0 (VQ), 10-bit, SCD 1, AQ 2, lookahead -1, TF on, keyint -2, fast-decode 0.
`,
Version: '2.31',
Version: '2.32',
Tags: 'video,av1,svt,quality,performance,speed-optimized,vbr,crf,vmaf',
Inputs: [
{
@@ -517,6 +517,8 @@ const plugin = (file, librarySettings, inputs, otherArguments) => {
'--samples', sampleCount.toString(),
'--encoder', 'libsvtav1',
'--preset', preset.toString(),
'--ffmpeg', 'tdarr-ffmpeg', // Use Tdarr's ffmpeg binary
'--ffprobe', 'tdarr-ffmpeg', // tdarr-ffmpeg acts as both ffmpeg and ffprobe
];
const command = `${abav1Path} ${args.join(' ')}`;

View File

@@ -1,7 +1,7 @@
# Tdarr Plugin Suite Documentation
> **Version**: 2025-12-16
> **Plugins**: misc_fixes v2.8 | stream_organizer v4.10 | audio_standardizer v1.15 | av1_converter v2.31
> **Plugins**: misc_fixes v2.8 | stream_organizer v4.10 | audio_standardizer v1.15 | av1_converter v2.32
---