Player Error Encountered Google TV - 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: Player Error Encountered Google TV (/t-player-error-encountered-google-tv) Pages:
1
2
|
RE: Player Error Encountered Google TV - larkhillv - 2024-08-17 (2024-08-17, 12:08 PM)Roadrunner 3000 Wrote: Any luck on fixing this? I'm having the same issues. Able to play my media just fine on my pixel 8 pro, and windows 11 machine but my Chromecast and iPad are both having player issues. No, still having this issue. I saw below suggestion from "theguymadmax" but not really sure what remuxing is or how I would run that line of code. Like do I just pop that into a command prompt on my Windows desktop replacing "input.mkv" and "output.mkv" with the actual file name? Or do I run that code through Jellyfin somehow through Unraid? Sorry if that's a stupid question--I'm tech savvy enough to build a PC and server, but stuff like video codecs, containers, remuxing, etc I just don't get. (2024-08-17, 01:50 AM)theguymadmax Wrote: There's an issue with the MKV container. Remux one of the files and try it out on your system. RE: Player Error Encountered Google TV - theguymadmax - 2024-08-17 The command for windows will be a little different. In the start menu type PowerShell and open up that app. Then run the command below as an example. Code: & "C:\Program Files\Jellyfin\Server\ffmpeg.exe" -i "path\original input file.mkv" -map 0 -c copy "path\ new output file.mkv" Something like this. Chane your username, paths, and file names accordingly. Code: & "C:\Program Files\Jellyfin\Server\ffmpeg.exe" -i "C:\data\shows\Fullmetal (2003)\ Alchemist Fullmetal Alchemist (2003) - S01E01 - (1) - Those Who Challenge the Sun (1080p Bluray x265 ImE).mkv" -map 0 -c copy "C:\Users\larkhillv\Desktop\ Fullmetal Alchemist (2003) - S01E01 - (1) - Those Who Challenge the Sun (1080p Bluray x265 ImE).mkv" |