- Transparent reverse proxy that filters AV1/Opus for Xbox clients - Detects Xbox via User-Agent header - Docker-based solution, no Jellyfin code modifications needed - Can be easily enabled/disabled without affecting Jellyfin updates
12 lines
153 B
Docker
12 lines
153 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir flask requests
|
|
|
|
COPY xbox-filter.py .
|
|
|
|
EXPOSE 8096
|
|
|
|
CMD ["python", "xbox-filter.py"]
|