Merged
Conversation
- include HTTPS in DOMAIN_SUBDOMAIN_NAME in env.example - remove encoding profiles to introduce new ABR bitrate ladder and multiple versions
…ynamic metadata - Refactored video and audio profile loading to support ABR (Adaptive Bitrate) configurations. - Introduced dynamic tier numbering for video profiles and group IDs for audio profiles based on domain configuration. - Updated video profile filtering logic to allow for developer overrides and improved compatibility checks. - Enhanced video metadata computation to include aspect ratio and scaling adjustments based on source dimensions. - Improved audio metadata handling to include Atmos support and dynamic channel configurations. - Added functionality to fix init segment URLs in HLS manifests to ensure correct CDN paths. - Updated Azure storage service to support retry logic for file uploads and improved progress reporting. - Introduced stable rendition IDs for audio tracks and enhanced playlist generation with bitrate formatting.
maulik-mk
added a commit
that referenced
this pull request
Apr 5, 2026
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.
ABR Ladder
VMAF complexity to ABR Ladder
All Advanced Streaming Tier
audio : audio.json
h264 SDR : avc.sdr.json
h265 SDR : hvc.sdr.json
h265 HDR : hvc.pq.json
h265 Dolby Vision : dvh.pq.json
This pull request introduces several significant changes to the video processing pipeline, environment configuration, and transcoding logic. The main improvements include downloading source videos to local disk before processing, updating environment and performance tuning variables, simplifying the transcoding logic by removing the per-title VMAF complexity probe, and enhancing audio stream metadata handling. Additionally, new audio ABR profiles are introduced.
Video Processing Pipeline Improvements
src/application/video.process.ts[1] [2] [3] [4]Environment Configuration and Performance Tuning
.env.exampleand runtime validation. (.env.example[1]src/config/env.ts[2] [3]Transcoding Logic Simplification
src/infrastructure/ffmpeg/adapter.ts[1] [2] [3];src/infrastructure/ffmpeg/core/complexity.ts[4]Audio Stream Metadata and ABR Profiles
src/domain/job.interface.ts[1]src/infrastructure/ffmpeg/core/probe.ts[2]src/infrastructure/ffmpeg/encoding/ABR/audio/audio.jsonsrc/infrastructure/ffmpeg/encoding/ABR/audio/audio.jsonR1-R47)Other Codebase Cleanups
src/infrastructure/ffmpeg/constants.tssrc/infrastructure/ffmpeg/constants.tsL4-L14)These changes collectively enhance pipeline robustness, simplify configuration, and improve support for modern audio profiles.