Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-09 Thread matrixed99

Antoniop wrote: 
> Good news ! Yes, only the JRE works from my experience.
> If you ever discover how to use the gui with a newer version of java,
> that would interest me, because I'm trying to use on RPI and JRE1.5
> doesn't exist on ARM.
> 
> Enjoy MusicIp !

I tested Java 6, 7, and 8 from the archives from
http://www.oracle.com/technetwork/java/archive-139210.html. If you use
the 32bit versions, they all work with MusicIP on Fedora 26, at least as
far as loading the GUI. There are several errors in loading which are
cosmetic only, and don't seem to affect the operation of MusicIP. I
haven't tried analysis yet, but I'll update this thread when I do.


----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-08 Thread matrixed99

Antoniop wrote: 
> Congratulations ! 
> This part with SELinux was not an easy task. 
> About the problem with the gui, did you see 'this'
> (https://lists.fedoraproject.org/pipermail/users/2016-March/469260.html)
> ?

I did, and it solved the error message. Now, the gui runs for a few
seconds and quits. If you ever have the time, I've attached the Java
error log.hs_err_pid5949.log


+---+
|Filename: hs_err_pid5949.log   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=23620|
+---+

--------
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-08 Thread matrixed99

Antoniop, you're a prince! SELinux is definitely the problem, only
changing it to "permissive" mode (as you outlined) , which lowers
security to non-enforced warnings, allows MusipIP to be run as a systemd
service before LMS at startup, works. I did this on two different
computers, and on one of them, changing SELinux to the wrong mode
"broke" it so that the computer would not boot. A lot of research and
time was required to find the solution, going to Grub and adding an
entry  selinux=0 allowed me to reboot and get MusicIP working. To anyone
doing this, I highly recommend that you have a complete image backup to
reinstall if you're going to try this. Installing LMS 7.91 on Fedora 26
with MusicIP is possible, but there are quite a few steps involved. I'm
going to try to summarize the process Antoniop was so kind to create to
make it easy to follow for anyone wanting to do so in the next few
days.

Now as far as the MusicMagicMixer GUI, I tried it out, but it didn't
work. No error message on the command line, but journal -xe showed:
tracker-store[3506]: Could not create FTS delete statement: no such
tokenizer: TrackerTokenizer.

After the GUI, I think I'll try out spicefly.


----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-04 Thread matrixed99

RAN THE CODE:

cd /opt/MusicMagicMixer/
ls -la

ROOT WAS THE OWNER, SO I RAN

cd /opt
chown -R  MusicMagicMixer/
chgrp -R  MusicMagicMixer/

SCRIPT IS NOW:[/B](USER IS NOT JUST M)

#! /BIN/SH

# PROVIDES: MMSERVER
# REQUIRED-START:
# DEFAULT-START: 3 4 5
# DEFAULT-STOP: 0 1 2 6
# SHORT-DESCRIPTION: STARTUP SCRIPT FOR THE MUSICMAGIC SERVER
# DESCRIPTION: MUSICMAGIC SERVER PROVIDES MUSIC MIXES FOR SQUEEZEBOX
SERVER
### END INIT INFO
# SEND OUTPUT TO SYSLOG
# EXEC 1> >(LOGGER -S -T $(BASENAME $0)) 2>&1
# NON-PRIVILEGED USER TO RUN MUSICMAGICSERVER.
# DOESN'T WORK WITH USER SQUEEZEBOXSERVER, SO USE ROOT INSTEAD.
USER=M

# PATH TO THE MUSICMAGICMIXERSERVER
EXPORT MUSICHOME=\"/OPT/MUSICMAGICMIXER/\"

CASE $1 IN
START)
IF PGREP -F MUSICMAGICSERVER > /DEV/NULL
THEN
ECHO \"MUSICIP SERVER IS ALREADY RUNNING\"
ELSE
ECHO \"STARTING MUSICIP SERVER\"
SU - $USER -C $MUSICHOME\"MUSICMAGICSERVER START & > /DEV/NULL\"
FI
;;
STOP)
IF PGREP -F MUSICMAGICSERVER > /DEV/NULL
THEN
ECHO \"STOPPING MUSICIP SERVER\"
SU - $USER -C $MUSICHOME\"/MUSICMAGICSERVER STOP & > /DEV/NULL\"
ELSE
ECHO \"MUSICIP SERVER IS ALREADY STOPPED\"
FI
;;
STATUS)
IF PGREP -F MUSICMAGICSERVER > /DEV/NULL
THEN
ECHO \"MUSICIP SERVER IS RUNNING\"
ELSE
ECHO \"MUSICIP SERVER IS STOPPED\"
FI
;;
*)
ECHO \"USAGE: SERVICE MMSERVER { START | STOP | STATUS }\"
;;
ESAC

