-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question - how to get logs or inspect jellyfin-webos when it is running on the TV? #235
Comments
The same problem for Tizen. You can download Chrome 79 - iirc, I used this list: https://github.com/Bugazelle/chromium-all-old-stable-versions/ |
I tried installing chromium 79 from Arch Linux archive package repo but by itself it seems like that is not enough for it to function because the system dependencies it requires are now too new or perhaps missing. I guess I could setup an old VM or try compile v79 from source if there is no other way :/ |
It seems to work on Ubuntu 22.04, but I have to use the I also use a separate data folder:
chrome-linux.sh: #!/bin/bash
APP_PATH=$(readlink -f "$0")
APP_DIR=$(dirname "$APP_PATH")
CHROME_DIR="$APP_DIR/chrome-linux"
LD_LIBRARY_PATH="$CHROME_DIR:$LD_LIBRARY_PATH" "$CHROME_DIR/chrome" --user-data-dir="$APP_DIR/chrome-data" --profile-directory=Devel79 "$@" |
Thank you, was able to do it with Google Chrome instead of Chromium. Put a PKGBUILD here for anyone else wanting to install it on Arch Linux: https://gist.github.com/ammgws/f98af057651854b4312173bf750fd47c |
I have an issue where files that need transcoding do not play in the webos client on my 2018 year LG C8 when it is served by v10.9.x but work fine with both v10.8.13 and in the WebOS simulator on my PC.
The server logs do not indicate any issue with transcoding itself so I want to check the TV side.
I ssh'd into the TV but could not find any accessible log files.
The other thing I tried was using
ares-inspect
to connect to the webos client running on the TV and analysing it on my PC, but the version of chrome used by my TV is too old (79) for the inspect feature to work with the versions of Chrome/Chromium that I can install on my PC.Is there anything I am missing with respect to getting more logs from the TV side?
The text was updated successfully, but these errors were encountered: