{"id":19578774,"url":"https://github.com/kde/vvave","last_synced_at":"2025-04-09T09:09:45.742Z","repository":{"id":45813885,"uuid":"127232644","full_name":"KDE/vvave","owner":"KDE","description":"Multi-platform media player","archived":false,"fork":false,"pushed_at":"2024-10-22T01:12:10.000Z","size":16566,"stargazers_count":62,"open_issues_count":0,"forks_count":5,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-10-23T00:34:32.172Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://invent.kde.org/maui/vvave","language":"C++","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KDE.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/LGPL-3.0.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-29T03:37:00.000Z","updated_at":"2024-10-22T01:12:14.000Z","dependencies_parsed_at":"2023-10-22T02:46:06.510Z","dependency_job_id":"2eb4d0bd-5b04-427a-bc7c-aef39dbd0afb","html_url":"https://github.com/KDE/vvave","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDE%2Fvvave","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDE%2Fvvave/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDE%2Fvvave/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDE%2Fvvave/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KDE","download_url":"https://codeload.github.com/KDE/vvave/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248008630,"owners_count":21032556,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T07:13:17.361Z","updated_at":"2025-04-09T09:09:45.719Z","avatar_url":"https://github.com/KDE.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vvave\n\n\u003ca href='https://flathub.org/apps/details/org.kde.vvave'\u003e\u003cimg width='190px' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-i-en.png'/\u003e\u003c/a\u003e\n\n## Building\n\n### Build for Android\nUse `qmake`:\n\n```bash\n# Clone the code\ngit clone https://invent.kde.org/kde/vvave.git\ncd vvave\n# Create build dir\nmkdir build \u0026\u0026 cd build\n# Build\nqmake -o Makefile ../vvave.pro\nmake\n```\n\n### Build for Desktop\nUse `cmake`:\n```bash\n# Clone the code\ngit clone https://invent.kde.org/kde/vvave.git\ncd vvave\n# Create build dir\nmkdir build \u0026\u0026 cd build\n# Build\ncmake ..\nmake\nsudo make install\n```\n\n### Dependencies\n\nIf you've built vvave on some distro, please contribute here!\n\n#### Ubuntu\n\n```\nsudo apt install kirigami2-dev libkf5syntaxhighlighting-dev extra-cmake-modules libtag1-dev libkf5notifications-dev libqt5websockets5-dev libqt5webview5-dev qtdeclarative5-dev qtmultimedia5-dev qtwebengine5-dev qtbase5-dev\n```\n\nFor other distros, the `buildInputs` part of the next section is a good clue for what\nyou need.\n\n### Using a nix shell\n\nIf you use `nix` you don't have to get your environment dirty, here are all the\ndependencies and environment variables you need to load:\n\n```nix\nwith import \u003cnixpkgs\u003e {};\n\nlet qtx = qt5; in\nstdenv.mkDerivation {\n  name = \"vvave\";\n\n  buildInputs = [\n    appstream\n    taglib\n    gettext\n  ] ++ (with libsForQt5; [\n    ki18n\n    kconfig\n    knotifications\n    kservice\n    kio\n    kirigami2\n  ]) ++ (with qtx; [\n    qtbase\n    qtwebsockets\n    qtquickcontrols\n    qtquickcontrols2\n    qtmultimedia\n    qtwebengine\n    qtgraphicaleffects\n    qtdeclarative\n  ]) ++ (with gst_all_1; [\n    gst-plugins-base\n    gst-plugins-good\n    gst-plugins-bad\n    gst-plugins-ugly\n    gst-libav\n  ]);\n\n  shellHook = with qtx; ''\n    export QT_QPA_PLATFORM_PLUGIN_PATH=\"${qtbase}/${qtbase.qtPluginPrefix}/platforms\"\n    export QT_PLUGIN_PATH=\"$QT_PLUGIN_PATH:${qtbase.bin}/${qtbase.qtPluginPrefix}\"\n    export QML2_IMPORT_PATH=\"$QML2_IMPORT_PATH:${qtquickcontrols2.bin}/${qtbase.qtQmlPrefix}\"\n    export QML2_IMPORT_PATH=\"$QML2_IMPORT_PATH:${qtquickcontrols}/${qtbase.qtQmlPrefix}\"\n    export QML2_IMPORT_PATH=\"$QML2_IMPORT_PATH:${qtgraphicaleffects}/${qtbase.qtQmlPrefix}\"\n    export QML2_IMPORT_PATH=\"$QML2_IMPORT_PATH:${qtdeclarative.bin}/${qtbase.qtQmlPrefix}\"\n    export QML2_IMPORT_PATH=\"$QML2_IMPORT_PATH:${libsForQt5.kirigami2}/${qtbase.qtQmlPrefix}\"\n  '';\n}\n```\n\n## Troubleshooting\n\n### QML complains module X is not installed\n\nCheck that all of the following Qt Components are installed:\n\n```\nqtbase qtquickcontrols2 qtquickcontrols qtgraphicaleffects qtdeclarative kirigami2\n```\n\nNext check that module `X` can be found in `$QML2_IMPORT_PATH`.\n\n### VVAVE is built and running but no sound comes out!\n\nCheck that you have all the correct gstreamer plugins installed:\n\n```\ngst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkde%2Fvvave","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkde%2Fvvave","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkde%2Fvvave/lists"}