Summary: | VideoWidget sizing in Presentation mode still not fixed | ||
---|---|---|---|
Product: | [Applications] okular | Reporter: | Kieran Ramos <ramos.kieran> |
Component: | PDF backend | Assignee: | Okular developers <okular-devel> |
Status: | RESOLVED NOT A BUG | ||
Severity: | normal | CC: | aacid |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Neon | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | PDF with "embedded" videos, a link to download the video is in PDF |
Description
Kieran Ramos
2018-04-11 16:38:36 UTC
Do you know how to run your own self compiled okular? Otherwise I'm going to assume you did it wrong since it works just fine for me https://www.youtube.com/watch?v=nGce4msRs6s I see, perhaps I am doing something wrong. I built Okular with CMake in a separate build directory, satisfied all requirements by installing devel pacakges from apt, installed to /usr/local, then used it from there. I just found this page: https://community.kde.org/Guidelines_and_HOWTOs/Build_from_source#kdesrc-build I will follow those instructions and test. Thanks. I can confirm after following those build instructions Okular is working so my report must be INVALID. For reference the problem with my original build was that QT_PLUGIN_PATH needs to be set to include /usr/local/lib/x86_64-linux-gnu/plugins. After setting that Okular works. Looking at the rest of the .setup-env script, probably QML_IMPORT_PATH and QML2_IMPORT_PATH should be set as well (since /usr/local/lib/x86_64-linux-gnu/qml isn't empty), but it wasn't necessary to get the video working. Simply add the following to your ~/.profile or ~/.bashrc: export QT_PLUGIN_PATH="/usr/local/lib/x86_64-linux-gnu/plugins:$QT_PLUGINPATH" export QML_IMPORT_PATH="/usr/local/lib/x86_64-linux-gnu/qml:$QML_IMPORT_PATH" export QML2_IMPORT_PATH="$QML_IMPORT_PATH:$QML2_IMPORT_PATH" |