Jump to content

New Plugin - Philips Hue Mood Lighting


BillOatman
Go to solution Solved by Prydwyn,

Recommended Posts

BillOatman

@chefMight not need to be higher.  In fact might not be needed at all after swapping those 2 statements. I'll try this one out tonight and test it without the delay as well when I can.

I have a old V1 hub though.  The only reason I know that is Philips crippled it in April. It can't connect to the Philips server and won't get any more updates.  Still works locally though (or so they say, I'll check tonight :) ).  I was very annoyed when I noticed the globe led (internet) was blinking and spent an hour Fing with it until I saw a post about Philips doing that.

Edited by BillOatman
  • Like 1
Link to comment
Share on other sites

altairr
15 hours ago, chef said:

I'd love to know if the new version in the catalogue  fixes the issue. 

Sadly it doesn't seem to fix it. Here is a short video with the latest version of the plug-in to illustrate perhaps more clearly the problem. 

  • Thanks 1
Link to comment
Share on other sites

3 hours ago, BillOatman said:

@chefMight not need to be higher.  In fact might not be needed at all after swapping those 2 statements. I'll try this one out tonight and test it without the delay as well when I can.

I have a old V1 hub though.  The only reason I know that is Philips crippled it in April. It can't connect to the Philips server and won't get any more updates.  Still works locally though (or so they say, I'll check tonight :) ).  I was very annoyed when I noticed the globe led (internet) was blinking and spent an hour Fing with it until I saw a post about Philips doing that.

Seem like it does need to be higher.

Should we test 1000? Or higher?

Link to comment
Share on other sites

BillOatman
34 minutes ago, chef said:

Seem like it does need to be higher.

Should we test 1000? Or higher?

What do you have now, 150ms?  I'd crank it up to a second like you are suggesting. If that doesn't take care of it then what we are thinking is happening, probably isn't.

  • Like 1
Link to comment
Share on other sites

4 minutes ago, BillOatman said:

What do you have now, 150ms?  I'd crank it up to a second like you are suggesting. If that doesn't take care of it then what we are thinking is happening, probably isn't.

Will do!

Could also be rouge session IDs in the paused list... Should probably check that too.

If all else fails, we could probably use a boolean.

  • Like 1
Link to comment
Share on other sites

BillOatman

@chefYou are using Task.Delay() but not asynchronously.  Not sure if that is even delaying at all the way you have it.  This link explains the difference between that task delay and sleeping the thread including sample code using it asynchronously.  I think you want to use Sleep() here.

This

                    if (PausedSessionsIds.Exists(s => s.Equals(e.Session.Id)))
                    {
                        PausedSessionsIds.RemoveAll(s => s.Equals(e.Session.Id));
                        Task.Delay(150);
                        PlaybackUnPaused(e, config, config.SavedHueEmbyProfiles.FirstOrDefault(p => p.DeviceName.Equals(e.Session.DeviceName)));
                        
                    }

To

                    if (PausedSessionsIds.Exists(s => s.Equals(e.Session.Id)))
                    {
                        PausedSessionsIds.RemoveAll(s => s.Equals(e.Session.Id));
                        System.Threading.Thread.Sleep(1000);
                        PlaybackUnPaused(e, config, config.SavedHueEmbyProfiles.FirstOrDefault(p => p.DeviceName.Equals(e.Session.DeviceName)));                      
                    }

 

Edited by BillOatman
  • Like 1
Link to comment
Share on other sites

1 minute ago, BillOatman said:

Hey @chefI think I noticed the plugin updated yesterday but didn't get a chance to test it.  Should @altairr test it out?

Yes, it was late when I finally got to the change. We should definitely see if changing the task delay fixes anything.

Link to comment
Share on other sites

BillOatman

If you check in the code I can play with it this weekend if it still doesn't work.

  • Like 1
Link to comment
Share on other sites

altairr
On 04/12/2020 at 15:04, chef said:

Yes, it was late when I finally got to the change. We should definitely see if changing the task delay fixes anything.

I did some tests last night and it doesn't seem to fix the issue. I do get the impression that it occurs less frequently but I can't confirm yet.

I'll try to test more thoroughly in the next few days. I'll keep you posted!

  • Like 1
Link to comment
Share on other sites

12 hours ago, altairr said:

I did some tests last night and it doesn't seem to fix the issue. I do get the impression that it occurs less frequently but I can't confirm yet.

I'll try to test more thoroughly in the next few days. I'll keep you posted!

Sorry for the late reply here. I can up the threshold on task.delay if it isn't work properly.

looking forward to hearing back :)

  • Like 2
Link to comment
Share on other sites

altairr

Not sure what changed but it definetly didn't fixed the issue and I actually don't believe the frequency changed. In the log below, I unpaused a video,  the lights switched rapidly but kept the paused scene although the video was still playing and after a few seconds the lights switched to the unpaused scene.

2020-12-09 00:06:27.079 Info Phillips Hue: Phillips Hue Reports Playback UnPaused...
2020-12-09 00:06:27.079 Info Phillips Hue: Phillips Hue Found Profile Device: SHIELD
2020-12-09 00:06:27.080 Info Phillips Hue: Phillips Hue Reports Episode will trigger Playback UnPaused Scene for SHIELD
2020-12-09 00:06:27.080 Info HttpClient: PUT http://192.168.1.230/api/yd7yxGuGVpPrazao7uVP0DAZ7Zlyq1sPZARtOZrr/groups/0/action
2020-12-09 00:06:27.080 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-09 00:06:27.080 Info Server: http/1.1 Response 204 to 192.168.1.145. Time: 3ms. http://192.168.1.239:8096/emby/Sessions/Playing/Progress
2020-12-09 00:06:27.103 Info Server: http/1.1 POST http://192.168.1.239:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-09 00:06:27.105 Info Phillips Hue: Phillips Hue Reports Playback Paused...
2020-12-09 00:06:27.105 Info Phillips Hue: Phillips Hue Found Session Device: SHIELD
2020-12-09 00:06:27.105 Info HttpClient: PUT http://192.168.1.230/api/yd7yxGuGVpPrazao7uVP0DAZ7Zlyq1sPZARtOZrr/groups/0/action
2020-12-09 00:06:27.105 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-09 00:06:27.105 Info Server: http/1.1 Response 204 to 192.168.1.145. Time: 3ms. http://192.168.1.239:8096/emby/Sessions/Playing/Progress
2020-12-09 00:06:37.113 Info Server: http/1.1 POST http://192.168.1.239:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-09 00:06:37.115 Info Phillips Hue: Phillips Hue Reports Playback UnPaused...
2020-12-09 00:06:37.115 Info Phillips Hue: Phillips Hue Found Profile Device: SHIELD
2020-12-09 00:06:37.115 Info Phillips Hue: Phillips Hue Reports Episode will trigger Playback UnPaused Scene for SHIELD
2020-12-09 00:06:37.115 Info HttpClient: PUT http://192.168.1.230/api/yd7yxGuGVpPrazao7uVP0DAZ7Zlyq1sPZARtOZrr/groups/0/action
2020-12-09 00:06:37.115 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-09 00:06:37.116 Info Server: http/1.1 Response 204 to 192.168.1.145. Time: 3ms. http://192.168.1.239:8096/emby/Sessions/Playing/Progress

 

Link to comment
Share on other sites

Okay we need to task.Delay each of the events, and  also  the progressEventArgs.

I'll post something tonight.

Link to comment
Share on other sites

BillOatman

@altairrNot sure I understand that log.  At 6:27 you unpaused, and you never touched the buttons again through the 6:37 events?

Link to comment
Share on other sites

altairr
18 minutes ago, BillOatman said:

@altairrNot sure I understand that log.  At 6:27 you unpaused, and you never touched the buttons again through the 6:37 events?

That's right, I didn't press a single button after I unpaused the video. The video I posted the other day illustrates that behavior.

Btw I reinstalled my Emby server to the latest stable version (4.5.3.0), I'll test tonight if the issue persists.

Edited by altairr
Link to comment
Share on other sites

BillOatman
2 hours ago, altairr said:

That's right, I didn't press a single button after I unpaused the video. The video I posted the other day illustrates that behavior.

Btw I reinstalled my Emby server to the latest stable version (4.5.3.0), I'll test tonight if the issue persists.

Yeah @chefI don't get how this is a delay resolved issue, but I trust you :)

Link to comment
Share on other sites

altairr

Watched some content tonight using the stable version of emby server and same result as the beta.. If it's only me having the problem perhaps some network issues even though everything is on my lan? Can anyone else reproduce the issue? 

Link to comment
Share on other sites

10 minutes ago, altairr said:

Watched some content tonight using the stable version of emby server and same result as the beta.. If it's only me having the problem perhaps some network issues even though everything is on my lan? Can anyone else reproduce the issue? 

I don't think it is only you. I think Bill and I both can't test it because we don't have the hardware. 

That being said, if it is happening in your setup it is most likely happening in all the setups, but the plugin might not be in wide use.

I have time tomorrow to work on this. We'll fix it, and appreciate your time here in this thread.

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...
muppet4k

So Chef wie tested and no reply

 

so I can’t understand that lights rooms are used in the hue plug-in like Philips it created in the app

So make this Plugin no sense to be used

😕

Link to comment
Share on other sites

muppet4k
On 6/15/2020 at 9:02 PM, muppet4k said:

so it updated the drop down list but i thought its at the end of the list, but its in the middle somewhere 🙂

137624964_Bildschirmfoto2020-06-15um20_51_22.png.0f1dd36bf5daedef7e676943fde6bad5.png

 

That he is dublicating the scenes is normal and your plugin works correct. Maybe one example for better understanding:

First in the App is to create a room/zone:

IMG_9631.thumb.PNG.20f7cd43f4bee7f8904af0eea62fa7fc.PNG

Than you can add the lights which do you want:

IMG_9632.thumb.PNG.9d68c608b836200d2cd7e3f8419d8955.PNG

And than you have some standart scenes from philips which you see double , three times and more in your drop down list. And also create some new Scene based on the room/zone.

Alle (is the zone id in this example)

IMG_9634.thumb.PNG.0fa4fb47f1d10d877ae8caa9543451ff.PNG

Hope thats more clear about hue App working.

Sorry that some scenes are in german 🙂

to Add some extra data between the scenes would be nice, if itisnt difficult 🙂

 

So nobody is using in this way ?

Link to comment
Share on other sites

I've updated the plugin. 

Instead of relying on the progress event to tell us which session is paused, we now read the session through the session manager.

There is also a delay before reading the next event.

If you guys find that the delay causes the paused and unpaused commands to act unexpectedly. Let me know and they can be removed. They're pretty much there to slow down the progress event on the plugin thread, and only last one second.

Version 1.1.0.4 in the catalog.

 

  • Like 1
Link to comment
Share on other sites

BillOatman

@chef  I just tested it out.  It worked pretty well, but not perfect, form movies.  It works badly for TV Series.

This section of the log was when I unpaused a TV series, but the light is still in paused state 5 minutes later.

2020-12-24 10:52:37.136 Info Phillips Hue: Phillips Hue Reports Playback Paused...
2020-12-24 10:52:37.136 Info Phillips Hue: Phillips Hue Found Session Device: LivingRoom
2020-12-24 10:52:37.136 Info HttpClient: PUT http://192.168.1.228/api/PNJLwkFvcxtvRIvDhbFvBPGmHJ-XhL97txhL6RgM/groups/0/action
2020-12-24 10:52:37.138 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-24 10:52:37.138 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 4ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:52:46.112 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:52:46.115 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:52:51.686 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:52:51.686 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 1ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:52:51.695 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Reports Playback UnPaused...
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Found Profile Device: LivingRoom
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Reports Episode will trigger Playback UnPaused Scene for LivingRoom
2020-12-24 10:52:51.696 Info HttpClient: PUT http://192.168.1.228/api/PNJLwkFvcxtvRIvDhbFvBPGmHJ-XhL97txhL6RgM/groups/0/action
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-24 10:52:51.696 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 1ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:01.675 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:01.677 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:11.699 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:11.702 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:21.718 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:21.721 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:28.888 Info Server: http/1.1 GET http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 10:53:28.889 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 10:53:29.022 Info Server: http/1.1 GET http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 10:53:29.027 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 10:53:29.029 Info Server: http/1.1 Response 200 to ::1. Time: 2ms. http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 10:53:29.029 Info Server: http/1.1 Response 200 to ::1. Time: 7ms. http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 10:53:31.716 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:31.719 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:41.732 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:41.735 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 2ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:43.217 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs/embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36

Sometimes for movies when you unpause it takes 10-20 seconds for the scene to actually run, but it does get there eventually

This is the log after I stopped the TV series above.  The light is still in its paused state.

2020-12-24 11:01:23.813 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Stopped. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:23.814 Info SessionManager: Playback stopped reported by app AndroidTv 1.8.54g playing Who is Anonymous?. Stopped at 565748 ms
2020-12-24 11:01:23.815 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 1ms. http://192.168.1.42:8096/emby/Sessions/Playing/Stopped
2020-12-24 11:01:23.815 Info Phillips Hue: Phillips Hue Reports Playback Stopped
2020-12-24 11:01:23.815 Info Phillips Hue: Phillips Hue Found Profile Device: LivingRoom 
2020-12-24 11:01:23.815 Info Phillips Hue: Phillips Hue Reports Episode will trigger Playback Stopped Scene on LivingRoom
2020-12-24 11:01:23.815 Info HttpClient: PUT http://192.168.1.228/api/PNJLwkFvcxtvRIvDhbFvBPGmHJ-XhL97txhL6RgM/groups/0/action
2020-12-24 11:01:23.816 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-24 11:01:24.448 Info Server: http/1.1 GET http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1132?format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:24.449 Info Server: http/1.1 GET http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1133?format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:24.456 Info Server: http/1.1 Response 200 to 192.168.1.40. Time: 8ms. http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1132?format=json
2020-12-24 11:01:24.456 Info Server: http/1.1 Response 200 to 192.168.1.40. Time: 8ms. http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1133?format=json
2020-12-24 11:01:24.500 Info Server: http/1.1 GET http://192.168.1.42:8096/emby/Shows/NextUp?Fields=PrimaryImageAspectRatio%2CLocationType&SeriesId=1133&UserId=d063f08a14564602852a2d932adf2d23&EnableTotalRecordCount=false&format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:24.505 Info Server: http/1.1 Response 200 to 192.168.1.40. Time: 5ms. http://192.168.1.42:8096/emby/Shows/NextUp?Fields=PrimaryImageAspectRatio%2CLocationType&SeriesId=1133&UserId=d063f08a14564602852a2d932adf2d23&EnableTotalRecordCount=false&format=json
2020-12-24 11:02:01.731 Info Server: http/1.1 GET http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:01.732 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:01.865 Info Server: http/1.1 GET http://localhost:8096/emby/Notifications/Types?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:01.867 Info Server: http/1.1 Response 200 to ::1. Time: 2ms. http://localhost:8096/emby/Notifications/Types?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:02.937 Info Server: http/1.1 GET http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:02.937 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:02.977 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:02.979 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:07.424 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs/embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36

If you want to post the source I can try and see whats wrong with it.

Link to comment
Share on other sites

8 hours ago, BillOatman said:

@chef  I just tested it out.  It worked pretty well, but not perfect, form movies.  It works badly for TV Series.

This section of the log was when I unpaused a TV series, but the light is still in paused state 5 minutes later.


2020-12-24 10:52:37.136 Info Phillips Hue: Phillips Hue Reports Playback Paused...
2020-12-24 10:52:37.136 Info Phillips Hue: Phillips Hue Found Session Device: LivingRoom
2020-12-24 10:52:37.136 Info HttpClient: PUT http://192.168.1.228/api/PNJLwkFvcxtvRIvDhbFvBPGmHJ-XhL97txhL6RgM/groups/0/action
2020-12-24 10:52:37.138 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-24 10:52:37.138 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 4ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:52:46.112 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:52:46.115 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:52:51.686 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:52:51.686 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 1ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:52:51.695 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Reports Playback UnPaused...
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Found Profile Device: LivingRoom
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Reports Episode will trigger Playback UnPaused Scene for LivingRoom
2020-12-24 10:52:51.696 Info HttpClient: PUT http://192.168.1.228/api/PNJLwkFvcxtvRIvDhbFvBPGmHJ-XhL97txhL6RgM/groups/0/action
2020-12-24 10:52:51.696 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-24 10:52:51.696 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 1ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:01.675 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:01.677 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:11.699 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:11.702 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:21.718 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:21.721 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:28.888 Info Server: http/1.1 GET http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 10:53:28.889 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 10:53:29.022 Info Server: http/1.1 GET http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 10:53:29.027 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 10:53:29.029 Info Server: http/1.1 Response 200 to ::1. Time: 2ms. http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 10:53:29.029 Info Server: http/1.1 Response 200 to ::1. Time: 7ms. http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 10:53:31.716 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:31.719 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 3ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:41.732 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Progress. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 10:53:41.735 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 2ms. http://192.168.1.42:8096/emby/Sessions/Playing/Progress
2020-12-24 10:53:43.217 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs/embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36

Sometimes for movies when you unpause it takes 10-20 seconds for the scene to actually run, but it does get there eventually

This is the log after I stopped the TV series above.  The light is still in its paused state.


2020-12-24 11:01:23.813 Info Server: http/1.1 POST http://192.168.1.42:8096/emby/Sessions/Playing/Stopped. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:23.814 Info SessionManager: Playback stopped reported by app AndroidTv 1.8.54g playing Who is Anonymous?. Stopped at 565748 ms
2020-12-24 11:01:23.815 Info Server: http/1.1 Response 204 to 192.168.1.40. Time: 1ms. http://192.168.1.42:8096/emby/Sessions/Playing/Stopped
2020-12-24 11:01:23.815 Info Phillips Hue: Phillips Hue Reports Playback Stopped
2020-12-24 11:01:23.815 Info Phillips Hue: Phillips Hue Found Profile Device: LivingRoom 
2020-12-24 11:01:23.815 Info Phillips Hue: Phillips Hue Reports Episode will trigger Playback Stopped Scene on LivingRoom
2020-12-24 11:01:23.815 Info HttpClient: PUT http://192.168.1.228/api/PNJLwkFvcxtvRIvDhbFvBPGmHJ-XhL97txhL6RgM/groups/0/action
2020-12-24 11:01:23.816 Info Phillips Hue: Phillips Hue Reports Scene Trigger Success
2020-12-24 11:01:24.448 Info Server: http/1.1 GET http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1132?format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:24.449 Info Server: http/1.1 GET http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1133?format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:24.456 Info Server: http/1.1 Response 200 to 192.168.1.40. Time: 8ms. http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1132?format=json
2020-12-24 11:01:24.456 Info Server: http/1.1 Response 200 to 192.168.1.40. Time: 8ms. http://192.168.1.42:8096/emby/Users/d063f08a14564602852a2d932adf2d23/Items/1133?format=json
2020-12-24 11:01:24.500 Info Server: http/1.1 GET http://192.168.1.42:8096/emby/Shows/NextUp?Fields=PrimaryImageAspectRatio%2CLocationType&SeriesId=1133&UserId=d063f08a14564602852a2d932adf2d23&EnableTotalRecordCount=false&format=json. UserAgent: Dalvik/2.1.0 (Linux; U; Android 9; SHIELD Android TV Build/PPR1.180610.011)
2020-12-24 11:01:24.505 Info Server: http/1.1 Response 200 to 192.168.1.40. Time: 5ms. http://192.168.1.42:8096/emby/Shows/NextUp?Fields=PrimaryImageAspectRatio%2CLocationType&SeriesId=1133&UserId=d063f08a14564602852a2d932adf2d23&EnableTotalRecordCount=false&format=json
2020-12-24 11:02:01.731 Info Server: http/1.1 GET http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:01.732 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/Users/d063f08a14564602852a2d932adf2d23?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:01.865 Info Server: http/1.1 GET http://localhost:8096/emby/Notifications/Types?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:01.867 Info Server: http/1.1 Response 200 to ::1. Time: 2ms. http://localhost:8096/emby/Notifications/Types?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:02.937 Info Server: http/1.1 GET http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:02.937 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Configuration?X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:02.977 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
2020-12-24 11:02:02.979 Info Server: http/1.1 Response 200 to ::1. Time: 1ms. http://localhost:8096/emby/System/Logs?SortBy=IsFolder,SortName&SortOrder=Ascending&Fields=BasicSyncInfo,CanDelete&ImageTypeLimit=1&EnableImageTypes=Primary,Backdrop,Thumb&StartIndex=0&Limit=50&X-Emby-Client=Emby Web&X-Emby-Device-Name=Chrome&X-Emby-Device-Id=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzY5LjAuMzQ5Ny4xMDAgU2FmYXJpLzUzNy4zNnwxNTQwMDYxNDYxNTEw&X-Emby-Client-Version=4.5.4.0
2020-12-24 11:02:07.424 Info Server: http/1.1 GET http://localhost:8096/emby/System/Logs/embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36

If you want to post the source I can try and see whats wrong with it.

Will do. I'll update git. I think that by using session manager instead if the event session, we probably don't need the extra wait in the task. I had a feeling that that would be the outcome. Merry Christmas!

Link to comment
Share on other sites

  • 3 weeks later...
On 12/10/2020 at 4:52 PM, altairr said:

Watched some content tonight using the stable version of emby server and same result as the beta.. If it's only me having the problem perhaps some network issues even though everything is on my lan? Can anyone else reproduce the issue? 

Sorry, I haven't read the forums in a bit.  I run into this issue at times too.  It doesn't happen all the time though.  I've gotten used to working around it a bit by pausing and unpausing quickly a 2nd time.  That usually sends my lights to the playing state.  It seemed like it was a little less frequent for awhile but I know I've run into it the last couple nights.   I'll try to grab my logs on it if needed the next time it happens.  

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...