Files
tdarr-plugs/agent_notes/task.md
Tdarr Plugin Developer aa71eb96d7 Initial commit: Tdarr plugin stack
Plugins:
- misc_fixes v2.8: Pre-processing, container remux, stream conforming
- stream_organizer v4.8: English priority, subtitle extraction, SRT conversion
- combined_audio_standardizer v1.13: AAC/Opus encoding, downmix creation
- av1_svt_converter v2.22: AV1 video encoding via SVT-AV1

Structure:
- Local/ - Plugin .js files (mount in Tdarr)
- agent_notes/ - Development documentation
- Latest-Reports/ - Error logs for analysis
2025-12-15 11:33:36 -08:00

840 B

Task: Implement Megamix Fixes

Analysis

  • Read megamix.txt
  • [/] Identify specific fixes and requirements
  • Map fixes to inputs/logic in Misc Fixes plugin

Implementation

  • Update Inputs:
    • target_container (mkv/mp4)
    • force_conform (drop incompatible streams)
    • remove_image_streams (mjpeg/png/gif)
    • ensure_video_first (reorder streams)
  • Implement logic:
    • Image Removal: Detect and map out mjpeg/png/gif
    • Conform: Detect and map out bad streams for container
    • Timestamp Fix: Expand TS fix to include AVI/MPG
    • Video First: Use -map 0:v? ordering if enabled
    • Verify functionality works with existing TS logic
  • Update plugin version strings and description

Verification

  • Verify code validity
  • Check logic flow