[B]AT THE TERMINAL, RAN:

sudo systemctl daemon-reload

sudo systemctl start mmserver.service

RECEIVE THE FOLLOWING ERROR MESSAGE:

Job for mmserver.service failed because the control process exited with
error code.
See "systemctl  status mmserver.service" and "journalctl  -xe" for
details.

RAN THE FOLLOWING:

journalctl  -xe

RECEIVED THE FOLLOWING ERROR:

SELinux is preventing mmserver from read access on the file
/usr/bin/su.

*  Plugin catchall
(100. confidence) suggests   **

If you believe that
mmserver should be allowed read access on the su file by default.
Then you should report
this as a bug.
You can generate a local
policy module to allow this access.
Do
allow this access for now
by executing:
# ausearch -c 'mmserver'
--raw | audit2allow -M my-mmserver
# semodule -X 300 -i
my-mmserver.pp

FOLLOWED THE SUGGESTION IN THE ERROR MESSAGE:

# ausearch -c 'mmserver'
--raw | audit2allow -M my-mmserver
# semodule -X 300 -i
my-mmserver.pp

Ran the code to systemctl daemon-reload and start mmserver.service and
received the same error.

Some progress here, but still working on it. Is MusicMagicServer a
32-bit app? Could running it on a 64bit system be the problem?



matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-03 Thread matrixed99

I've modified the /etc/systemd/system/mmserver.service but when I enable
it, the init.d script fails and causes the mmserver.service to fail:

mmserver[4797]: /etc/init.d/mmserver: line 27:
/opt/MusicMagicMixer/MusicMagicServer start & > /dev/null: No such file
or directory
mmserver.service: Unit entered failed state.
Sep 04 01:37:12 sagsqueezebox systemd[1]: mmserver.service: Failed with
result 'exit-code'.

I had to take the su - $USER -c part of the mmserver init.d script out
because it resulted in the same error

Sorry my Linux skills are very basic, I can't seem to figure this out. 
And thanks again for taking the time to help, your English is fine

matrixed99


----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-01 Thread matrixed99

Antoniop,

Thanks for the Java information. I've been running the MusicMagicMixer
GUI on a Windows laptop for years, writing the analysis to the files,
and running LMS and MusicIP on Fedora Linux. I'm going to try using Java
1.5 to run the GUI on Linux, as you have recommended.

The current status of my MusicIP install on Fedora 26 is that I can run
it manually successfully after startup, but it starts and then
immediately stops without error during startup. There are no errors, at
least that I have been able to find, viewing the logs with systemctl and
journalctl. Running the service after startup asks for a password, and
then loads MusicIP headless successfully. Here are the scripts and
logs:

/etc/init.d/mmserver


# Provides: mmserver
# Required-Start: 
# Default-Start:3 4 5
# Default-Stop: 0 1 2 6
# Short-Description:Startup script for the MusicMagic Server
# Description:  MusicMagic Server provides music mixes for
Squeezebox Server
### END INIT INFO
# Send output to syslog
# exec 1> >(logger -s -t $(basename $0)) 2>&1
# NON-PRIVILEGED USER TO RUN MUSICMAGICSERVER.
# Doesn't work with user squeezeboxserver, so use root instead.
USER=m

