nixpkgs-suyu/pkgs/kde/gear/audiocd-kio/encoder-paths.patch
K900 ce77225e21 pkgs/kde: init at 6.0.0 / 24.02.0, the Nix bits
This is the thing you want to look at.
2024-02-28 18:49:23 +03:00

35 lines
1.8 KiB
Diff

diff --git a/plugins/lame/encoderlame.cpp b/plugins/lame/encoderlame.cpp
index 48d1d76..2643d6a 100644
--- a/plugins/lame/encoderlame.cpp
+++ b/plugins/lame/encoderlame.cpp
@@ -244,7 +244,7 @@ long EncoderLame::readInit(long /*size*/)
// -r raw/pcm
// -s 44.1 (because it is raw you have to specify this)
- *(d->currentEncodeProcess) << QStringLiteral("lame") << QStringLiteral("--verbose") << QStringLiteral("-r") << QStringLiteral("-s")
+ *(d->currentEncodeProcess) << QStringLiteral("@lame@") << QStringLiteral("--verbose") << QStringLiteral("-r") << QStringLiteral("-s")
<< QStringLiteral("44.1");
*(d->currentEncodeProcess) << args;
if (Settings::self()->id3_tag())
diff --git a/plugins/opus/encoderopus.cpp b/plugins/opus/encoderopus.cpp
index ef297fb..465bb3e 100644
--- a/plugins/opus/encoderopus.cpp
+++ b/plugins/opus/encoderopus.cpp
@@ -82,7 +82,7 @@ QWidget *EncoderOpus::getConfigureWidget(KConfigSkeleton **manager) const
bool EncoderOpus::init()
{
// Determine if opusenc is installed on the system or not.
- if (QStandardPaths::findExecutable(QStringLiteral("opusenc")).isEmpty())
+ if (QStandardPaths::findExecutable(QStringLiteral("@opusenc@")).isEmpty())
return false;
return true;
@@ -140,7 +140,7 @@ long EncoderOpus::readInit(long /*size*/)
// --raw raw/pcm
// --raw-rate 44100 (because it is raw you have to specify this)
- *(d->currentEncodeProcess) << QStringLiteral("opusenc") << QStringLiteral("--raw") << QStringLiteral("--raw-rate") << QStringLiteral("44100");
+ *(d->currentEncodeProcess) << QStringLiteral("@opusenc@") << QStringLiteral("--raw") << QStringLiteral("--raw-rate") << QStringLiteral("44100");
*(d->currentEncodeProcess) << args;
*d->currentEncodeProcess << trackInfo;