SOLVED: 9:32? aspect ratio bug on roku streaming stick - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: SOLVED: 9:32? aspect ratio bug on roku streaming stick (/t-solved-9-32-aspect-ratio-bug-on-roku-streaming-stick) Pages:
1
2
|
9:32? aspect ratio bug on roku streaming stick - vaseline - 2024-02-22 Hello. I've come across this problem on my Roku 4k Streaming Stick. (I'm using the Jellyfin app) I've been watching the first 3 and a half seasons of a show fine until now. The rest of the episodes in that season play in what looks like 9:32. It's a very tall very squished rectangle. To make sure it wasn't the video file itself I've tested the show on my LG Smart TV (Episodes plays fine in 16:9), plays fine in firefox browser, file itself on my server is 16:9, and the video playback on the Roku stick says 1920x1080. I've tried the reset button many times on the stick, and re-installed the jellyfin app, and restarted my server, but the issue persists. I can provide my log but I'm not exactly sure I have the right one.. (Something along the lines off ffmpeg transcode followed by the date) Help is much appreciated and I'm happy to provide any more details. I got Jellyfin version 10.8.13 on Windows 11. RE: 9:32? aspect ratio bug on roku streaming stick - TheDreadPirate - 2024-02-22 Let's try repackaging the video. Is this file an MKV file? If so, use this command. Code: ffmpeg -fflags genpts -i "/path/to/video.mkv" -map 0:v -map 0:a -map 0:s -map_chapters 0 -c:v copy -c:a copy -c:s copy outputFile.mkv RE: 9:32? aspect ratio bug on roku streaming stick - vaseline - 2024-02-22 (2024-02-22, 05:50 PM)TheDreadPirate Wrote: Let's try repackaging the video. Is this file an MKV file? If so, use this command. Yes the files are mkv. Where am I supposed to enter this command? RE: 9:32? aspect ratio bug on roku streaming stick - TheDreadPirate - 2024-02-22 On the Jellyfin server. If you're on Windows, on the command prompt. RE: 9:32? aspect ratio bug on roku streaming stick - vaseline - 2024-02-22 (2024-02-22, 06:19 PM)TheDreadPirate Wrote: On the Jellyfin server. If you're on Windows, on the command prompt. I'm not seeing any command line anywhere on my dashboard and I'm getting "ffmpeg is not a valid command" in command prompt. RE: 9:32? aspect ratio bug on roku streaming stick - TheDreadPirate - 2024-02-22 What OS? RE: 9:32? aspect ratio bug on roku streaming stick - vaseline - 2024-02-22 (2024-02-22, 07:01 PM)TheDreadPirate Wrote: What OS? Windows 11 RE: 9:32? aspect ratio bug on roku streaming stick - TheDreadPirate - 2024-02-22 In the command prompt, first navigate to C:\Program Files (x86)\Jellyfin-FFMPEG\ffmpeg.exe Code: cd C:\Program Files (x86)\Jellyfin-FFMPEG\ffmpeg.exe Then run the command I used above. RE: 9:32? aspect ratio bug on roku streaming stick - 1hitsong - 2024-02-22 (2024-02-22, 07:16 PM)TheDreadPirate Wrote: In the command prompt, first navigate to C:\Program Files (x86)\Jellyfin-FFMPEG\ffmpeg.exe I'm in Windows 11. The prompt for me is Code: cd "C:\Program Files\Jellyfin\Server\" RE: 9:32? aspect ratio bug on roku streaming stick - vaseline - 2024-02-22 (2024-02-22, 07:16 PM)TheDreadPirate Wrote: In the command prompt, first navigate to C:\Program Files (x86)\Jellyfin-FFMPEG\ffmpeg.exe I don't have that "Jellyfin-FFMPEG" folder |