# PATH TO THE MUSICMAGICMIXERSERVER 
export MUSICHOME=/opt/MusicMagicMixer/

case $1 in
start)
if pgrep -f MusicMagicServer > /dev/null
then
echo "MusicIP Server is already running"
else
echo "Starting MusicIP Server"
su - $USER -c $MUSICHOME"MusicMagicServer start  & >
/dev/null" 
fi
;;
stop)
if pgrep -f MusicMagicServer > /dev/null
then
echo "Stopping MusicIP Server"
su - $USER -c $MUSICHOME"MusicMagicServer stop  & >
/dev/null" 
else
echo "MusicIP Server is already stopped"
fi
;;
status)
if pgrep -f MusicMagicServer > /dev/null
then
echo "MusicIP Server is running"
else
echo "MusicIP Server is stopped"
fi
;;
*)
echo "Usage: service mmserver { start | stop | status }"
;;
esac

/ETC/SYSTEMD/SYSTEM/MMSERVER.SERVICE

[Unit]
Description=Start MusicIP Server
After=network.target
Before=squeezeboxserver.service

[Service]
Type=simple
# Environment=/opt/MusicMagicMixer
ExecStart=/bin/bash -c "echo OFF > MusicMagicServer start & >
/dev/null"
RemainAfterExit=yes
ExecStop=/bin/bash -c "echo ON > MusicMagicServer stop & > /dev/null"

[Install]
#WantedBy=basic.target 
WantedBy=multi-user.target

OUTPUT FROM SYSTEMCTL STATUS MMSERVER

● mmserver.service - Start MusicIP Server
Loaded: loaded (/etc/systemd/system/mmserver.service; enabled; vendor
preset: disabled)
Active: active (exited) since Fri 2017-09-01 19:53:50 EDT; 38min ago
Process: 902 ExecStart=/bin/bash -c echo OFF > MusicMagicServer start
& > /dev/null (code=exited, status=0/SUCCESS)
Main PID: 902 (code=exited, status=0/SUCCESS)
Tasks: 0 (limit: 4915)
CGroup: /system.slice/mmserver.service

Thanks for the help and for spending the time to look at this!



matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-08-28 Thread matrixed99

Wirrunna,

So kind of you to send the script and links. The good news is, the
scripts worked! I previously was only able to load MusicIP by changing
to the /MusicMagicMixer directory and inputting ./MusicMagicServer start
in the terminal. With the script, I can run the script itself without
changing directories and am able to  start|stop MusicIP, but a password
is requested and required. It will not  to run at startup successfully.
I've tried a few approaches to correct this, but none have been
successful so far. 

1 - The stock init.d script doesn't run successfully after a reboot, or
login/logout

2 - Tried the following to convert original script to system.d
sysv.init.script.to.systemd.unit.file.md

Copy the file to /etc/init.d/mmserver.
Enable the SysV service: chkconfig --add mmserver.
Enable the SysV service: chkconfig mmserver on.
Start the service: service mmserver start .


This is also unsuccessful. The script runs and exits immediately each
time it is run, on the command line or after booting.

3. The creation of a new mmserver.service unit

I've tried many approaches new systemd scripts, none successfully. I've
tried different types (simple, forked, oneshot). All of them seem to
fail because the start process exits immediately after running. Even
when journalctl shows no errors, this is the case.

I use the MusicIP gui in Windows, and write the analysis to the flac
files before moving them the Linux server running LMS, so I only need
the headless MusicIP. I'm going to study systemd more carefully (sadly),
but some questions for anyone who might know:

Can MusicIP be run on Wine on the same machine as LMS and work with it?

Is Java used in the headless install of MusicIP?

If all else fails, manually running MusicIP and LMS would work, but
after having it run at startup for ten years, not a first choice.


----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


[SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-08-21 Thread matrixed99

Has anyone had any success running MusicIP headless in Fedora 26? After
doing a clean install of Fedora, I'm unable to get the scripts to run. I
have tried running the scripts from /etc/init.d as is, attempted to
modify them to work, tried to convert the scripts to pure systemd
scripts that don't call the original scripts, and converting them to
systemd scripts, but without success. 

I am by no means an expert in Linux, but  have had a functioning LMS
server on Fedora 4 through 14 with MusicIP for 12 years. Most of the
errors have been "file not found" in referencing the original scrip in
many locations in many variations, but I've been able to get through
these. Much tougher has been the problem where the unit loads and
deactivated it self right away. I have tried service types of simple,
forking and one shot. The only way I can get it to run is on the command
line, changing to the /MusicMagicMixer directory, and running
./MusicMagicServer start/stop. 

When working with systemd to run the scripts in /etc/init.d, my
process looks something like this:

sudo systemctl disable /etc/systemd/system/mmserver.service
sudo nano /etc/init.d/mmserver
sudo systemctl enable /etc/systemd/system/mmserver.service
sudo systemctl daemon-reload

At this point, either:
reboot
Or:
sudo systemctl start mmserver.service

I use a similar approach when the systemd script calls the init.d
script

After many days of working with this, I'm at an impass. Anyone had any
success with this, or have any suggestions? 
Thanks!


--------
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Soundcloud plugin for squeezeserver

2013-11-20 Thread matrixed99

Thanks, makv. I looked at your previous post more carefully and was able
to use your method to get an API key. But after installing it, none of
the user account specific functions like dashboard or favorites work and
I can't see my "sounds" as they are called in Soundcloud. I can playback
URLs, including private ones, but I could do that before installing the
API key. Am I missing something? Thanks again.

makv wrote: 
> matrixed99,
> 
> If you look at the full URL for the github navigation, it should end in
> something like this:
> 
> -callback.html?code=bb39b1b3411555346395d3893d89bc4b#access_token=&scope=non-expiring-
> 
> You should be able to use the  above as the API.
> This is what I was trying to describe in my post above. Did you try
> that?
> 
> (Couldn't see your full URL as the forum shortens it).


----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=92723

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Soundcloud plugin for squeezeserver

2013-11-18 Thread matrixed99

I've gotten the Soundcloud plugin to work well on LMS 7.8 Fedora 14. But
as discussed here previously, clicking on the link in the plugin
settings and following the links leads to
https://github.com/grobbie/SqueezeCl...e=non-expiring and displays the
callback.html file instead. Does anyone know of another method to get an
API key for my soundcloud account or to get the existing method to
work?
Thanks.



matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=92723

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Musicip scanner link broken

2010-12-20 Thread matrixed99

No, no firewall, anti-virus or port blocking software. It's a Linux
server dedicated to the Squeezebox only. My next plan is to install a
new boot drive, install a fresh Fedora 13 system and see what happens.
It would be nice to know what is causing this, though.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=83609

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Musicip scanner link broken

2010-12-18 Thread matrixed99

Checked the mmm.ini file, it's correctly set. Erased the cache file,
since my analysis is archived to the files, rebuilt the cache, but
still getting the same result. I'm really stumped, especially I have
MusicIP working on an identical system in all respects.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=83609

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Musicip scanner link broken

2010-12-06 Thread matrixed99

After a scan with those settings, I got the following in the log:

[10-12-06 13:31:56.5755]
Slim::Plugin::MusicMagic::Plugin::_musicipError (588) MusicIP: http
error, no response.
[10-12-06 13:32:03.7197] Slim::Plugin::MusicMagic::Common::_gotFilters
(137) Filter "" does no longer exist - resetting
[10-12-06 13:32:03.7204] Slim::Plugin::MusicMagic::Common::_gotFilters
(146) Filter "" does no longer exist - resetting
[10-12-06 13:33:56.5819]
Slim::Plugin::MusicMagic::Plugin::_musicipError (588) MusicIP: http
error, no response.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=83609

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Musicip scanner link broken

2010-12-03 Thread matrixed99

Yes, I can access the API and perform operations like adding music and
scanning for duplicates in a browser window, or load the GUI and use
that.
But for some reason, SBS can't see it on the port. I tried switching
the port in musicip and SBS, but that didn't fix the problem.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=83609

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Musicip scanner link broken

2010-12-03 Thread matrixed99

Thanks for the responses guys. Yes, Musicip is definitely starting up
before SBS. I set that up awhile back. My matching server is set up the
same way, and is working fine. Something must be broken, I just don't
know how to figure out what it is.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=83609

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


[SlimDevices: Plugins] Musicip scanner link broken

2010-12-02 Thread matrixed99

Using Squeezeboxserver 7.5.2 with the MusicIP plugin on a Fedora4 Linux
system, the ability to import songs from MusicIP has suddenly failed.
Scanner logs show:

Slim::Plugin::MusicMagic::Importer::initPlugin (91) Testing for API on
localhost:10002
Slim::Plugin::MusicMagic::Importer::initPlugin (116) Cannot Connect

None of the 26k songs in my MusicIP database are imported. The database
can be updated properly without musicIP, i.e., plugin disabled, Music
folder specified. MusicIP's operation can be verified, headless mode,
accessing the API on a webpage or loading in GUI mode, and performing
various musicip housekeeping. 

I have done multiple clean installs of 7.5.2, and 7.6, updating nightly
versions for a month, with still no change.

I have a 2nd Squeezebox server system, which has the same software and
hardware versions and is working perfectly, including the musicip
import.


Anyone have any ideas how I can go about fixing this? Could it be a
problem with the ports in Linux? A perl version problem? Version
compatibility with Fedora 4? I would say 7.5, 7.6 scanner problems or
musicip problems, but I have them working perfectly on my 2nd system.

My setup:

My setup:

Version: 7.5.2 - r31508 @ Wed Nov 10 03:01:38 MST 2010
Hostname: Soulbro2
Server IP Address:
Server HTTP Port Number: 9000
Operating system: Red Hat - EN - utf8
Platform Architecture: i686-linux
Perl Version: 5.8.9 - i686-linux-thread-multi
MySQL Version: 4.1.16
Total Players Recognized: 2 

Thanks in advance for any help or direction.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=83609

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


[SlimDevices: Plugins] Adding mp4/aac files in MusicIP

2009-08-16 Thread matrixed99

The MusipIP forums have been down for a least a week, so I've come here
to seek help. I have been unsuccessfully trying to add mp4/AAC files
(unprotected) to both the headless and the Mixer versions of MusicIP
1.8.
I'm running Squeezecenter 7.3.4 on Fedora 4 Linux. MusicIP doesn't seem
to see the mp4 files. I am able to play mp4 files with Squeezecenter.
Anyone familiar with this problem?


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=66725

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Lazy Search for SqueezeCenter 7.0 released

2009-01-05 Thread matrixed99

I have the Lazy Search 3.3 plugin installed on a Linux based
Squeezecenter 7.3 server with MusicIP running. Lazy Search seemed to
install properly, I can access it from the Web interface and with the
remote. However, when I attempt a search, I get a message "Lazy Search
Library Search in progress" I allowed this to run for two days, but
still received the message when trying to "Lazy Search". I've also
tried manually re-starting the scan in the Web based plugin
configuration, but still get the same message. Any suggestions? Thanks.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=45531

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


Re: [SlimDevices: Plugins] announcing SaverSwitcher: plugin that cycles through screensavers

2007-02-26 Thread matrixed99

I was just about to post a similar message. I second the notion. This is
a great plugin, and it would be amazing if there was a way to assign
different RSS feeds to separate screensavers. And thanks Peter, for a
truly useful plugin.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=32230

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: MusicIP and adding new music

2007-01-27 Thread matrixed99

Diana;174548 Wrote: 
> You might try deleting the entire Cache folder from the Slimserver
> folder - this is what I've routinely done on my WinXP system.  (Make
> sure there are no settings in SS for a music folder path or a playlists
> path before you exit SS and delete the Cache.)  
> 
> On restart, SS detects that there's no cache folder and rebuilds it (I
> think mysqld may actually be doing this);  then the scanner starts and
> does a complete rescan to rebuild the library.  Can't think why that
> process would be any different on a Linux system.

