Package Details: amarok 3.2.0-1

Git Clone URL: https://aur.archlinux.org/amarok.git (read-only, click to copy)
Package Base: amarok
Description: The powerful music player for KDE
Upstream URL: https://apps.kde.org/amarok/
Licenses: GPL2, FDL, LGPL2.1
Submitter: arojas
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 46
Popularity: 0.155935
First Submitted: 2018-08-28 13:52 (UTC)
Last Updated: 2024-12-30 12:35 (UTC)

Pinned Comments

FabioLolix commented on 2024-08-03 19:20 (UTC)

I had a problem running the program, something about its database, solved deleting all local files (maybe it was too much yet it worked)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 Next › Last »

coxe87b commented on 2019-12-25 12:25 (UTC)

It would not make the package for me by default using makepkg -si as it threw an error saying that it was unable to solve dependencies. I had to manually install dependencies; libgpod, liblastfm-qt5, mariadb I then had to manually get the dependency "taglib-extras 1.0.1-7" through the AUR and make that package first. Only then was I able to proceed with the makepkg of amarok.

Henry78 commented on 2019-11-19 15:58 (UTC) (edited on 2019-11-19 15:59 (UTC) by Henry78)

This package isn't building sucessfully for weeks. Did I miss something?

Latest problem:

CMake Error at /usr/lib64/cmake/Qt5/Qt5Config.cmake:28 (find_package):
  Could not find a package configuration file provided by "Qt5Script" with
  any of the following names:

    Qt5ScriptConfig.cmake
    qt5script-config.cmake

  Add the installation prefix of "Qt5Script" to CMAKE_PREFIX_PATH or set
  "Qt5Script_DIR" to a directory containing one of the above files.  If
  "Qt5Script" provides a separate development package or SDK, be sure it has
  been installed.
Call Stack (most recent call first):
  CMakeLists.txt:31 (find_package)

The latest successful build (2019-10-01, 2.9.0.r376.457fbda25a-1) won't launch:

amarok: error while loading shared libraries: libQt5Script.so.5: cannot open shared object file: No such file or directory

floppy5.25 commented on 2019-09-16 20:46 (UTC) (edited on 2019-09-17 17:31 (UTC) by floppy5.25)

Thank you for updating the package. Few issues:

  • Lyrics are not working, On a debug console I get (for example):

amarok: BEGIN: void LyricsManager::lyricsLoaded(const QUrl&, const QByteArray&, const NetworkAccessManagerProxy::Error&) amarok: [WARNING] [LyricsManager] No track belongs to this url: "https://lyrics.fandom.com/api.php?action=query&prop=revisions&rvprop=content&format=xml&titles=Coldplay:A Sky Full of Stars" amarok: END__: void LyricsManager::lyricsLoaded(const QUrl&, const QByteArray&, const NetworkAccessManagerProxy::Error&) [Took: 0s]

  • Activating the Wikipedia applet will shoot CPU use through the roof.

As per another comment the above will be nice to have working but both issues seem to be upstream.

snack commented on 2019-09-15 13:38 (UTC)

@Tyomix I don't know if the functionality you describe is related to scripting. If you tell me which scripts you are using I can try to fix them, but being not an expert I can't promise anything.

Tyomix commented on 2019-09-15 12:09 (UTC)

@snack, OMG so complicated.. tried to create such file but still not works. BTW I want Amarok to just show lyrics and wikipedia articles of currently playing song like it works in kde4. Is it connected with scripts functionality?

snack commented on 2019-09-15 10:03 (UTC)

@Tyomix sorry, I forgot to say that scripts needs to be ported. If you start amarok from command line with --debug option you will probably see some error message like:

[ERROR__] [ScriptManager] script.json for "/home/mori/.local/share/amarok/scripts/BurnPlaylist/main.js" is missing!

You need to produce a script.json file like this:

{
"KPlugin": {
"Category": "Scriptable Service",
"Id": "BurnPlayList",
"Version": "1.0.1",
"Dependencies": ["Amarok2.0"],
"EnabledByDefault": "true"
}
}

in order for the script to be loaded. More porting is likely necessary, depending on the content of the script itself. I am not an expert but I can try to provide some assistance if needed. Please move this discussion to the amarok-scripting page.

Tyomix commented on 2019-09-13 23:10 (UTC) (edited on 2019-09-13 23:11 (UTC) by Tyomix)

@snack I've installed your package "amarok-scripting" instead of this one, but still get empty scripts window. Tried to install some scripts via KDE store ("Manage scripts") and "Local script". How to fix? https://i.imgur.com/yfUrmhR.png

Rhinoceros commented on 2019-09-08 04:35 (UTC)

Thanks @snack. I'll check it out and report on that page. Cheers.

snack commented on 2019-09-03 10:13 (UTC)

I've been able to restore the scripting functionality, at least partially (i.e. my script now works). I have uploaded a new AUR package amarok-scripting, try it if you need scripting.

snack commented on 2019-08-30 16:08 (UTC)

For those complaining about scripts: they do not work because the QtScript support has been removed, probably due to the fact that QtScript is deprecated in Qt5 and will probably be removed in Qt6. I've been able to revert the modification and the script engine works again (since QtScript is still available in Qt5 for backwards compatibility). However the Qt bindings previously provided by qtscriptgenerator are no longer available, so all the scripts making use of Qt classes will not work.