Re: [SlimDevices: Plugins] Announce: Material Skin

2021-05-17 Thread cpd73


doodooaudio wrote: 
> Is it possible to add the tracknumber variable to the custom api for
> json?

Not currently, as Material does not store the track number - but I could
easily add. This would just be a number though, and not 0 padded.

doodooaudio wrote: 
> 
> I have also tried the following without success, I think the concept is
> correct but I don't know how to implement it.
> 
> lmsresponse=lmsCommand('d0:63:b4:00:66:d0',['status','-','1','tags:u']);
> urlfile=lmsresponse.data.result.playlist_loop[0].url;
> dir=urlfile.substring(24,urlfile.lastIndexOf('/')+1);
> tracknum=urlfile.substr(urlfile.lastIndexOf('/')+1,2)

'lmsCommand returns a 'promise' so you have to wait for it. e.g.

Code:


  lmsCommand('d0:63:b4:00:66:d0',['status','-','1','tags:u']).then(({data}) => {
  let urlfile=data.result.playlist_loop[0].url;
  //
  });
  



You handle the response of 'lmsCommand' in the 'then(...)' block.

To demonstrate, if you had the following:

Code:


  console.log('Start');
  lmsCommand('d0:63:b4:00:66:d0',['status','-','1','tags:u']).then(({data}) => {
  console.log('Response');
  });
  console.log('End')
  



You would see the following logged to the console tab:

Code:


  Start
  End
  Response
  




*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.

cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] LmsUpdate and LmsRepack - Synology 8.0.* packages

2021-05-17 Thread ciarpame


T-bird wrote: 
> Shall we try to collect different versions somewhere?
> I have a copy of LogitechMediaServer-x86_64-8.1.1-1610364019.spk

I'm looking for the armv8 flavour, do you know where I can find it?

Thanks



ciarpame's Profile: http://forums.slimdevices.com/member.php?userid=32995
View this thread: http://forums.slimdevices.com/showthread.php?t=111876

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


Re: [SlimDevices: Plugins] Announce: WaveInput for Linux

2021-05-17 Thread bpa


Hypfer wrote: 
> Hello,
> 
> I'm currently trying to get the WaveInput plugin to work in my setup.
> 
> I can confirm that arecord is able to record proper audio from the
> device, however unfortunately, I am getting the "Problem: Can't open
> File For" error message on the Squeezebox screen.
> 
> I've set player.source to debug and here's the log:
> 

"Cant open file for" means LMS couldn't crreate  a command line to play
you file.  The log is way too short.

Log must be from just before your press play (note time) to about 30
secs after you see the message "Can't open file for".  It'llprtobably be
too to incldue in a post so copy all messages (no editing) into a  text
file, zip the text foiel and attach to a post.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=49584

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-05-17 Thread 505


A new development build (0.6.4) is available for those that are have
enabled the Github repo directly. It contains again some fixes by
@philippe44. Once some users have tested it, I will push it to everyone
(it will then become version 0.7)



