Probably posting a bit prematurely, but, I have a very, very, minimally
tested solution that seems to be working. I think the network piece is
overly complicated so I'll be trying to simplify that as much as
possible. Basically the goal is to have the wifi interface (mlan0) and
the ethernet inter
sfraser wrote:
> Well I stand corrected. I checked it again today and it is indeed
> running 8.3. It's been a few days since I did the upgrade, but I have
> upgraded some plugins since then which required me to start/start the
> LMS. Would it be possible the manual LMS start/stop did somethi
Paul Webster wrote:
> So how does it sound when you start all 4 at nearly the same time?Haven't got
> that far yet, the TV is on [emoji2]
Sent from my Pixel 3a using Tapatalk
slartibartfast's Profile: http://forums.sl
So how does it sound when you start all 4 at nearly the same time?
Paul Webster
author of \"now playing\" plugins covering radio france (fip etc),
planetradio (bauer - kiss, absolute, scala, jazzfm etc), kcrw, abc
australia and cbc/radio-canada
and, via the extra \"radio now playing\" plugin l
Hi community,
I have been running LMS in differnt versions up to version 8.3 for quite
a long time on my windows 10 server. Besides a SB Radio and a Boom, i
have also a SB Touch, where i configured IRBlaster to controll my
amplifier. This was always working perfectly fine on in this
combination
Greg Erskine wrote:
> I can't see a reply?
>
> If it is pCP, this works.
>
> >
Code:
> > $ ssh t...@192.168.1.xxx 'pcp play'
> > It is Raspberry OS.
Sent from my Pixel 3a using Tapatalk
Paul Webster wrote:
> Is it a pCP system?
>
> If yes - does it really have a /home/pi ?
I can't see a reply?
If it is pCP, this works.
Code:
$ ssh t...@192.168.1.xxx 'pcp play'
-
RobbH wrote:
> I wouldn't think it could. But since it IS happening, it must be my
> thinking that's wrong. What happens if you use a MAC address that
> doesn't exist on your system? Does LMS always fall back to the same
> player if it's given an address it can't use?
>
> Edit: When you say the
RobbH wrote:
> I wouldn't think it could. But since it IS happening, it must be my
> thinking that's wrong. What happens if you use a MAC address that
> doesn't exist on your system? Does LMS always fall back to the same
> player if it's given an address it can't use?
>
> Edit: When you say the
slartibartfast wrote:
> I can start all four of my players using the curl command. If my MUSE
> player is turned off then another player with a different MAC address
> starts playing when I enter the curl command with the MAC address of the
> MUSE player. How on earth can that happen?
>
> Sent
RobbH wrote:
> One more thought. I'm sure that, in the past, Michael has pointed us
> toward better ways to do this than using HTML commands. Maybe he will
> refresh our memories this time. But I just had good luck using this
> command:
>
> >
Code:
> > curl "http://:9
Paul Webster wrote:
> It is 4 different CDs to be played at the same time.
> If you queue CD1 to player1 and CD2 to player2 etc ... then you cannot
> use sync because they are not playing the same thing.
Sorry Im dumb (it was also too early in the morning for me :))
LMS 8.2 on Odroid-C4 - *S
cpd73 wrote:
> D'oh! Yeah, I meant "which sh" :(/usr/bin/sh /home/pi/zaireeka.sh
works.
Sent from my Pixel 3a using Tapatalk
slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this th
cpd73 wrote:
> D'oh! Yeah, I meant "which sh" :(which sh results in
/usr/bin/sh
which I wasn't expecting.
Sent from my Pixel 3a using Tapatalk
slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=3
slartibartfast wrote:
> If I type
> where sh
> in a terminal connected to the Pi I get
> -bash: where: command not found
> I can see sh at /bin/sh in WinSCP.
> My script starts
> #!/bin/bash
> Is that wrong?
>
> Sent from my Pixel 3a using Tapatalk
Ah, I have no pCP at the moment. If you have
try which rather than where
Paul Webster
author of \"now playing\" plugins covering radio france (fip etc),
planetradio (bauer - kiss, absolute, scala, jazzfm etc), kcrw, abc
australia and cbc/radio-canada
and, via the extra \"radio now playing\" plugin lots more - see
https://forums.slimdevic
cpd73 wrote:
> so "sh" is the name of the shell command. If you type (on the machine
> where the script is to run):
>
> >
Code:
> >
> where sh
>
> >
>
> it will give you the path to the current "sh" command - probably
> "/bin/sh" Edit you s
slartibartfast wrote:
> I don't have "/home/pi/sh" as a command. I am clutching at straws. All I
> know is that using Putty the command
> sh zaireeka.sh
> works.
> zaireeka.sh is in the folder /home/pi and the script is executable.
>
> Sent from my Pixel 3a using Tapatalk
so "sh" is the name
slartibartfast wrote:
> I don't have "/home/pi/sh" as a command. I am clutching at straws. All I
> know is that using Putty the command
> sh zaireeka.sh
> works.
> zaireeka.sh is in the folder /home/pi and the script is executable.
>
> Sent from my Pixel 3a using Tapatalk
So
sh /home/pi/zair
cpd73 wrote:
> Do you have "/home/pi/sh" as a command? Eve if you did You would need
> "/home/pi/sh /home/pi/zaireeka.sh" The command that the script runs
> (i.e. the first string) either needs to be in PATH or have an absolute
> path (hence "/home/pi/sh") If you are using "/home/pi/sh" then the
slartibartfast wrote:
> Do you think I should just use
> /home/pi/zaireeka.sh
> instead of
> /home/pi/sh zaireeka.sh
>
> Sent from my Pixel 3a using Tapatalk
Do you have "/home/pi/sh" as a command? Eve if you did You would need
"/home/pi/sh /home/pi/zaireeka.sh" The command that the script ru
slartibartfast wrote:
> Do you think I should just use
> /home/pi/zaireeka.sh
> instead of
> /home/pi/sh zaireeka.sh
>
> Sent from my Pixel 3a using TapatalkThat didn't work either.
Sent from my Pixel 3a using Tapatalk
--
cpd73 wrote:
> Make sure your shell script is executable: "chmod +x script.sh" and has
> "#!/bin/bash" as the first line. e.g.
>
> >
Code:
> >
> #!/bin/bash
> echo "Hello"
>
> >
>
> Then in actions.json you need the full path to the scrip
Make sure your shell script is executable: "chmod +x script.sh" and has
"#!/bin/bash" as the first line. e.g.
Code:
#!/bin/bash
echo "Hello"
Then in actions.json you need the full path to the script:
Code:
{
Is it a pCP system?
If yes - does it really have a /home/pi ?
Paul Webster
author of \"now playing\" plugins covering radio france (fip etc),
planetradio (bauer - kiss, absolute, scala, jazzfm etc), kcrw, abc
australia and cbc/radio-canada
and, via the extra \"radio now playing\" plugin lots
Paul Webster wrote:
> Try it more like I wrote it.Sorry I edited the last post after realising and
> tried
/bin/sh /home/pi/zaireeka.sh &
Sent from my Pixel 3a using Tapatalk
slartibartfast's Profile: http://forums.sl
Paul Webster wrote:
> Try it with full paths to sh and the script
> e.g.
> /bin/sh /home/tc/script.sh
I changed it to
/home/pi/sh zaireeka.sh &
but still no luck.
slartibartfast's Profile: http://forums.slimdevices.com/m
Try it more like I wrote it.
Paul Webster
author of \"now playing\" plugins covering radio france (fip etc),
planetradio (bauer - kiss, absolute, scala, jazzfm etc), kcrw, abc
australia and cbc/radio-canada
and, via the extra \"radio now playing\" plugin lots more - see
https://forums.slimdevi
philippe_44 wrote:
> Im a bit confused
you want to start syncs but but not keep sync?
Yup, Zaireeka is on 4 different CDs :)
slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thr
Once you get the Material action working, I hope you'll report back on
the sound you're getting, playing all four versions more-or-less
simultaneously. Do you recommend the experience?
LMS 8 nightly running on Raspberry Pi OS. Mostly virtual players,
occasionally with SB Radio, Boom or Classic
Try it with full paths to sh and the script
e.g.
/bin/sh /home/tc/script.sh
Paul Webster
author of \"now playing\" plugins covering radio france (fip etc),
planetradio (bauer - kiss, absolute, scala, jazzfm etc), kcrw, abc
australia and cbc/radio-canada
and, via the extra \"radio now playing\"
cpd73 wrote:
> You can add custom actions to material - and these can invoke shell
> scripts. See "Custom menu entries and actions" at
> https://github.com/CDrummond/lms-material/wiki/07-Customisation
I added the attached actions.json to prefs/material-skin and the command
appears when I click
Hi Michael, hi all,
my Setup with Pi4 2GB:
- Relay (powered by the +5V line of Pi)
- External Monitor via Mini Display Port
- USB Keyboard (wifi Logitech)
- External HD (4TB) powered by its own power supply
I use an original power supply 5V/2A of Raspberry.
On my external monitor I occa
I thought this would be fun to play with, then I realized I don't own it
:( I have an already mixed version. Didn't realize I had that until I
looked!
One thought to simplify - mix each disk 1-4 down to mono, then mix 1/2
and 3/4 into stereo. Use 4 radios (A-D), setup to use a pair of radios
to
philippe_44 wrote:
> But then why not using the option from LMS to start syncd but not
> maintain it? Its on the players settings
It is 4 different CDs to be played at the same time.
If you queue CD1 to player1 and CD2 to player2 etc ... then you cannot
use sync because they are not playing th
Paul Webster wrote:
> Art ... "Zaireeka by the The Flaming Lips the way it was intended to be
> played. It consists of four CDs which are meant to played on four
> players simultaneously"
>
> Each of the CDs is different but supposed to be played together on
> different systems.
But then why no
philippe_44 wrote:
> Im a bit confused
you want to start syncs but but not keep sync?
Art ... "Zaireeka by the The Flaming Lips the way it was intended to be
played. It consists of four CDs which are meant to played on four
players simultaneously"
Each of the CDs is different but supposed to
Im a bit confused
you want to start syncs but but not keep sync?
LMS 8.2 on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet, 1xTouch,
1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000, ShairPortW,
2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi, Yamaha
WX-010, AppleTV 4
Zombie wrote:
> What's that? Don't find it on my NAS. I have TS-251+, some 5 years old
> maybe...
I'm not the most qualified to answer that, I would explain it as the
"service" that interprets the commands in the command prompt.
The older versions do not support all arguments used in the script
cpd73 wrote:
> You can add custom actions to material - and these can invoke shell
> scripts. See "Custom menu entries and actions" at
> https://github.com/CDrummond/lms-material/wiki/07-CustomisationExcellent I
> forgot about that [emoji106]
Sent from my Pixel 3a using Tapatalk
--
slartibartfast wrote:
> This is a long shot. Is there a way to run the script from LMS? Material
> skin can shutdown and restart the server so it should be possible.
You can add custom actions to material - and these can invoke shell
scripts. See "Custom menu entries and actions" at
https://git
RobbH wrote:
> One more thought. I'm sure that, in the past, Michael has pointed us
> toward better ways to do this than using HTML commands. Maybe he will
> refresh our memories this time. But I just had good luck using this
> command:
>
> >
Code:
> > curl "http://:9
jasell wrote:
> busybox
What's that? Don't find it on my NAS. I have TS-251+, some 5 years old
maybe...
Zombie's Profile: http://forums.slimdevices.com/member.php?userid=25009
View this thread: http://forums.slimdevices.c
Zombie wrote:
> Are there still problems upgrading to Qlogitechmediaserver 2.25.01?
> Hoping for a straightforward upgrade without fiddling with Putty and
> other stuff, is there any chance for that?
> Wise from previous upgrades I have no automatic upgrading of my LMS
> server.
It depends on y
Are there still problems upgrading to Qlogitechmediaserver 2.25.01?
Hoping for a straightforward upgrade without fiddling with Putty and
other stuff, is there any chance for that?
Zombie's Profile: http://forums.slimdevice
Ok, I checked out the git repo, followed Docker build instructions and
now I have a build folder with arch/5.34/x86_64-linux-gnu-thread-multi/
and arch/5.34/x86_64-linux-thread-multi/ inside, both of which do not
exactly look like the installed
/usr/share/squeezeboxserver/CPAN/arch/5.34
Of course
RobbH wrote:
> One more thought. I'm sure that, in the past, Michael has pointed us
> toward better ways to do this than using HTML commands. Maybe he will
> refresh our memories this time. But I just had good luck using this
> command:
>
> >
Code:
> > curl "http://:9
Ok, I checked out the git repo, followed Docker build instructions and
now I have a build folder with arch/5.34/x86_64-linux-gnu-thread-multi/
and arch/5.34/x86_64-linux-thread-multi/ inside, both of which do not
exactly look like the installed
/usr/share/squeezeboxserver/CPAN/arch/5.34
Of course
slartibartfast wrote:
> This looks promising. Do I run this command using Putty and SSH?
> Presumably I replace the zeroes with the player MAC address.
>
Broadly ... yes.
In fact you can run it from anywhere that has curl ... which might be
easiest on the system running LMS.
You could then cha
You are building the 5.34 modules already against glibc 2.34 ... which
is even newer than my Debian unstable.
Is this intentional?
No. The first system to require Perl 5.34 was Fedora 35. That's what I
used as the Docker image to build the binaries (on my M1 based Mac...).
Building on a diff
I think, I see the issue:
$ ldd x86_64-linux-thread-multi/auto/Audio/Scan/Scan.so
x86_64-linux-thread-multi/auto/Audio/Scan/Scan.so:
/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found
(required by x86_64-linux-thread-multi/auto/Audio/Scan/Scan.so)
You are building the 5.34 modules al
On Tue, 08 Feb, Michael Herger wrote:
> > They are there (also 5.34 has content). The only missing file from
> > 5.34
>
> Hmm... must be some library version conflict then. Did you check the
> glibc version?
$ /lib/x86_64-linux-gnu/libc.so.6 --version
GNU C Library (Debian GLIBC 2.33-5) relea
RobbH wrote:
> One more thought. I'm sure that, in the past, Michael has pointed us
> toward better ways to do this than using HTML commands. Maybe he will
> refresh our memories this time. But I just had good luck using this
> command:
>
> >
Code:
> > curl "http://:9
Paul Webster wrote:
> Might it work if you set an alarm on each - with each one launching a
> different CD.
> I suspect that they would not be close enough to each other ... but
> might be OK if they are LMS controlled devices (e.g.
> SB1/SB2/SB3/Transporter).
>
> Otherwise a script that does n
They are there (also 5.34 has content). The only missing file from 5.34
Hmm... must be some library version conflict then. Did you check the
glibc version?
Yes, I'm on Debian unstable since 1997 (no joke). It never broke in a
way that it was unusable. The only thing that "regularly" breaks
w
Grumpy Bob wrote:
> For a one-off scenario like this, you could merge all four CDs with
> Audacity or similar to make a single audio file. Then use a single
> player. I did this for Gensho, a collaborative two CD set that by Boris
> with Merzbow is supposed to be played simultaneously.
>
> Robe
56 matches
Mail list logo