2025-02-17, 09:19 PM
I installed versión 10.7.7, as recommended by https://www.reddit.com/r/jellyfin/commen...t/if6efiz/, and it works.
Time scrolling works perfect. Hardware transcoding works.
I don't know what's different from the latest version... But now works.
A direct play now looks like:
And when transcoding because of resize:
My
The Playback > Transcoding
I have it set as:
Any ideas what could be wrong when I try to update the container?
Time scrolling works perfect. Hardware transcoding works.
I don't know what's different from the latest version... But now works.
A direct play now looks like:
Code:
Playback Info
Player:
Html Video Player
Play method:
Direct playing
Protocol:
https
Stream type:
Video
Video Info
Player dimensions:
1863x1556
Video resolution:
1920x1072
Dropped frames:
0
Corrupted frames:
0
Transcoding Info
Video codec:
H264
Audio codec:
AAC (direct)
Original Media Info
Container:
mov
Size:
1.5 GiB
Bitrate:
2.2 Mbps
Video codec:
H264 High
Video bitrate:
2.1 Mbps
Video range:
SDR
Audio codec:
AAC LC
Audio bitrate:
111 kbps
Audio channels:
2
Audio sample rate:
48000 Hz
And when transcoding because of resize:
Code:
Playback Info
Player:
Html Video Player
Play method:
Transcoding
Protocol:
https
Stream type:
HLS
Video Info
Player dimensions:
1863x1556
Video resolution:
426x238
Dropped frames:
0
Corrupted frames:
0
Transcoding Info
Video codec:
H264
Audio codec:
AAC (direct)
Audio channels:
2
Bitrate:
420 kbps
Transcoding progress:
101.6%
Transcoding framerate:
68 fps
Reason for transcoding:
ContainerBitrateExceedsLimit
Original Media Info
Container:
mov
Size:
1.5 GiB
Bitrate:
2.2 Mbps
Video codec:
H264 High
Video bitrate:
2.1 Mbps
Video range:
SDR
Audio codec:
AAC LC
Audio bitrate:
111 kbps
Audio channels:
2
Audio sample rate:
48000 Hz
My
docker-compose.yml
is the following:Code:
services:
jellyfin:
image: jellyfin/jellyfin:10.7.7
container_name: jellyfin-2
hostname: jellyfin-2
environment:
TZ: Europe/Madrid
user: 1026:100
group_add:
- "937"
volumes:
- type: bind
source: /volume1/docker/jellyfin-2/config
target: /config
read_only: false
- type: bind
source: /volume1/docker/jellyfin-2/cache
target: /cache
read_only: false
- type: bind
source: /volume1/video
target: /media
read_only: false
- type: volume
source: exclude
target: /media/#recycle
read_only: true
- type: volume
source: exclude
target: /media/#snapshot
read_only: true
devices:
- /dev/dri/:/dev/dri/
restart: unless-stopped
networks:
- cloudflare_tunnel
volumes:
exclude:
networks:
cloudflare_tunnel:
name: cloudflare_tunnel_exposed
external: true
The Playback > Transcoding
I have it set as:
- Video Acceleration API (VAAPI)
- /dev/dri/renderD128
- H264, VC1: ON
- And the rest is all default
Any ideas what could be wrong when I try to update the container?