Diana,

Thanks so much for all the help. Deleting the cache has eliminated over
90% of the duplicate file issues I have.
But on 6.5.1 on Linux, I have no more Cache folder. Maybe the Linux
slimserver calls the Cache folder FileCache? Deleting the Cache folder
rebuilt the  library but didn't rebuild the Cache folder and contents.
Maybe slimserver doesn't need the cache folder when "use Music Magic"
is selected.

There seem to be some issues with MusicIP when your music library is on
multiple drives and folders. I have three drives named /Music, /Music2
and /Music3. /Music2 has alias's to /Music and /Music3. When I add new
music, I specify /Music2 in the add Music box of the MusicMagicServer.
I'll have to keep testing and searching.

The mixes are great, the MusicIP setup issues are worth the time and
effort, but I'd have to completely agree with you when you say "its not
a consumer product"!


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=31265

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: MusicIP and adding new music

2007-01-26 Thread matrixed99

I'm been experiencing the duplicate entry problem that others have
described here when using the MusicIP in headless mode on Linux. I'm
currently trying to solve the problem by deleting the cache files
manually. As tech support recommended, I deleted everything inside of
the /usr/local/Slimserver/Cache folder. When I restart the slimserver
service and access the Web interface, there is no evidence of the cache
rebuilding itself. The cache folder is empty. Is there another method of
getting the cache to rebuild in Linux?


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=31265

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: MusicIP and adding new music

