Only switch to default ffmpeg if proxy is selected.

This commit is contained in:
SergeantPanda 2025-03-19 10:54:09 -05:00
parent 061ca4d46e
commit d878eda1a7

View file

@ -84,7 +84,7 @@ class StreamManager:
try:
# Check stream type before connecting
stream_type = detect_stream_type(self.url)
if stream_type == 'hls':
if self.transcode == False and stream_type == 'hls':
logger.info(f"Detected HLS stream: {self.url}")
logger.info(f"HLS streams will be handled with FFmpeg for now - future version will support HLS natively")
# Enable transcoding for HLS streams