My patch: 'Reduce brightness when screen saver is active'
(http://server.vijge.net/squeezebox/) for Touch
Plugins: 'SqueezeCloud (SoundCloud)'
(https://github.com/danielvijge/SqueezeCloud), 'Mixcloud'
(https://github.com/danielvijge/lms_mixcloud)

505's Profile: http://forums.slimdevices.com/member.php?userid=44967
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-05-17 Thread doodooaudio


Is it possible to add the tracknumber variable to the custom api for
json?
I am trying to add a menu entry that opens a text file in the browser. 
I have another http server running since I don't know how to get the
file from LMS.

The following works fine except I need to get the tracknumber with
leading zero as shown:

{ "title":"test2",

"script":"window.open('hypertext'+window.location.hostname+':8081/'+'$ARTISTNAME'+'/'+'$ALBUMNAME'+'/myfiles/'+'01.txt')",
"icon":"queue_music"
},

I have also tried the following without success, I think the concept is
correct but I don't know how to implement it.

lmsresponse=lmsCommand('d0:63:b4:00:66:d0',['status','-','1','tags:u']);
urlfile=lmsresponse.data.result.playlist_loop[0].url;
dir=urlfile.substring(24,urlfile.lastIndexOf('/')+1);
tracknum=urlfile.substr(urlfile.lastIndexOf('/')+1,2)



doodooaudio's Profile: http://forums.slimdevices.com/member.php?userid=71784
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Announce: WaveInput for Linux

2021-05-17 Thread Hypfer


Hello,

I'm currently trying to get the WaveInput plugin to work in my setup.

I can confirm that arecord is able to record proper audio from the
device, however unfortunately, I am getting the "Problem: Can't open
File For" error message on the Squeezebox screen.

I've set player.source to debug and here's the log:


Code:


  [21-05-17 19:38:37.2803] Slim::Player::TranscodingHelper::checkBin (264) 
Checking formats for: wavin-flc-*-*
  [21-05-17 19:38:37.2809] Slim::Player::TranscodingHelper::enabledFormat (231) 
Checking to see if wavin-flc-*-* is enabled
  [21-05-17 19:38:37.2813] Slim::Player::TranscodingHelper::enabledFormat (239) 
There are 1 disabled formats...
  [21-05-17 19:38:37.2816] Slim::Player::TranscodingHelper::enabledFormat (245) 
Testing spt-ogg-*-* vs wavin-flc-*-*
  [21-05-17 19:38:37.2820] Slim::Player::TranscodingHelper::checkBin (272)
enabled
  [21-05-17 19:38:37.2824] Slim::Player::TranscodingHelper::checkBin (274)   
Found command: [arecord] -d0 -c2 -f S16_LE -r 44100 -twav -D $FILE$ | [flac] 
-cs --totally-silent --compression-level-0 -
  [21-05-17 19:38:37.2828] Slim::Player::TranscodingHelper::getConvertCommand2 
(413) Rejecting [arecord] -d0 -c2 -f S16_LE -r 44100 -twav -D $FILE$ | [flac] 
-cs --totally-silent --compression-level-0 - because required capability T not 
supported: 
  [21-05-17 19:38:37.2832] Slim::Player::TranscodingHelper::checkBin (264) 
Checking formats for: wavin-pcm-*-*
  [21-05-17 19:38:37.2835] Slim::Player::TranscodingHelper::enabledFormat (231) 
Checking to see if wavin-pcm-*-* is enabled
  [21-05-17 19:38:37.2839] Slim::Player::TranscodingHelper::enabledFormat (239) 
There are 1 disabled formats...
  [21-05-17 19:38:37.2842] Slim::Player::TranscodingHelper::enabledFormat (245) 
Testing spt-ogg-*-* vs wavin-pcm-*-*
  [21-05-17 19:38:37.2846] Slim::Player::TranscodingHelper::checkBin (272)
enabled
  [21-05-17 19:38:37.2850] Slim::Player::TranscodingHelper::checkBin (274)   
Found command: [arecord] -d0 -c2 -f S16_LE -r 44100 -traw -D $FILE$
  [21-05-17 19:38:37.2854] Slim::Player::TranscodingHelper::getConvertCommand2 
(413) Rejecting [arecord] -d0 -c2 -f S16_LE -r 44100 -traw -D $FILE$ because 
required capability T not supported: 
  [21-05-17 19:38:37.2857] Slim::Player::TranscodingHelper::checkBin (264) 
Checking formats for: wavin-mp3-*-*
  [21-05-17 19:38:37.2861] Slim::Player::TranscodingHelper::enabledFormat (231) 
Checking to see if wavin-mp3-*-* is enabled
  [21-05-17 19:38:37.2865] Slim::Player::TranscodingHelper::enabledFormat (239) 
There are 1 disabled formats...
  [21-05-17 19:38:37.2868] Slim::Player::TranscodingHelper::enabledFormat (245) 
Testing spt-ogg-*-* vs wavin-mp3-*-*
  [21-05-17 19:38:37.2871] Slim::Player::TranscodingHelper::checkBin (272)
enabled
  [21-05-17 19:38:37.2874] Slim::Player::TranscodingHelper::checkBin (274)   
Found command: [arecord] -d0 -c2 -f S16_LE -r 44100 -twav -D $FILE$ | [lame] 
--silent -q $QUALITY$ -v $BITRATE$ - -
  [21-05-17 19:38:37.2879] Slim::Player::TranscodingHelper::getConvertCommand2 
(413) Rejecting [arecord] -d0 -c2 -f S16_LE -r 44100 -twav -D $FILE$ | [lame] 
--silent -q $QUALITY$ -v $BITRATE$ - - because required capability T not 
supported: 
  [21-05-17 19:38:37.2883] Slim::Player::TranscodingHelper::getConvertCommand2 
(485) Error: Didn't find any command matches for type: wavin
  



Why is this happening and what can I do about it?

Relevant system info:


Code:


  Logitech Media Server Version: 8.1.2 - 1619728303 @ Fri Apr 30 00:37:16 CEST 
2021
  Hostname: lms
  Server IP Address: 172.18.0.4
  Server HTTP Port Number: 9000
  Operating system: Debian - EN - utf8
  Platform Architecture: x86_64-linux
  Perl Version: 5.24.1 - x86_64-linux-gnu-thread-multi
  Audio::Scan: 1.02
  IO::Socket::SSL: 2.044
  Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)
  Total Players Recognized: 6
  




Hypfer's Profile: http://forums.slimdevices.com/member.php?userid=64839
View this thread: http://forums.slimdevices.com/showthread.php?t=49584

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


Re: [SlimDevices: Plugins] announce: ShairTunes2W - Airtunes on LMS (forked version with Windows support)

2021-05-17 Thread dom2000


Hi all,

I'm trying to use Roon server with my Squeezebox Radios via
Shairtunes2W/Airplay. I'd like to avoid the Roon integrated LMS server
since I would be losing functionality.

When playing music from my iPad to the SB Radios everything is working
fine. When streaming from Roon, I just hear a clicking sound, but no
music is playing. Coverart is transferred, however.

Here are some plugin logs:


Code:


  [19:44:47.994287] main:280 client: 255.255.255.255, ipc port 46267
< ?; would be expecting client IP here
  [19:44:47.995635] bind_socket:791 socket binding 4 on port 34613
  [19:44:47.995708] hairtunes_init:404 [0x1389ad0]: UDP port-0 34613
  [19:44:47.995832] bind_socket:791 socket binding 5 on port 38777
  [19:44:47.995889] hairtunes_init:404 [0x1389ad0]: UDP port-1 38777
  [19:44:47.995955] bind_socket:791 socket binding 6 on port 49848
  [19:44:47.996013] hairtunes_init:404 [0x1389ad0]: UDP port-2 49848
  [19:44:47.996077] bind_socket:791 socket binding 7 on port 51647
  [19:44:47.996134] hairtunes_init:422 [0x1389ad0]: HTTP listening port 51647
  [19:44:47.996330] rtp_request_timing:886 [0x1389ad0]: SENDTO failed 
(Permission denied)
  [19:44:47.996462] rtp_request_timing:886 [0x1389ad0]: SENDTO failed 
(Permission denied)
  [19:44:47.996540] rtp_request_timing:886 [0x1389ad0]: SENDTO failed 
(Permission denied)
  [19:44:48.010433] hairtunes_record:529 [0x1389ad0]: record 49084 69139131
  [19:44:48.052608] http_thread_func:1087 [0x1389ad0]: got HTTP connection 8 
(silent frames 250)
  [19:44:48.064509] handle_http:1272 [0x1389ad0]: received GET HTTP/1.0
  Cache-Control: no-cache
  Connection: close
  Accept: */*
  Host: 192.168.1.46:51647  
  < IP of Docker host/LMS server
  Range: bytes=0-
  User-Agent: iTunes/4.7.1 (Linux; N; Debian (Docker); x86_64-linux; DE; utf8) 
SqueezeCenter, Squeezebox Server, Logitech Media Server/8.1.1/1610364019
  Icy-MetaData: 1
  [19:44:48.064572] handle_http:1318 [0x1389ad0]: responding: HTTP/1.0 200 OK
  Server: HairTunes
  Content-Type: audio/wav
  Connection: close
  [19:44:48.253471] rtp_thread_func:764 [0x1389ad0]: 1st sync packet received
  [19:44:48.253573] rtp_request_timing:886 [0x1389ad0]: SENDTO failed 
(Permission denied)
  [19:44:48.253591] rtp_thread_func:737 [0x1389ad0]: 1st audio packet received
  [19:44:48.253599] buffer_put_packet:648 [0x1389ad0]: fill [level:1] [W:49084 
R:49084]
  [19:44:52.157637] buffer_put_packet:648 [0x1389ad0]: fill [level:513] 
[W:49596 R:49084]
  [19:44:52.284033] rtp_request_timing:886 [0x1389ad0]: SENDTO failed 
(Permission denied)
  [19:44:56.193641] hairtunes_flush:511 [0x1389ad0]: flush 50102 69497467
  [19:44:56.202292] read_line:1219 disconnected on the other end 8
  [19:44:56.202355] http_thread_func:1106 HTTP close 8
  --> clicking sound; no music; coverart transferred
  



I know this is kind of a niche problem, but maybe someone has some tips
for me.

Many thanks!
Dominik



dom2000's Profile: http://forums.slimdevices.com/member.php?userid=71783
View this thread: http://forums.slimdevices.com/showthread.php?t=106289

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


Re: [SlimDevices: Plugins] Announce: CastBridge = integrate Chromecast players with LMS (squeeze2cast)

2021-05-17 Thread JussiM


I got squeeze2cast working in Windows10. It now runs as a standalone
application started from Windows startup folder. For configuration, I
used a temporary LMS installation and moved the plugin folder before
uninstalling the temporary installation. Works fine. The actual LMS
server runs in a FreeNas server where the music files are located. I
could not get Castbridge running there. But no problem with that.

However, when the program starts it opens a window for monitoring the
events. I would like to get it running in silent mode without the status
window. What is the easiest way to achieve this?



JussiM's Profile: http://forums.slimdevices.com/member.php?userid=70599
View this thread: http://forums.slimdevices.com/showthread.php?t=104614

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-05-17 Thread Michael Herger

That is indeed strange that you dont experience it as much!.
For me it is rare that a playlist plays two songs one after another
without intervention from me to click the next button to choose the next
track. It pauses at the end of the track


There isn't another instance of Spotify running somewhere else? You can 
only ever use one instance at any given time. If somewhere else 
(somebody else!) was using your account at the same time, this would 
lead to stopping playback all the time.

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-05-17 Thread san9jay


slartibartfast wrote: 
> What are your squeezelite settings? Are you using default buffer
> settings? I don't see your issue either playing to a Pi3B with pCP 7.
> 
> Sent from my Pixel 3a using Tapatalk

Yes. all defaults. Have not changed anything on that front



san9jay's Profile: http://forums.slimdevices.com/member.php?userid=70342
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-05-17 Thread slartibartfast


san9jay wrote: 
> That is indeed strange that you dont experience it as much!.
> For me it is rare that a playlist plays two songs one after another
> without intervention from me to click the next button to choose the next
> track. It pauses at the end of the track 
> 
> I am using the latest picoreplayer 7.0.0 and LMS 8.1.1 and latest spotty
> plugin 4.4.9 on a Pi 4 server and playback onto a Pi Zero also running
> pcp updated to the same levels.
> The track plays to the end and then pauses. Clicking play at this point
> changes the state to play but nothing happens. Only clicking next get
> the next song to play. I am attaching two pictures. One showing what
> happens at the end of a track within a playlist and the next after
> clicking play.
> 
> Using the Spotify app and Spotify connect from a Macbook or Android has
> the same issue so that does not seem to be relevant.
> 
> What is different in your setup?What are your squeezelite settings? Are you 
> using default buffer
settings? I don't see your issue either playing to a Pi3B with pCP 7.

Sent from my Pixel 3a using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-05-17 Thread san9jay


mherger wrote: 
> > Any hope that the librespot upgrade will fix the very long standing
> > issue of when using Spotify Connect the playlists stop after nearly
> > every song? That remains the most frustrating issue I have with
> Spotty.
> 
> There's always hope. But I can't tell. It's been solid for me while 
> testing recently. That said: I've never suffered the issue as badly as 
> you describe experiencing it.

That is indeed strange that you dont experience it as much!.
For me it is rare that a playlist plays two songs one after another
without intervention from me to click the next button to choose the next
track. It pauses at the end of the track 

I am using the latest picoreplayer 7.0.0 and LMS 8.1.1 and latest spotty
plugin 4.4.9 on a Pi 4 server and playback onto a Pi Zero also running
pcp updated to the same levels.
The track plays to the end and then pauses. Clicking play at this point
changes the state to play but nothing happens. Only clicking next get
the next song to play. I am attaching two pictures. One showing what
happens at the end of a track within a playlist and the next after
clicking play.

Using the Spotify app and Spotify connect from a Macbook or Android has
the same issue so that does not seem to be relevant.

What is different in your setup?


+---+
|Filename: AfterClickingPlayAtEndOfTrack.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=34706|
+---+


san9jay's Profile: http://forums.slimdevices.com/member.php?userid=70342
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-05-17 Thread Michael Herger

Any hope that the librespot upgrade will fix the very long standing
issue of when using Spotify Connect the playlists stop after nearly
every song? That remains the most frustrating issue I have with Spotty.


There's always hope. But I can't tell. It's been solid for me while 
testing recently. That said: I've never suffered the issue as badly as 
you describe experiencing it.

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-05-17 Thread san9jay


mherger wrote: 
> 
> I'm in the process of (trying to) update spotty to the latest librespot.
> 
> Let's hope some of these issues will be fixed once I get there.

Michael,

Any hope that the librespot upgrade will fix the very long standing
issue of when using Spotify Connect the playlists stop after nearly
every song? That remains the most frustrating issue I have with Spotty.

When using the Squeezer app and the MyApps->Spotty option i do not have
this issue.

Regards
Sanjay



san9jay's Profile: http://forums.slimdevices.com/member.php?userid=70342
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] ANNOUNCE: Line-In Button Applet for Radio

2021-05-17 Thread indifference_engine


MichaelPr wrote: 
> Hi @indifference_engine,
> 
> it seems your repo is down again...:
> http://www.koukalaka.me.uk/squeezebox/repo/repo.xml
> 
> 34696

I wasn't aware they archived the sites! Anyway, it's back up now.
Sorry for any inconvenience.



1xRadio, 2xReceiver, 2xController, 1xSB3, 1xSqueezeLite (on
Rpi3/Jessie), SBS 7.9.2 (on Rpi3/Jessie)
Creator of SqueezeIR applet for the Controller.
Creator of LineInButton applet for the Radio.

indifference_engine's Profile: 
http://forums.slimdevices.com/member.php?userid=20698
View this thread: http://forums.slimdevices.com/showthread.php?t=109870

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


Re: [SlimDevices: Plugins] Deezer app

2021-05-17 Thread mvn2009


Having issues with Deezer recently, opening the app menu items is
lagging and returns a time out on a regular basis. Playing Deezer flow
will stop frequently, manually skipping to the next song will start it
for a few songs but after that it stops again. Using DSTM with LastFM
will result in skipping the songs which are not on my server. 

Anybody else experiencing these issues lately?

My setup:
Version: 8.2.0 - 1620914398 @ Thu May 13 16:14:44 CEST 2021
Operating system: Debian - EN - utf8
Platform Architecture: armv7l-linux
Perl Version: 5.28.1 - arm-linux-gnueabihf-thread-multi-64int
Database Version: DBD::SQLite 1.58 

Verstuurd vanaf mijn HD1903 met Tapatalk





mvn2009's Profile: http://forums.slimdevices.com/member.php?userid=33172
View this thread: http://forums.slimdevices.com/showthread.php?t=109064

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


Re: [SlimDevices: Plugins] Announce: CDplayer plugin

2021-05-17 Thread bpa


MichaelPr wrote: 
> 'Pause' with Win10/VLC just stops playing (DVD-Drive keeps disk spinning
> on slow speed (guess x1) and 'play' starts playing w/o delay. 'Pause'
> with LMS on Linux/CDPlayer stops playing (don't know if the disk kept
> spinning) and after 'play' spinning speeds up with max. speed. Then it
> takes about 15 sec. to resume at the org. position.

The plugin starts a separate instance of cdda2wav for each track. 
The plugin aimed to be simepl by using a common exe to habdle CDs across
Windows, Linux and OSX and keep OS specfic system calls to minimum (e.g.
on Linux cd specific calls are used to get status of drive/door and cd
type in drive - better user feedback)

cdda2wav is a ripper not a player - once started it does not provide the
capability to "pause" a track rip but it can started at a timepoint in a
track.

When LMS plays a a track, data stream from cdda2wav goes into a pipe
(and OS buffers) and then into LMS input side buffers (e.g. flac) and
then into player buffer. It is possible to enable pause (via settings)
but if pause is too long cdda2wav may have finished ripping and some
audio never gets into buffers. So depending on size of buffers (which is
system dependent) when play is resumed track may be cut short.  More
reliable approach used was to record time position at pause and restarts
cdda2wav  when play ius restarts - actual delay is system dependent.

VLC may be taking the approach of ripping whole tracks into memory in
background (with VLC readahead of next track) and so can play /pause
track as it is total control of whole track as it a player only system
and can use disk / memory to temp store audio data.  VLC is mainly a
video player and so can play video DVDs and so has more capabilities to
handle BD/DVD/CD drive and knows it has to implement schemes to handle
big volumes of data and not be subject to drive delays.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=47288

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-05-17 Thread carsten_h


cpd73 wrote: 
> Ah, I need to set a max-width there if showing the clock.

That would be great! Thank you!



pi4 4gb picoreplayer with lms and squeezelite for usb inside an argon
one case
pi3b+ (7\" display, hifiberry dac+ pro) picoreplayer with
squeezlite/jivelite for hifiberry and bluetooth headphone inside a
smartipi touch case
two airport express
ikea symfonisk

carsten_h's Profile: http://forums.slimdevices.com/member.php?userid=69113
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-05-17 Thread cpd73


slartibartfast wrote: 
> Too late. I did a clear and rescan.

Then if that resolved the issue I fail to see -how- it could be a
Material issue. Please -before- reporting issues such as this, use
Material's debug to see where the issue lies. As stated, that'll be the
first thing I ask for anyhow.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.

cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-05-17 Thread slartibartfast


cpd73 wrote: 
> Then it -could- have been a timing issue - as the same request should be
> used for both. Either way the first thing I'm going to ask for is the
> JSON RESP messages sent by LMS when showing the now-playing list. This
> would tell you if its Material or LMS.Too late. I did a clear and rescan.

Sent from my Pixel 3a using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-05-17 Thread cpd73


slartibartfast wrote: 
> No because the browse pane doesn't show any duplicate.

Then it -could- have been a timing issue - as the same request should be
used for both. Either way the first thing I'm going to ask for is the
JSON RESP messages sent by LMS when showing the now-playing list. This
would tell you if its Material or LMS.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.

cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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