Conversation
… Video Normalizer guidance Co-authored-by: Geek-MD <25725990+Geek-MD@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix downloader integration installation issue
v1.2.1: Detect and notify on core Mar 10, 2026
downloader integration conflict
…d automation migration guide Co-authored-by: Geek-MD <25725990+Geek-MD@users.noreply.github.com>
Copilot
AI
changed the title
v1.2.1: Detect and notify on core
v1.2.1: Migrate from downloader + video_normalizer to Advanced Downloader
Mar 10, 2026
downloader integration conflict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automations combining the core
downloaderintegration with the standalonevideo_normalizerintegration break after removing both config entries as required. Three gaps prevented full migration toadvanced_downloaderalone:target_aspect_ratiowas never forwarded toVideoProcessor, the status sensor had nolast_jobattribute, and no migration guide existed.Changes
const.py— AddedATTR_TARGET_ASPECT_RATIOsensor.py— Addedlast_job: null | "success" | "failed"tosensor.advanced_downloader_statusattributes; addedset_last_job()method__init__.py— Reads optionaltarget_aspect_ratiofrom service call; passes it as a kwarg toVideoProcessor.process_video()when provided; callssensor.set_last_job("success"|"failed")before firing the corresponding bus event; addedvol.Optional(ATTR_TARGET_ASPECT_RATIO): vol.Coerce(float)to the service schemaservices.yaml— Addedtarget_aspect_ratiofield (number selector, step 0.001) todownload_fileREADME.md— Updated sensor attributes table; added Migration Guide section with full before/after YAML and a mapping tableCHANGELOG.md— Expanded[1.2.1]entryMigrated automation (condensed)
Key mapping
downloader.download_fileadvanced_downloader.download_filevideo_normalizer.normalize_videodownloader_download_completed+ pollsensor.video_normalizer_statusadvanced_downloader_job_completed/advanced_downloader_download_failedeventssensor.video_normalizer_statuslast_jobsensor.advanced_downloader_statuslast_job💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.