2007-01-04 Thread matrixed99

I'm running Slimserver 6.5.1 and MusicIP on a Linux machine. I have the
double entry problem described here. Where do you specify the library
location for the MusicIP server? I don't seem to have an entry in the
mmm.ini file or in the Slimserver MusicMagic web section.

Thanks.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=31265

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: Problem with Alien BBC ABC Podcasts

2006-05-24 Thread matrixed99

I'm using SlimServer Version: 6.5b1 - 7264. Sorry for the delay in
response, I was out of town and away from the SB. Thanks.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=23984

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Problem with Alien BBC ABC Podcasts

2006-05-17 Thread matrixed99

When I navigate to the Alien BBC ABC Podcasts menu, and press play on
the remote, I get the message "cannot open remote URL". Everything else
works great, including the Danish and Swedish radio stations.

And thanks for a great plugin, Alien BBC really adds alot to the
Squeezebox.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=23984

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: MusicInfo Large Size Problem

2006-03-29 Thread matrixed99

Michael,

Thanks for the great plugin. I had the same small problem and the
version here worked perfectly to fix it. Cheers.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=21994

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: MusicInfo Large Size Problem

2006-03-29 Thread matrixed99

Michael,

Thanks for the great plugin. I had the same small problem and the
version here worked perfectly to fix it. Cheers.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=21994

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: Announce: AlienBBC v1.01

2006-03-23 Thread matrixed99

My mistake, I needed to give user Slimserver the proper permissions.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=22354

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: Announce: AlienBBC v1.01

2006-03-23 Thread matrixed99

Sorry about posting in this thread, it seemed an appropriate place to
me. Shall I repost it as a new thread or continue it here?

In any case, the new mplayer.sh is already in /usr/local/slimserver
/Bin.


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=22354

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: Announce: AlienBBC v1.01

2006-03-23 Thread matrixed99

I've just attempted to upgrade from a working AlienBBC 1.0 plugin to
1.01. I removed the slimserver-convert.conf, custom-types.conf, and
Alien plugin folder before installing the new files. I am running
slimserver on a Fedora4 Linux box running SlimServer Version: 6.5b1 -
6676.

