-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
Composer & operating system versions
Composer: git latest 2023-05-03
OS: Linux (NixOS)
What is the problem?
The UI works, I can import audio files and text, drag around notes export result files etc.
But when I click on "Play (P)", nothing happens.
During start up I get following error message:
QMetaObject::connectSlotsByName: No matching signal for on_actionVideoFile_triggered()
QAudioDevice info
Supported codecs:
"audio/pcm"
Supported sample rates:
8000
11025
22050
44100
48000
Supported sample sizes:
8
16
24
32
Supported sample types:
1
2
3
Supported byte orders:
0
1
Supported channel counts:
1
2
4
6
8
Steps to reproduce
I built the app with the following nix expression, against
- qt 5.15.9
- qt phonon 4.11.1
- qt phonon-backend-gstreamer 4.10.0
- ffmpeg-full 5.1.3
{ pkgs ? import <nixpkgs> { } }:
pkgs.stdenv.mkDerivation {
name = "performous-composer";
src = pkgs.fetchFromGitHub {
owner = "performous";
repo = "composer";
rev = "master";
sha256 = "sha256-Xz0NlVBLTAHbt9d6MBMn8lqxAJz417B+aFunSGjX17U=";
};
buildInputs = with pkgs; [
qt5.qtbase
ffmpeg-full
qt5.qtmultimedia
libsForQt5.phonon
libsForQt5.phonon-backend-gstreamer
libsForQt5.libqtav
];
nativeBuildInputs = with pkgs; [ cmake extra-cmake-modules ];
dontWrapQtApps = true;
}
Additional context
No response
Metadata
Metadata
Assignees
Labels
No labels