Conversation
…ancing HLS handling
… streaming performance
…proved streaming reliability
…and removing unnecessary dependencies
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.
This pull request introduces several improvements and fixes across the build process, configuration, IPTV parsing, and streaming logic. The most significant changes include enhancements to the Docker build for better dependency management, the addition of a new environment variable to control transcoding, improvements to channel and programme parsing for more accurate data extraction, and updates to the streaming pipeline to respect user configuration. Below are the most important changes grouped by theme:
Build and Deployment Improvements
Dockerfilebuild process is streamlined: unnecessaryapk updatesteps are removed, dependencies are installed only when needed, andffmpegis added to the runtime image for streaming support. The build and runtime stages are now clearly separated, and only production dependencies are installed in the final image.main.ymltomaster.ymlto match the branch naming convention.Configuration Enhancements
DISABLE_TRANSCODEis introduced, allowing users to disable transcoding and pass streams through directly. This is reflected in.env.example,README.md, and the configuration loader inconfig.ts. [1] [2] [3] [4]IPTV Channel and Programme Parsing
tvg-chno), and to select the most appropriate display name for each channel. Programme title extraction is enhanced to remove duplicate channel name prefixes for cleaner output. [1] [2] [3] [4] [5] [6]Streaming Pipeline Updates
DISABLE_TRANSCODEconfiguration, passing the value to the stream preparation function. Additional FFmpeg flags are set for improved reconnection and buffering behavior, optimizing the live streaming experience.Embed Output and Presentation