I installed the new mplayer.sh in both /usr/local/bin and
/usr/local/slimserver/bin, the same place I had the older files
installed. I installed the Alien folder in the plugin folder.

When I try to listen to a station, I get "RTSP Convert error, check
file types".

In the Slimserver Server settings/File types menu, the 3 RTSP file
types were unchecked. After checking them and clicking the change
button, I receieve the following error messages:

Required binary was not found: [mplayer.sh] -really-quiet -vc null -vo
null -bandwidth 1000 -cache 128 -af
volume=0,resample=44100:0:1,channels=2 -ao
pcm:nowaveheader:file=/dev/fd/3 $FILE$ | [flac] -cs --totally-silent
--endian=little --channels=2 --sign=signed --bps=16 --sample-rate=44100
--compression-level-0 -
Required binary was not found: [mplayer.sh] -really-quiet -vc null -vo
null -bandwidth 1000 -cache 128 -af
volume=0,resample=44100:0:1,channels=2 -ao
pcm:nowaveheader:file=/dev/fd/3 $FILE$ | [lame] --silent -r -x -q
$QUALITY$ -b $BITRATE$ - -
Required binary was not found: [mplayer.sh] -really-quiet -vc null -vo
null -bandwidth 1000 -cache 128 -af
volume=0,resample=44100:0:1,channels=2 -ao
pcm:nowaveheader:file=/dev/fd/3 $FILE$

Does anyone have an idea what I should to to get this working again? I
have saved the older files I removed just in case. 
Thanks


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=22354

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] Re: AlienBBC/mplayer problem in Fedora4 Linux Slimserver

2005-12-30 Thread matrixed99

Thanks for the responses. I changed the permissions for mplayer.sh, and
it solved the file type problem. The BBC programs show up and load in
Slimserver now without any error messages, but there's no audio output.
Any other suggestions? Also, does anyone know how to properly install
and run the gcc 3.2 compiler needed to compile mplayer, without
disturbing the gcc 4.0 install already in fedora4?
Thanks again


-- 
matrixed99

matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=19547

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins


[SlimDevices: Plugins] AlienBBC/mplayer problem in Fedora4 Linux Slimserver

2005-12-29 Thread matrixed99

I'm running Slimserver 6.5 beta with no significant problems. I have the
latest AlienBBC plugin 1.00a designed to run with 6.5. My mplayer
version is 1.0pre7try2-Fedora-GS-4.0.1. I installed it from an rpm, I
couldn't figure out how to compile it with GCC 3.4 without uninstalled
gcc 4, and didn't want to destabilize my fedora install. 

The plugin shows up in slimserver, but when I select the rtsp choices
available in /server settings/file types, I get:

Required binary was not found: [mplayer.sh] -really-quiet -vc null -vo
null -cache 128 -af volume=0,resample=44100:0:1,channels=2 -ao
pcm:nowaveheader:file=/dev/fd/3 $FILE$ | [flac] -cs --totally-silent
--endian=little --channels=2 --sign=signed --bps=16 --sample-rate=44100
--compression-level-0 -
Required binary was not found: [mplayer.sh] -really-quiet -vc null -vo
null -cache 128 -af volume=0,resample=44100:0:1,channels=2 -ao
pcm:nowaveheader:file=/dev/fd/3 $FILE$ | [lame] --silent -r -x -q
$QUALITY$ -b $BITRATE$ - -
Required binary was not found: [mplayer.sh] -really-quiet -vc null -vo
null -cache 128 -af volume=0,resample=44100:0:1,channels=2 -ao
pcm:nowaveheader:file=/dev/fd/3 $FILE$

mplayer is installed in the /usr/bin directory and  lame is installed
and usable. Any ideas on how I should proceed to get this running?
Thanks.


-- 
matrixed99
----
matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=19547

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/lists/listinfo/plugins