-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkodi.log
2412 lines (2412 loc) · 274 KB
/
kodi.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: -----------------------------------------------------------------------
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Starting Kodi (18.8 (18.8.0) Git:20200728-45686bddb1). Platform: Linux x86 64-bit
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Using Release Kodi x64 build
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Kodi compiled 2020-07-28 by GCC 7.5.0 for Linux x86 64-bit version 4.15.18 (266002)
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Running on Ubuntu 18.04.5 LTS, kernel: Linux x86 64-bit version 5.4.0-42-generic
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: FFmpeg version/source: 4.0.4-Kodi
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Host CPU: Intel(R) Core(TM) i3-4005U CPU @ 1.70GHz, 4 cores available
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://xbmc/ is mapped to: /usr/share/kodi
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/x86_64-linux-gnu/kodi
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://xbmcbinaddons/ is mapped to: /usr/lib/x86_64-linux-gnu/kodi/addons
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://masterprofile/ is mapped to: /home/jakermx/.kodi/userdata
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://envhome/ is mapped to: /home/jakermx
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://home/ is mapped to: /home/jakermx/.kodi
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://temp/ is mapped to: /home/jakermx/.kodi/temp
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://logpath/ is mapped to: /home/jakermx/.kodi/temp
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: The executable running is: /usr/lib/x86_64-linux-gnu/kodi/kodi-x11
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Local hostname: jakermx-lab
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: Log File is located: /home/jakermx/.kodi/temp/kodi.log
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: -----------------------------------------------------------------------
2020-08-28 01:30:00.009 T:140179020122240 INFO: loading settings
2020-08-28 01:30:00.009 T:140179020122240 NOTICE: special://profile/ is mapped to: special://masterprofile/
2020-08-28 01:30:00.016 T:140179020122240 DEBUG: CSkinSettings: no <skinsettings> tag found
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: Default Video Player: VideoPlayer
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: Default Audio Player: paplayer
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: Enabled debug logging due to GUI setting (2)
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: Log level changed to "LOG_LEVEL_DEBUG_FREEMEM"
2020-08-28 01:30:00.016 T:140179020122240 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
2020-08-28 01:30:00.018 T:140179020122240 INFO: creating subdirectories
2020-08-28 01:30:00.018 T:140179020122240 INFO: userdata folder: special://masterprofile/
2020-08-28 01:30:00.018 T:140179020122240 INFO: recording folder:
2020-08-28 01:30:00.018 T:140179020122240 INFO: screenshots folder:
2020-08-28 01:30:00.022 T:140179020122240 NOTICE: PulseAudio: Server found running - will try to use Pulse
2020-08-28 01:30:00.023 T:140178507048704 DEBUG: Thread Lirc start, auto delete: false
2020-08-28 01:30:00.023 T:140178507048704 INFO: Loading special://xbmc/system/Lircmap.xml
2020-08-28 01:30:00.024 T:140179020122240 NOTICE: Running database version Addons27
2020-08-28 01:30:00.024 T:140178507048704 INFO: * Adding remote mapping for device 'mceusb'
2020-08-28 01:30:00.024 T:140178507048704 INFO: * Adding remote mapping for device 'XboxDVDDongle'
2020-08-28 01:30:00.024 T:140178507048704 INFO: * Adding remote mapping for device 'Microsoft_Xbox'
2020-08-28 01:30:00.024 T:140178507048704 INFO: * Adding remote mapping for device 'PinnacleSysPCTVRemote'
2020-08-28 01:30:00.024 T:140178507048704 INFO: * Adding remote mapping for device 'anysee'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'iMON-PAD'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'Antec_Veris_RM200'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'MCE_via_iMON'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'TwinHanRemote'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'linux-input-layer'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Linking remote mapping for 'linux-input-layer' to 'cx23885_remote'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'mediacenter'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'devinput'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'devinput-32'
2020-08-28 01:30:00.025 T:140178507048704 INFO: * Adding remote mapping for device 'devinput-64'
2020-08-28 01:30:00.025 T:140178507048704 DEBUG: CIRTranslator::Load - no userdata Lircmap.xml found, skipping
2020-08-28 01:30:00.035 T:140179020122240 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.'
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: audioencoder.kodi.builtin.aac v1.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: audioencoder.kodi.builtin.wma v1.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: game.controller.default v1.0.8 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: game.controller.snes v1.0.8 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: inputstream.adaptive v2.4.5 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: inputstream.rtmp v2.0.9 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.global.audioengine v1.0.1 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.global.filesystem v1.0.2 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.global.general v1.0.3 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.global.gui v5.12.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.global.main v1.0.14 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.global.network v1.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.audiodecoder v2.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.audioencoder v2.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.game v1.1.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.imagedecoder v2.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.inputstream v2.0.8 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.peripheral v1.3.7 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.pvr v5.10.3 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.screensaver v2.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.vfs v2.0.0 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.videocodec v1.0.1 installed
2020-08-28 01:30:00.035 T:140179020122240 NOTICE: ADDON: kodi.binary.instance.visualization v2.0.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: kodi.resource v1.0.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.album.universal v3.1.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.artists.universal v4.3.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.common.allmusic.com v3.2.2 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.common.fanart.tv v3.6.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.common.imdb.com v3.1.5 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.common.musicbrainz.org v2.2.4 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.common.theaudiodb.com v2.0.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.common.themoviedb.org v3.2.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.local v1.0.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.themoviedb.org v5.2.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: metadata.tvshows.themoviedb.org v3.5.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: peripheral.joystick v1.4.9 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: plugin.video.netflix v1.8.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: repository.castagnait v1.0.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: repository.xbmc.org v3.1.6 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: resource.images.weathericons.default v1.1.8 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: resource.language.en_gb v2.0.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: resource.uisounds.kodi v1.0.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: screensaver.xbmc.builtin.black v1.0.33 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: screensaver.xbmc.builtin.dim v1.0.59 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.cu.lrclyrics v5.7.4 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.addon.signals v0.0.5 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.beautifulsoup4 v4.6.2 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.certifi v2019.9.11 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.chardet v3.0.4 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.dateutil v2.8.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.future v0.17.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.idna v2.8 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.inputstreamhelper v0.5.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.pil v1.1.7 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.pycryptodome v3.4.3 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.requests v2.22.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.six v1.13.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.module.urllib3 v1.25.6 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: script.openweathermap.maps v0.3.1 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: service.xbmc.versioncheck v0.5.6 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: skin.estouchy v2.0.28 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: skin.estuary v2.0.27 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: weather.yahoo v5.0.7 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: webinterface.default v18.x-2.4.6 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.addon v18.8 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.core v0.1.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.gui v5.14.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.json v10.3.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.metadata v2.1.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.python v2.26.0 installed
2020-08-28 01:30:00.036 T:140179020122240 NOTICE: ADDON: xbmc.webinterface v1.0.0 installed
2020-08-28 01:30:00.051 T:140179020122240 DEBUG: CFavourites::Load - no system favourites found, skipping
2020-08-28 01:30:00.051 T:140179020122240 DEBUG: CFavourites::Load - no userdata favourites found, skipping
2020-08-28 01:30:00.052 T:140179020122240 DEBUG: DBus method call to org.freedesktop.ConsoleKit.Manager.CanStop at /org/freedesktop/ConsoleKit/Manager of org.freedesktop.ConsoleKit failed: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.ConsoleKit was not provided by any .service files
2020-08-28 01:30:00.053 T:140179020122240 INFO: Selected Logind/UPower as PowerSyscall
2020-08-28 01:30:00.087 T:140179020122240 DEBUG: LogindUPowerSyscall - inhibit lock taken, fd 11
2020-08-28 01:30:00.091 T:140179020122240 ERROR: DBus error: org.freedesktop.DBus.Error.InvalidArgs - No such property 'OnLowBattery'
2020-08-28 01:30:00.093 T:140179020122240 INFO: Selected UPower as PowerSyscall
2020-08-28 01:30:00.095 T:140179020122240 ERROR: DBus error: org.freedesktop.DBus.Error.InvalidArgs - No such property 'CanSuspend'
2020-08-28 01:30:00.096 T:140179020122240 ERROR: DBus error: org.freedesktop.DBus.Error.InvalidArgs - No such property 'CanHibernate'
2020-08-28 01:30:00.100 T:140178498656000 DEBUG: Thread ActiveAE start, auto delete: false
2020-08-28 01:30:00.100 T:140178490263296 DEBUG: Thread AESink start, auto delete: false
2020-08-28 01:30:00.102 T:140178498656000 DEBUG: PulseAudio: Context authorizing
2020-08-28 01:30:00.102 T:140178498656000 DEBUG: PulseAudio: Context setting name
2020-08-28 01:30:00.103 T:140178498656000 DEBUG: PulseAudio: Context ready
2020-08-28 01:30:00.106 T:140178498656000 WARNING: Pulseaudio module module-allow-passthrough not loaded - opening PT devices might fail
2020-08-28 01:30:00.107 T:140178481870592 DEBUG: PulseAudio: Found Built-in Audio Analog Stereo with devicestring alsa_output.pci-0000_00_1b.0.analog-stereo
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: Found 1 Lists of Devices
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: Enumerated PULSE devices:
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: Device 1
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_deviceName : Default
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_displayName : Default
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_displayNameExtra: Default Output Device (PULSEAUDIO)
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_channels : FL, FR
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_streamTypes : No passthrough capabilities
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: Device 2
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_deviceName : alsa_output.pci-0000_00_1b.0.analog-stereo
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_displayName : Built-in Audio Analog Stereo
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_displayNameExtra: Speakers (PULSEAUDIO)
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_channels : FL, FR
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2020-08-28 01:30:00.107 T:140178498656000 NOTICE: m_streamTypes : No passthrough capabilities
2020-08-28 01:30:00.107 T:140178490263296 INFO: CActiveAESink::OpenSink - initialize sink
2020-08-28 01:30:00.107 T:140178490263296 DEBUG: CActiveAESink::OpenSink - trying to open device PULSE:Default
2020-08-28 01:30:00.109 T:140178490263296 DEBUG: PulseAudio: Context authorizing
2020-08-28 01:30:00.110 T:140178490263296 DEBUG: PulseAudio: Context setting name
2020-08-28 01:30:00.110 T:140178490263296 DEBUG: PulseAudio: Context ready
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: PulseAudio: Stream ready
2020-08-28 01:30:00.111 T:140178490263296 NOTICE: PulseAudio: Opened device Default in pcm mode with Buffersize 150 ms
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: CActiveAESink::OpenSink - PULSE Initialized:
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Output Device : Default
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Sample Rate : 44100
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Sample Format : AE_FMT_FLOAT
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Channel Count : 2
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Channel Layout: FL, FR
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Frames : 2205
2020-08-28 01:30:00.111 T:140178490263296 DEBUG: Frame Size : 8
2020-08-28 01:30:00.116 T:140179020122240 INFO: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts...
2020-08-28 01:30:00.116 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "English QWERTY" successfully loaded
2020-08-28 01:30:00.116 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "English AZERTY" successfully loaded
2020-08-28 01:30:00.116 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "English ABC" successfully loaded
2020-08-28 01:30:00.117 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Swedish QWERTY" successfully loaded
2020-08-28 01:30:00.117 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Spanish QWERTY" successfully loaded
2020-08-28 01:30:00.117 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Portuguese (Portugal) QWERTY" successfully loaded
2020-08-28 01:30:00.117 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Silesian QWERTY" successfully loaded
2020-08-28 01:30:00.118 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Thai Kedmanee" successfully loaded
2020-08-28 01:30:00.118 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian ЙЦУКЕН" successfully loaded
2020-08-28 01:30:00.118 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian АБВ" successfully loaded
2020-08-28 01:30:00.118 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BasePY" successfully loaded
2020-08-28 01:30:00.118 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BaiduPY" successfully loaded
2020-08-28 01:30:00.119 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Italian QWERTY" successfully loaded
2020-08-28 01:30:00.119 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "German QWERTZ" successfully loaded
2020-08-28 01:30:00.119 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "German ABC" successfully loaded
2020-08-28 01:30:00.119 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Czech QWERTZ" successfully loaded
2020-08-28 01:30:00.119 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Danish QWERTY" successfully loaded
2020-08-28 01:30:00.120 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian AZERTY" successfully loaded
2020-08-28 01:30:00.120 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian QWERTY" successfully loaded
2020-08-28 01:30:00.120 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Romanian QWERTY" successfully loaded
2020-08-28 01:30:00.120 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovenian QWERTZ" successfully loaded
2020-08-28 01:30:00.121 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Greek QWERTY" successfully loaded
2020-08-28 01:30:00.121 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Hungarian QWERTZ" successfully loaded
2020-08-28 01:30:00.121 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "French AZERTY" successfully loaded
2020-08-28 01:30:00.122 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian ЯВЕРТЪ" successfully loaded
2020-08-28 01:30:00.122 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian АБВ" successfully loaded
2020-08-28 01:30:00.122 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Korean ㄱㄴㄷ" successfully loaded
2020-08-28 01:30:00.122 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Turkish QWERTY" successfully loaded
2020-08-28 01:30:00.123 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew QWERTY" successfully loaded
2020-08-28 01:30:00.123 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew ABC" successfully loaded
2020-08-28 01:30:00.123 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Polish QWERTY" successfully loaded
2020-08-28 01:30:00.123 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian ЙЦУКЕН" successfully loaded
2020-08-28 01:30:00.123 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian АБВ" successfully loaded
2020-08-28 01:30:00.124 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTZ" successfully loaded
2020-08-28 01:30:00.124 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTY" successfully loaded
2020-08-28 01:30:00.124 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak ABC" successfully loaded
2020-08-28 01:30:00.124 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Croatian QWERTY" successfully loaded
2020-08-28 01:30:00.124 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Norwegian QWERTY" successfully loaded
2020-08-28 01:30:00.124 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Icelandic QWERTY" successfully loaded
2020-08-28 01:30:00.125 T:140179020122240 DEBUG: CKeyboardLayoutManager: keyboard layout "Arabic QWERTY" successfully loaded
2020-08-28 01:30:00.127 T:140179020122240 DEBUG: Selected UDisks2 as storage provider
2020-08-28 01:30:00.128 T:140179020122240 DEBUG: UDisks2: Daemon version 2.7.6
2020-08-28 01:30:00.128 T:140179020122240 DEBUG: UDisks2: Querying available devices
2020-08-28 01:30:00.144 T:140179020122240 INFO: Available videomodes (xrandr):
2020-08-28 01:30:00.144 T:140179020122240 INFO: Output 'eDP-1' has 66 modes
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x45 Name:1366x768 Refresh:60.003139 Width:1366 Height:768
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002101
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x46 Name:1360x768 Refresh:59.798988 Width:1360 Height:768
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.006522
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x47 Name:1360x768 Refresh:59.960030 Width:1360 Height:768
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.006522
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x48 Name:1280x720 Refresh:120.001633 Width:1280 Height:720
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x49 Name:1280x720 Refresh:119.982109 Width:1280 Height:720
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x4a Name:1280x720 Refresh:59.855129 Width:1280 Height:720
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x4b Name:1280x720 Refresh:59.744709 Width:1280 Height:720
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x4c Name:1024x768 Refresh:120.074669 Width:1024 Height:768
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336787
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x4d Name:1024x768 Refresh:60.003841 Width:1024 Height:768
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336787
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x4e Name:960x720 Refresh:120.000000 Width:960 Height:720
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336787
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x4f Name:928x696 Refresh:120.101318 Width:928 Height:696
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x50 Name:896x672 Refresh:120.028877 Width:896 Height:672
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336787
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x51 Name:1024x576 Refresh:119.906700 Width:1024 Height:576
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x52 Name:1024x576 Refresh:119.918663 Width:1024 Height:576
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x53 Name:1024x576 Refresh:59.899212 Width:1024 Height:576
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x54 Name:1024x576 Refresh:59.819519 Width:1024 Height:576
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x55 Name:960x600 Refresh:119.865479 Width:960 Height:600
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x56 Name:960x600 Refresh:119.997513 Width:960 Height:600
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x57 Name:960x540 Refresh:119.925690 Width:960 Height:540
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x58 Name:960x540 Refresh:119.975739 Width:960 Height:540
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x59 Name:960x540 Refresh:59.629028 Width:960 Height:540
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x5a Name:960x540 Refresh:59.818218 Width:960 Height:540
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x5b Name:800x600 Refresh:120.000000 Width:800 Height:600
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x5c Name:800x600 Refresh:60.316540 Width:800 Height:600
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x5d Name:800x600 Refresh:56.250000 Width:800 Height:600
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x5e Name:840x525 Refresh:120.018707 Width:840 Height:525
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x5f Name:840x525 Refresh:119.766510 Width:840 Height:525
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x60 Name:864x486 Refresh:59.915340 Width:864 Height:486
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x61 Name:864x486 Refresh:59.570309 Width:864 Height:486
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x62 Name:800x512 Refresh:120.337013 Width:800 Height:512
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.140725
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x63 Name:700x525 Refresh:119.951233 Width:700 Height:525
2020-08-28 01:30:00.144 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.144 T:140179020122240 INFO: ID:0x64 Name:800x450 Refresh:119.892036 Width:800 Height:450
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x65 Name:800x450 Refresh:119.649521 Width:800 Height:450
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x66 Name:640x512 Refresh:120.039482 Width:640 Height:512
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.425907
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x67 Name:720x450 Refresh:119.774887 Width:720 Height:450
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x68 Name:700x450 Refresh:119.928253 Width:700 Height:450
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.145818
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x69 Name:700x450 Refresh:119.759651 Width:700 Height:450
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.145818
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x6a Name:640x480 Refresh:120.000000 Width:640 Height:480
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x6b Name:640x480 Refresh:59.940479 Width:640 Height:480
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x6c Name:720x405 Refresh:59.506180 Width:720 Height:405
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x6d Name:720x405 Refresh:58.987850 Width:720 Height:405
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x6e Name:684x384 Refresh:119.764099 Width:684 Height:384
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.000636
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x6f Name:684x384 Refresh:119.706413 Width:684 Height:384
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.000636
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x70 Name:680x384 Refresh:119.597977 Width:680 Height:384
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.006522
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x71 Name:680x384 Refresh:119.920052 Width:680 Height:384
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.006522
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x72 Name:640x400 Refresh:119.764771 Width:640 Height:400
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x73 Name:640x400 Refresh:119.964859 Width:640 Height:400
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.113990
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x74 Name:576x432 Refresh:120.128342 Width:576 Height:432
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x75 Name:640x360 Refresh:119.710251 Width:640 Height:360
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x76 Name:640x360 Refresh:119.650902 Width:640 Height:360
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x77 Name:640x360 Refresh:59.840431 Width:640 Height:360
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x78 Name:640x360 Refresh:59.324871 Width:640 Height:360
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x79 Name:512x384 Refresh:120.007683 Width:512 Height:384
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336787
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x7a Name:512x288 Refresh:119.998756 Width:512 Height:288
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x7b Name:512x288 Refresh:119.841118 Width:512 Height:288
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x7c Name:480x270 Refresh:119.258049 Width:480 Height:270
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x7d Name:480x270 Refresh:119.636429 Width:480 Height:270
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x7e Name:400x300 Refresh:120.633080 Width:400 Height:300
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x7f Name:400x300 Refresh:112.680290 Width:400 Height:300
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x80 Name:432x243 Refresh:119.830688 Width:432 Height:243
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x81 Name:432x243 Refresh:119.140617 Width:432 Height:243
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x82 Name:320x240 Refresh:120.104958 Width:320 Height:240
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.336788
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x83 Name:360x202 Refresh:119.012360 Width:360 Height:202
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.000115
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x84 Name:360x202 Refresh:118.257942 Width:360 Height:202
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.000115
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x85 Name:320x180 Refresh:119.680847 Width:320 Height:180
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 INFO: ID:0x86 Name:320x180 Refresh:118.649727 Width:320 Height:180
2020-08-28 01:30:00.145 T:140179020122240 INFO: Pixel Ratio: 1.002591
2020-08-28 01:30:00.145 T:140179020122240 NOTICE: Checking resolution 16
2020-08-28 01:30:00.146 T:140179020122240 DEBUG: Window Manager Name: Metacity (Marco)
2020-08-28 01:30:00.194 T:140179020122240 INFO: RetroPlayer[PROCESS]: Registering process control for X11
2020-08-28 01:30:00.194 T:140179020122240 INFO: RetroPlayer[RENDER]: Registering renderer factory for OpenGL
2020-08-28 01:30:00.240 T:140179020122240 NOTICE: Using visual 0x21
2020-08-28 01:30:00.276 T:140179020122240 DEBUG: Vaapi2 EGL interop test results: general yes, deepColor yes
2020-08-28 01:30:00.277 T:140179020122240 DEBUG: libva info: VA-API version 1.1.0
2020-08-28 01:30:00.277 T:140179020122240 DEBUG: libva info: va_getDriverName() returns 0
2020-08-28 01:30:00.277 T:140179020122240 DEBUG: libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
2020-08-28 01:30:00.277 T:140179020122240 DEBUG: libva info: Found init function __vaDriverInit_1_1
2020-08-28 01:30:00.278 T:140179020122240 DEBUG: libva info: va_openDriver() returns 0
2020-08-28 01:30:00.278 T:140179020122240 NOTICE: VAAPI::Close - closing decoder context
2020-08-28 01:30:00.278 T:140179020122240 DEBUG: EGL_EXTENSIONS: EGL_ANDROID_blob_cache EGL_ANDROID_native_fence_sync EGL_CHROMIUM_sync_control EGL_EXT_buffer_age EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_NOK_texture_from_pixmap EGL_WL_bind_wayland_display
2020-08-28 01:30:00.278 T:140179020122240 NOTICE: GL_VENDOR = Intel Open Source Technology Center
2020-08-28 01:30:00.278 T:140179020122240 NOTICE: GL_RENDERER = Mesa DRI Intel(R) HD Graphics 4400 (HSW GT2)
2020-08-28 01:30:00.278 T:140179020122240 NOTICE: GL_VERSION = 4.5 (Core Profile) Mesa 20.0.8
2020-08-28 01:30:00.278 T:140179020122240 NOTICE: GL_SHADING_LANGUAGE_VERSION = 4.50
2020-08-28 01:30:00.279 T:140179020122240 NOTICE: GL_EXTENSIONS = GL_3DFX_texture_compression_FXT1 GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_multi_draw_indirect GL_AMD_query_buffer_object GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_trinary_minmax GL_AMD_texture_texture4 GL_AMD_vertex_shader_layer GL_AMD_vertex_shader_viewport_index GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_APPLE_object_purgeable GL_ARB_ES2_compatibility GL_ARB_ES3_1_compatibility GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_blend_func_extended GL_ARB_buffer_storage GL_ARB_clear_buffer_object GL_ARB_clear_texture GL_ARB_clip_control GL_ARB_compressed_texture_pixel_storage GL_ARB_compute_shader GL_ARB_conditional_render_inverted GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_cull_distance GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_derivative_control GL_ARB_direct_state_access GL_ARB_draw_buffers GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_draw_indirect GL_ARB_draw_instanced GL_ARB_enhanced_layouts GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_get_program_binary GL_ARB_get_texture_sub_image GL_ARB_gl_spirv GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_indirect_parameters GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multi_bind GL_ARB_multi_draw_indirect GL_ARB_occlusion_query2 GL_ARB_parallel_shader_compile GL_ARB_pipeline_statistics_query GL_ARB_pixel_buffer_object GL_ARB_point_sprite GL_ARB_polygon_offset_clamp GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_query_buffer_object GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_seamless_cubemap_per_texture GL_ARB_separate_shader_objects GL_ARB_shader_atomic_counter_ops GL_ARB_shader_atomic_counters GL_ARB_shader_bit_encoding GL_ARB_shader_clock GL_ARB_shader_draw_parameters GL_ARB_shader_group_vote GL_ARB_shader_image_load_store GL_ARB_shader_image_size GL_ARB_shader_objects GL_ARB_shader_precision GL_ARB_shader_storage_buffer_object GL_ARB_shader_subroutine GL_ARB_shader_texture_image_samples GL_ARB_shader_texture_lod GL_ARB_shader_viewport_layer_array GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_spirv_extensions GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_tessellation_shader GL_ARB_texture_barrier GL_ARB_texture_buffer_object GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_buffer_range GL_ARB_texture_compression_bptc GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map_array GL_ARB_texture_filter_anisotropic GL_ARB_texture_float GL_ARB_texture_gather GL_ARB_texture_mirror_clamp_to_edge GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_query_lod GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_stencil8 GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_transform_feedback_instanced GL_ARB_transform_feedback_overflow_query GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_64bit GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_shader GL_ARB_vertex_type_10f_11f_11f_rev GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ATI_blend_equation_separate GL_ATI_texture_float GL_EXT_EGL_image_storage GL_EXT_EGL_sync GL_EXT_abgr GL_EXT_blend_equation_separate GL_EXT_demote_to_helper_invocation GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_polygon_offset_clamp GL_EXT_provoking_vertex GL_EXT_shader_framebuffer_fetch_non_coherent GL_EXT_shader_integer_mix GL_EXT_shader_samples_identical GL_EXT_texture_array GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_sRGB GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_decode GL_EXT_texture_shadow_lod GL_EXT_texture_shared_exponent GL_EXT_texture_snorm GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_transform_feedback GL_EXT_vertex_array_bgra GL_EXT_vertex_attrib_64bit GL_IBM_multimode_draw_arrays GL_INTEL_performance_query GL_KHR_blend_equation_advanced GL_KHR_context_flush_control GL_KHR_debug GL_KHR_no_error GL_KHR_parallel_shader_compile GL_KHR_robust_buffer_access_behavior GL_KHR_robustness GL_MESA_framebuffer_flip_y GL_MESA_pack_invert GL_MESA_shader_integer_functions GL_MESA_texture_signed_rgba GL_NV_compute_shader_derivatives GL_NV_conditional_render GL_NV_depth_clamp GL_NV_packed_depth_stencil GL_NV_texture_barrier GL_OES_EGL_image GL_S3_s3tc
2020-08-28 01:30:00.292 T:140179020122240 INFO: GL: Maximum texture width: 16384
2020-08-28 01:30:00.292 T:140179020122240 DEBUG: guilib: Fill viewport on change for solving rendering passes
2020-08-28 01:30:00.409 T:140179020122240 INFO: GL: Enabling VSYNC
2020-08-28 01:30:00.414 T:140179020122240 INFO: load keymapping
2020-08-28 01:30:00.415 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/appcommand.xml
2020-08-28 01:30:00.415 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml
2020-08-28 01:30:00.416 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml
2020-08-28 01:30:00.417 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/gamepad.xml
2020-08-28 01:30:00.418 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/joystick.xml
2020-08-28 01:30:00.419 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/keyboard.xml
2020-08-28 01:30:00.421 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/mouse.xml
2020-08-28 01:30:00.421 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/remote.xml
2020-08-28 01:30:00.423 T:140179020122240 INFO: Loading special://xbmc/system/keymaps/touchscreen.xml
2020-08-28 01:30:00.424 T:140179020122240 INFO: GUI format 1366x768, Display eDP-1: 1366x768 @ 60.00Hz
2020-08-28 01:30:00.424 T:140179020122240 INFO: CLangInfo: loading resource.language.en_gb language information...
2020-08-28 01:30:00.424 T:140179020122240 DEBUG: trying to set locale to en_US.UTF-8
2020-08-28 01:30:00.425 T:140179020122240 INFO: global locale set to en_US.UTF-8
2020-08-28 01:30:00.425 T:140179020122240 INFO: CLangInfo: loading resource.language.en_gb language strings...
2020-08-28 01:30:00.434 T:140179020122240 DEBUG: LocalizeStrings: loaded 4015 strings from file resource://resource.language.en_gb/strings.po
2020-08-28 01:30:00.437 T:140179020122240 DEBUG: LocalizeStrings: loaded 1 strings from file /usr/share/kodi/addons/audioencoder.kodi.builtin.aac/resources/language/English/strings.po
2020-08-28 01:30:00.437 T:140179020122240 DEBUG: LocalizeStrings: loaded 1 strings from file /usr/share/kodi/addons/audioencoder.kodi.builtin.wma/resources/language/English/strings.po
2020-08-28 01:30:00.437 T:140179020122240 DEBUG: LocalizeStrings: loaded 18 strings from file /usr/share/kodi/addons/game.controller.default/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.438 T:140179020122240 DEBUG: LocalizeStrings: loaded 13 strings from file /usr/share/kodi/addons/game.controller.snes/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.438 T:140179020122240 DEBUG: LocalizeStrings: loaded 24 strings from file /usr/share/kodi/addons/inputstream.adaptive/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.438 T:140179020122240 DEBUG: LocalizeStrings: loaded 17 strings from file /home/jakermx/.kodi/addons/metadata.album.universal/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.438 T:140179020122240 DEBUG: LocalizeStrings: loaded 32 strings from file /home/jakermx/.kodi/addons/metadata.artists.universal/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.439 T:140179020122240 DEBUG: LocalizeStrings: loaded 9 strings from file /home/jakermx/.kodi/addons/metadata.themoviedb.org/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.439 T:140179020122240 DEBUG: LocalizeStrings: loaded 11 strings from file /home/jakermx/.kodi/addons/metadata.tvshows.themoviedb.org/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.439 T:140179020122240 DEBUG: LocalizeStrings: loaded 9 strings from file /usr/share/kodi/addons/peripheral.joystick/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.440 T:140179020122240 DEBUG: LocalizeStrings: loaded 1 strings from file /usr/share/kodi/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.441 T:140179020122240 DEBUG: LocalizeStrings: loaded 24 strings from file /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/language/English/strings.po
2020-08-28 01:30:00.442 T:140179020122240 DEBUG: LocalizeStrings: loaded 83 strings from file /home/jakermx/.kodi/addons/script.module.inputstreamhelper/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.443 T:140179020122240 DEBUG: LocalizeStrings: loaded 246 strings from file /home/jakermx/.kodi/addons/plugin.video.netflix/resources/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.443 T:140179020122240 DEBUG: LocalizeStrings: loaded 16 strings from file /home/jakermx/.kodi/addons/weather.yahoo/resources/language/resource.language.en_GB/strings.po
2020-08-28 01:30:00.444 T:140179020122240 DEBUG: LocalizeStrings: loaded 47 strings from file /home/jakermx/.kodi/addons/script.cu.lrclyrics/resources/language/resource.language.en_GB/strings.po
2020-08-28 01:30:00.444 T:140177746745088 DEBUG: Thread JobWorker start, auto delete: true
2020-08-28 01:30:00.444 T:140177746745088 DEBUG: Initialize, updating databases...
2020-08-28 01:30:00.445 T:140177746745088 NOTICE: Running database version Addons27
2020-08-28 01:30:00.445 T:140177746745088 NOTICE: Running database version ViewModes6
2020-08-28 01:30:00.446 T:140177746745088 NOTICE: Running database version Textures13
2020-08-28 01:30:00.447 T:140177746745088 NOTICE: Running database version MyMusic72
2020-08-28 01:30:00.448 T:140177746745088 NOTICE: Running database version MyVideos116
2020-08-28 01:30:00.449 T:140177746745088 NOTICE: Running database version TV32
2020-08-28 01:30:00.449 T:140177746745088 NOTICE: Running database version Epg12
2020-08-28 01:30:00.449 T:140177746745088 DEBUG: Initialize, updating databases... DONE
2020-08-28 01:30:00.451 T:140179020122240 NOTICE: start dvd mediatype detection
2020-08-28 01:30:00.451 T:140179019949824 DEBUG: Thread DetectDVDMedia start, auto delete: false
2020-08-28 01:30:00.451 T:140179019949824 DEBUG: Compiled with libcdio Version 0.10001
2020-08-28 01:30:00.451 T:140179020122240 DEBUG: DPMS: supported power-saving modes: SUSPEND OFF STANDBY
2020-08-28 01:30:00.452 T:140179019949824 DEBUG: Thread DetectDVDMedia 140179019949824 terminating
2020-08-28 01:30:00.468 T:140179020122240 INFO: Unloading old skin ...
2020-08-28 01:30:00.469 T:140179020122240 NOTICE: load skin from: /usr/share/kodi/addons/skin.estuary (version: 2.0.27)
2020-08-28 01:30:00.469 T:140179020122240 INFO: load fonts for skin...
2020-08-28 01:30:00.469 T:140179020122240 INFO: Loading skin includes from /usr/share/kodi/addons/skin.estuary/xml/Includes.xml
2020-08-28 01:30:00.496 T:140179020122240 INFO: Loading fonts from /usr/share/kodi/addons/skin.estuary/xml/Font.xml
2020-08-28 01:30:00.505 T:140179020122240 DEBUG: LocalizeStrings: loaded 140 strings from file /usr/share/kodi/addons/skin.estuary/language/resource.language.en_gb/strings.po
2020-08-28 01:30:00.505 T:140179020122240 INFO: load new skin...
2020-08-28 01:30:00.505 T:140179020122240 INFO: Loading custom window XMLs from skin path /usr/share/kodi/addons/skin.estuary/xml
2020-08-28 01:30:00.509 T:140179020122240 DEBUG: Load Skin XML: 3.77ms
2020-08-28 01:30:00.509 T:140179020122240 INFO: initialize new skin...
2020-08-28 01:30:00.509 T:140179020122240 DEBUG: guilib: Fill viewport on change for solving rendering passes
2020-08-28 01:30:00.509 T:140179020122240 INFO: Loading skin file: Custom_1109_TopBarOverlay.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.511 T:140179020122240 INFO: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.511 T:140179020122240 INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.519 T:140179020122240 DEBUG: OpenBundle - Opened bundle /usr/share/kodi/addons/skin.estuary/media/Textures.xbt
2020-08-28 01:30:00.519 T:140179020122240 INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.520 T:140179020122240 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.521 T:140179020122240 INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.522 T:140179020122240 INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.523 T:140179020122240 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:00.524 T:140179020122240 INFO: Loading resource://resource.uisounds.kodi/sounds.xml
2020-08-28 01:30:00.538 T:140179020122240 INFO: skin loaded...
2020-08-28 01:30:00.538 T:140179020122240 DEBUG: Activating window ID: 12997
2020-08-28 01:30:00.538 T:140179020122240 DEBUG: ------ Window Init () ------
2020-08-28 01:30:00.539 T:140179020122240 DEBUG: Activating window ID: 12999
2020-08-28 01:30:00.539 T:140179020122240 DEBUG: ------ Window Init (Startup.xml) ------
2020-08-28 01:30:00.539 T:140179020122240 INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME
2020-08-28 01:30:00.539 T:140179020122240 DEBUG: Activating window ID: 10000
2020-08-28 01:30:00.539 T:140179020122240 DEBUG: ------ Window Deinit (Startup.xml) ------
2020-08-28 01:30:00.539 T:140179020122240 DEBUG: ------ Window Init (Home.xml) ------
2020-08-28 01:30:00.539 T:140179020122240 INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[library://music/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[musicdb://recentlyplayedalbums]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[musicdb://recentlyaddedalbums/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[special://skin/playlists/random_albums.xsp]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[special://skin/playlists/random_artists.xsp]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[special://skin/playlists/unplayed_albums.xsp]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[special://skin/playlists/mostplayed_albums.xsp]: refreshing..
2020-08-28 01:30:00.598 T:140177395910400 DEBUG: Thread JobWorker start, auto delete: true
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[addons://]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[addons://sources/game/]: refreshing..
2020-08-28 01:30:00.598 T:140177387517696 DEBUG: Thread JobWorker start, auto delete: true
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[library://video/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[sources://video/]: refreshing..
2020-08-28 01:30:00.598 T:140179020122240 DEBUG: CDirectoryProvider[special://videoplaylists/]: refreshing..
2020-08-28 01:30:00.599 T:140179020122240 DEBUG: CDirectoryProvider[favourites://]: refreshing..
2020-08-28 01:30:00.599 T:140179020122240 DEBUG: CDirectoryProvider[sources://pictures/]: refreshing..
2020-08-28 01:30:00.599 T:140179020122240 DEBUG: CDirectoryProvider[addons://sources/game/]: refreshing..
2020-08-28 01:30:00.603 T:140177387517696 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 25) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder
2020-08-28 01:30:00.604 T:140177395910400 DEBUG: GetRecentlyPlayedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM albumview WHERE albumview.lastplayed IS NOT NULL AND albumview.strReleaseType = 'album' ORDER BY albumview.lastplayed DESC LIMIT 25) as playedalbums JOIN albumview ON albumview.idAlbum = playedalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.lastplayed DESC, albumartistview.iorder
2020-08-28 01:30:00.613 T:140179020122240 DEBUG: JSONRPC: JSON schema type definition references an unknown type Setting.Details.Setting
2020-08-28 01:30:00.613 T:140179020122240 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
2020-08-28 01:30:00.613 T:140177395910400 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE albumview.strReleaseType = 'album' ORDER BY RANDOM() LIMIT 15
2020-08-28 01:30:00.613 T:140179020122240 INFO: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting")
2020-08-28 01:30:00.613 T:140179020122240 INFO: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting
2020-08-28 01:30:00.614 T:140177395910400 DEBUG: GetAlbumsByWhere: Time to fill list with albums 2ms query took 1ms
2020-08-28 01:30:00.620 T:140177387517696 DEBUG: GetArtistsByWhere query: SELECT artistview.* FROM artistview WHERE (EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '') ORDER BY RANDOM() LIMIT 15
2020-08-28 01:30:00.621 T:140177387517696 DEBUG: GetArtistsByWhere: Time to fill list with artists 2ms query took 1ms
2020-08-28 01:30:00.631 T:140179020122240 INFO: JSONRPC v10.3.0: Successfully initialized
2020-08-28 01:30:00.631 T:140179020122240 DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid"
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: LoadMappings - loaded node "CEC Adapter"
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adapter"
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: LoadMappings - loaded node "iMON HID device"
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: LoadMappings - loaded node "WETEK Play remote"
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: LoadMappings - loaded node ""
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: Add-on bus: Registering add-on peripheral.joystick
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: PERIPHERAL - CreateAddon - creating peripheral add-on instance 'Joystick Support'
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: ADDON: Dll Initializing - Joystick Support
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: SECTION:LoadDLL(/usr/lib/x86_64-linux-gnu/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.4.9)
2020-08-28 01:30:00.632 T:140179020122240 DEBUG: Loading: /usr/lib/x86_64-linux-gnu/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.4.9
2020-08-28 01:30:00.633 T:140177395910400 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) = 0))) AND (albumview.strReleaseType = 'album') ORDER BY RANDOM() LIMIT 15
2020-08-28 01:30:00.634 T:140177395910400 DEBUG: GetAlbumsByWhere: Time to fill list with albums 2ms query took 0ms
2020-08-28 01:30:00.635 T:140179020122240 DEBUG: AddOnLog: Joystick Support: Loaded 14 joystick families with 97 total joysticks
2020-08-28 01:30:00.635 T:140179020122240 DEBUG: Calling TransferSettings for: Joystick Support
2020-08-28 01:30:00.635 T:140179020122240 DEBUG: CAddonSettings[peripheral.joystick]: loading setting definitions
2020-08-28 01:30:00.635 T:140179020122240 INFO: AddOnLog: Joystick Support: Enabling joystick interface "linux"
2020-08-28 01:30:00.637 T:140177387517696 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) > 0))) AND (albumview.strReleaseType = 'album')
2020-08-28 01:30:00.637 T:140177368106752 DEBUG: Thread PeripBusUSBUdev start, auto delete: false
2020-08-28 01:30:00.637 T:140177368106752 DEBUG: Process - initialised udev monitor
2020-08-28 01:30:00.638 T:140177359714048 DEBUG: Thread PeripBusCEC start, auto delete: false
2020-08-28 01:30:00.644 T:140177351321344 DEBUG: Thread PeripBusAddon start, auto delete: false
2020-08-28 01:30:00.644 T:140179020122240 DEBUG: Initialise - initialised peripheral on 'keyboard' with 1 features and 0 sub devices
2020-08-28 01:30:00.644 T:140179020122240 NOTICE: Register - new keyboard device registered on application->keyboard: Keyboard (0000:0000)
2020-08-28 01:30:00.644 T:140179020122240 DEBUG: Initialise - initialised peripheral on 'mouse' with 1 features and 0 sub devices
2020-08-28 01:30:00.644 T:140179020122240 NOTICE: Register - new mouse device registered on application->mouse: Mouse (0000:0000)
2020-08-28 01:30:00.644 T:140177342928640 DEBUG: Thread PeripEventScanner start, auto delete: false
2020-08-28 01:30:00.645 T:140177746745088 DEBUG: CAddonMgr::GetAvailableUpdates took 12 ms
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: ContextMenuManager: addon menus reloaded.
2020-08-28 01:30:00.646 T:140179020122240 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: CPlayerCoreConfig::<ctor>: created player VideoPlayer
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: CPlayerCoreConfig::<ctor>: created player PAPlayer
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: CPlayerCoreConfig::<ctor>: created player RetroPlayer
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mms/udp
2020-08-28 01:30:00.646 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv
2020-08-28 01:30:00.647 T:140179020122240 DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio
2020-08-28 01:30:00.647 T:140179020122240 NOTICE: Loaded playercorefactory configuration
2020-08-28 01:30:00.647 T:140179020122240 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
2020-08-28 01:30:00.647 T:140179020122240 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
2020-08-28 01:30:00.647 T:140179020122240 INFO: removing tempfiles
2020-08-28 01:30:00.651 T:140179020122240 DEBUG: CRepositoryUpdater: previous update at 08/27/2020 11:10:41 PM, next at 08/28/2020 11:10:41 PM
2020-08-28 01:30:00.652 T:140176928012032 DEBUG: Thread Timer start, auto delete: false
2020-08-28 01:30:00.655 T:140179020122240 DEBUG: CServiceAddonManager: starting service.xbmc.versioncheck
2020-08-28 01:30:00.655 T:140179020122240 DEBUG: CServiceAddonManager: starting script.cu.lrclyrics
2020-08-28 01:30:00.655 T:140179020122240 NOTICE: initialize done
2020-08-28 01:30:00.655 T:140179020122240 NOTICE: Running the application...
2020-08-28 01:30:00.655 T:140179020122240 DEBUG: no profile autoexec.py (/home/jakermx/.kodi/userdata/autoexec.py) found, skipping
2020-08-28 01:30:00.655 T:140179020122240 DEBUG: NetworkMessage - Starting network services
2020-08-28 01:30:00.660 T:140179020122240 DEBUG: CZeroconfAvahi::clientCallback: client is up and running
2020-08-28 01:30:00.661 T:140179020122240 NOTICE: starting zeroconf publishing
2020-08-28 01:30:00.661 T:140176919619328 DEBUG: Thread LanguageInvoker start, auto delete: false
2020-08-28 01:30:00.661 T:140176919619328 INFO: initializing python engine.
2020-08-28 01:30:00.661 T:140179020122240 NOTICE: CWebServer[8080]: Started
2020-08-28 01:30:00.661 T:140179020122240 NOTICE: starting upnp client
2020-08-28 01:30:00.661 T:140176911226624 DEBUG: Thread LanguageInvoker start, auto delete: false
2020-08-28 01:30:00.661 T:140176911226624 INFO: initializing python engine.
2020-08-28 01:30:00.669 T:140177395910400 DEBUG: CMultiPathDirectory::GetDirectory(multipath://special%3a%2f%2fprofile%2fplaylists%2fvideo/special%3a%2f%2fprofile%2fplaylists%2fmixed/)
2020-08-28 01:30:00.669 T:140177395910400 DEBUG: Getting Directory (special://profile/playlists/video)
2020-08-28 01:30:00.669 T:140177395910400 DEBUG: Getting Directory (special://profile/playlists/mixed)
2020-08-28 01:30:00.669 T:140177395910400 DEBUG: CMultiPathDirectory::MergeItems, items = 0
2020-08-28 01:30:00.670 T:140177387517696 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update
2020-08-28 01:30:00.677 T:140177387517696 DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.*, songartistview.* FROM (SELECT idAlbum FROM album ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum = recentalbums.idAlbum JOIN songartistview ON songview.idSong = songartistview.idSong ORDER BY songview.idAlbum DESC, songview.idSong, songartistview.idRole, songartistview.iOrder
2020-08-28 01:30:00.677 T:140177395910400 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.webserver type: _http._tcp name:Kodi (jakermx-lab) port:8080
2020-08-28 01:30:00.677 T:140177395910400 DEBUG: CZeroconfAvahi::addService() named: Kodi (jakermx-lab) type: _http._tcp port:8080
2020-08-28 01:30:00.680 T:140177395910400 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.jsonrpc-http type: _xbmc-jsonrpc-h._tcp name:Kodi (jakermx-lab) port:8080
2020-08-28 01:30:00.680 T:140177395910400 DEBUG: CZeroconfAvahi::addService() named: Kodi (jakermx-lab) type: _xbmc-jsonrpc-h._tcp port:8080
2020-08-28 01:30:00.682 T:140177387517696 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder
2020-08-28 01:30:00.684 T:140177387517696 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update
2020-08-28 01:30:00.691 T:140177387517696 DEBUG: RunQuery took 4 ms for 0 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 10
2020-08-28 01:30:00.693 T:140177387517696 DEBUG: RunQuery took 1 ms for 0 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 10
2020-08-28 01:30:00.694 T:140177387517696 DEBUG: RunQuery took 1 ms for 0 items query: select * from musicvideo_view ORDER BY dateAdded desc, idMVideo desc LIMIT 10
2020-08-28 01:30:00.695 T:140177387517696 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update
2020-08-28 01:30:00.697 T:140177387517696 DEBUG: GetArtistsByWhere query: SELECT COUNT(DISTINCT artistview.idArtist) FROM artistview WHERE (EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '')
2020-08-28 01:30:00.704 T:140179020122240 NOTICE: starting upnp server
2020-08-28 01:30:00.716 T:140179020122240 NOTICE: starting upnp controller
2020-08-28 01:30:00.716 T:140179020122240 NOTICE: starting upnp renderer
2020-08-28 01:30:00.724 T:140179020122240 ERROR: JSONRPC Server: Failed to connect to sdpd
2020-08-28 01:30:00.724 T:140179020122240 INFO: JSONRPC Server: Successfully initialized
2020-08-28 01:30:00.724 T:140177395910400 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.jsonrpc-tpc type: _xbmc-jsonrpc._tcp name:Kodi (jakermx-lab) port:9090
2020-08-28 01:30:00.724 T:140177395910400 DEBUG: CZeroconfAvahi::addService() named: Kodi (jakermx-lab) type: _xbmc-jsonrpc._tcp port:9090
2020-08-28 01:30:00.736 T:140175904593664 DEBUG: Thread TCPServer start, auto delete: false
2020-08-28 01:30:00.736 T:140175912986368 DEBUG: Thread EventServer start, auto delete: false
2020-08-28 01:30:00.736 T:140175912986368 NOTICE: ES: Starting UDP Event server on port 9777
2020-08-28 01:30:00.736 T:140175912986368 NOTICE: UDP: Listening on port 9777 (ipv6 : true)
2020-08-28 01:30:00.736 T:140177746745088 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.eventserver type: _xbmc-events._udp name:Kodi (jakermx-lab) port:9777
2020-08-28 01:30:00.736 T:140177746745088 DEBUG: CZeroconfAvahi::addService() named: Kodi (jakermx-lab) type: _xbmc-events._udp port:9777
2020-08-28 01:30:00.784 T:140176919619328 DEBUG: CPythonInvoker(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): start processing
2020-08-28 01:30:00.784 T:140176911226624 DEBUG: CPythonInvoker(1, /home/jakermx/.kodi/addons/script.cu.lrclyrics/default.py): start processing
2020-08-28 01:30:00.822 T:140179020122240 DEBUG: ------ Window Init () ------
2020-08-28 01:30:00.854 T:140177395910400 INFO: WEATHER: Downloading weather
2020-08-28 01:30:00.854 T:140179020122240 DEBUG: ------ Window Init (Pointer.xml) ------
2020-08-28 01:30:00.854 T:140175885731584 DEBUG: Thread LanguageInvoker start, auto delete: false
2020-08-28 01:30:00.854 T:140175885731584 INFO: initializing python engine.
2020-08-28 01:30:00.854 T:140175885731584 DEBUG: CPythonInvoker(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py): start processing
2020-08-28 01:30:00.863 T:140176919619328 DEBUG: -->Python Interpreter Initialized<--
2020-08-28 01:30:00.863 T:140176919619328 DEBUG: CPythonInvoker(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): the source file to load is "/home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py"
2020-08-28 01:30:00.863 T:140176919619328 DEBUG: CPythonInvoker(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): setting the Python path to /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages
2020-08-28 01:30:00.863 T:140176919619328 DEBUG: CPythonInvoker(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): entering source directory /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib
2020-08-28 01:30:00.925 T:140176919619328 DEBUG: CPythonInvoker(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): instantiating addon using automatically obtained id of "service.xbmc.versioncheck" dependent on version 2.14.0 of the xbmc.python api
2020-08-28 01:30:01.128 T:140176919619328 DEBUG: CAddonSettings[service.xbmc.versioncheck]: loading setting definitions
2020-08-28 01:30:01.128 T:140176919619328 DEBUG: CAddonSettings[service.xbmc.versioncheck]: trying to load setting definitions from old format...
2020-08-28 01:30:01.128 T:140176919619328 DEBUG: Version Check: Version 0.5.6 started
2020-08-28 01:30:01.129 T:140175885731584 DEBUG: -->Python Interpreter Initialized<--
2020-08-28 01:30:01.129 T:140175885731584 DEBUG: CPythonInvoker(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py): the source file to load is "/home/jakermx/.kodi/addons/weather.yahoo/default.py"
2020-08-28 01:30:01.129 T:140175885731584 DEBUG: CPythonInvoker(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py): setting the Python path to /home/jakermx/.kodi/addons/weather.yahoo:/home/jakermx/.kodi/addons/script.module.certifi/lib:/home/jakermx/.kodi/addons/script.module.chardet/lib:/home/jakermx/.kodi/addons/script.module.idna/lib:/home/jakermx/.kodi/addons/script.module.requests/lib:/home/jakermx/.kodi/addons/script.module.urllib3/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages
2020-08-28 01:30:01.129 T:140175885731584 DEBUG: CPythonInvoker(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py): entering source directory /home/jakermx/.kodi/addons/weather.yahoo
2020-08-28 01:30:01.129 T:140175885731584 DEBUG: CPythonInvoker(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py): instantiating addon using automatically obtained id of "weather.yahoo" dependent on version 2.25.0 of the xbmc.python api
2020-08-28 01:30:01.132 T:140176911226624 DEBUG: -->Python Interpreter Initialized<--
2020-08-28 01:30:01.132 T:140176911226624 DEBUG: CPythonInvoker(1, /home/jakermx/.kodi/addons/script.cu.lrclyrics/default.py): the source file to load is "/home/jakermx/.kodi/addons/script.cu.lrclyrics/default.py"
2020-08-28 01:30:01.148 T:140176911226624 DEBUG: CPythonInvoker(1, /home/jakermx/.kodi/addons/script.cu.lrclyrics/default.py): setting the Python path to /home/jakermx/.kodi/addons/script.cu.lrclyrics:/home/jakermx/.kodi/addons/script.module.beautifulsoup4/lib:/home/jakermx/.kodi/addons/script.module.certifi/lib:/home/jakermx/.kodi/addons/script.module.chardet/lib:/home/jakermx/.kodi/addons/script.module.idna/lib:/home/jakermx/.kodi/addons/script.module.requests/lib:/home/jakermx/.kodi/addons/script.module.urllib3/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages
2020-08-28 01:30:01.148 T:140176911226624 DEBUG: CPythonInvoker(1, /home/jakermx/.kodi/addons/script.cu.lrclyrics/default.py): entering source directory /home/jakermx/.kodi/addons/script.cu.lrclyrics
2020-08-28 01:30:01.148 T:140176911226624 DEBUG: CPythonInvoker(1, /home/jakermx/.kodi/addons/script.cu.lrclyrics/default.py): instantiating addon using automatically obtained id of "script.cu.lrclyrics" dependent on version 2.25.0 of the xbmc.python api
2020-08-28 01:30:01.160 T:140179020122240 DEBUG: LogindUPowerSyscall - Received unknown signal NameAcquired
2020-08-28 01:30:01.534 T:140176902833920 DEBUG: CZeroconfAvahi::groupCallback: Service successfully established
2020-08-28 01:30:01.608 T:140175885731584 DEBUG: Previous line repeats 3 times.
2020-08-28 01:30:01.609 T:140175885731584 DEBUG: CAddonSettings[weather.yahoo]: loading setting definitions
2020-08-28 01:30:01.609 T:140175885731584 DEBUG: CAddonSettings[weather.yahoo]: trying to load setting definitions from old format...
2020-08-28 01:30:01.609 T:140175885731584 DEBUG: CAddonSettings[weather.yahoo]: loading setting values
2020-08-28 01:30:01.877 T:140176911226624 DEBUG: CAddonSettings[script.cu.lrclyrics]: loading setting definitions
2020-08-28 01:30:01.877 T:140176911226624 DEBUG: CAddonSettings[script.cu.lrclyrics]: trying to load setting definitions from old format...
2020-08-28 01:30:01.878 T:140176911226624 DEBUG: CAddonSettings[script.cu.lrclyrics]: loading setting values
2020-08-28 01:30:01.995 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:02.297 T:140175885731584 INFO: CPythonInvoker(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py): script successfully run
2020-08-28 01:30:02.297 T:140175885731584 DEBUG: onExecutionDone(2, /home/jakermx/.kodi/addons/weather.yahoo/default.py)
2020-08-28 01:30:02.320 T:140175885731584 INFO: Python interpreter stopped
2020-08-28 01:30:02.320 T:140175885731584 DEBUG: Thread LanguageInvoker 140175885731584 terminating
2020-08-28 01:30:02.365 T:140177395910400 DEBUG: POParser: loaded 130 weather tokens
2020-08-28 01:30:02.561 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:03.813 T:140179020122240 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:03.813 T:140179020122240 DEBUG: Activating window ID: 10502
2020-08-28 01:30:04.144 T:140179020122240 DEBUG: ------ Window Deinit (Home.xml) ------
2020-08-28 01:30:04.144 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:04.147 T:140179020122240 DEBUG: ------ Window Init (MyMusicNav.xml) ------
2020-08-28 01:30:04.147 T:140179020122240 INFO: Loading skin file: MyMusicNav.xml, load type: KEEP_IN_MEMORY
2020-08-28 01:30:04.185 T:140179020122240 DEBUG: CGUIMediaWindow::GetDirectory (musicdb://recentlyaddedalbums/1/)
2020-08-28 01:30:04.185 T:140179020122240 DEBUG: ParentPath = []
2020-08-28 01:30:04.187 T:140179020122240 DEBUG: GetSongsFullByWhere query = SELECT songview.*, songartistview.* FROM songview JOIN songartistview ON songartistview.idsong = songview.idsong WHERE songview.idAlbum = 1 ORDER BY songartistview.idsong, songartistview.idRole, songartistview.iOrder
2020-08-28 01:30:04.188 T:140179020122240 DEBUG: GetSongsFullByWhere() - took 1 ms
2020-08-28 01:30:04.189 T:140179020122240 DEBUG: Custom album format = [%B]
2020-08-28 01:30:04.193 T:140175885731584 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:04.193 T:140175885731584 DEBUG: Thread BackgroundLoader start, auto delete: false
2020-08-28 01:30:04.197 T:140175885731584 DEBUG: Thread BackgroundLoader 140175885731584 terminating
2020-08-28 01:30:05.132 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:05.132 T:140179020122240 DEBUG: GetArtist(SELECT idArtist, strArtist, strSortName, strMusicBrainzArtistID, strType, strGender, strDisambiguation, strBorn, strFormed, strGenres,strMoods, strStyles, strInstruments, strBiography, strDied, strDisbanded, strYearsActive, strImage, strFanart, bScrapedMBID, lastScraped, '' AS dateAdded FROM artist WHERE idArtist = 2) - took 0 ms
2020-08-28 01:30:05.132 T:140179020122240 DEBUG: SELECT albumview.*,albumartistview.* FROM albumview JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum WHERE albumview.idAlbum = 1 ORDER BY albumartistview.iOrder
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers(smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3)
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding audiodefaultplayer (PAPlayer)
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=0, audio=1
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding player: VideoPlayer
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: added 2 players
2020-08-28 01:30:05.134 T:140179020122240 DEBUG: OnPlayBackStarted: CApplication::OnPlayBackStarted
2020-08-28 01:30:05.134 T:140175885731584 DEBUG: Thread PAPlayer start, auto delete: false
2020-08-28 01:30:05.134 T:140175885731584 DEBUG: PAPlayer::Process - Playback started
2020-08-28 01:30:05.144 T:140179020122240 DEBUG: CMusicGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/11.mp3?albumid=1)
2020-08-28 01:30:05.148 T:140179020122240 DEBUG: GetArtist(SELECT idArtist, strArtist, strSortName, strMusicBrainzArtistID, strType, strGender, strDisambiguation, strBorn, strFormed, strGenres,strMoods, strStyles, strInstruments, strBiography, strDied, strDisbanded, strYearsActive, strImage, strFanart, bScrapedMBID, lastScraped, '' AS dateAdded FROM artist WHERE idArtist = 2) - took 0 ms
2020-08-28 01:30:05.149 T:140179020122240 DEBUG: SELECT albumview.*,albumartistview.* FROM albumview JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum WHERE albumview.idAlbum = 1 ORDER BY albumartistview.iOrder
2020-08-28 01:30:05.150 T:140179020122240 DEBUG: Loading additional tag info for file smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3
2020-08-28 01:30:05.208 T:140177746745088 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10000
2020-08-28 01:30:05.219 T:140179020122240 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10001
2020-08-28 01:30:05.245 T:140177746745088 DEBUG: Open - probing detected format [mp3]
2020-08-28 01:30:05.245 T:140177746745088 DEBUG: Open - setting usetoc to 0 for accurate VBR MP3 seek
2020-08-28 01:30:05.245 T:140177746745088 DEBUG: Open - avformat_find_stream_info starting
2020-08-28 01:30:05.249 T:140177746745088 DEBUG: ffmpeg[7F7DACCCD700]: [mp3] Estimating duration from bitrate, this may be inaccurate
2020-08-28 01:30:05.249 T:140177746745088 DEBUG: Open - av_find_stream_info finished
2020-08-28 01:30:05.250 T:140177746745088 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2020-08-28 01:30:05.250 T:140177746745088 NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2020-08-28 01:30:05.269 T:140177746745088 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10002
2020-08-28 01:30:05.345 T:140179020122240 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:05.345 T:140179020122240 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:05.345 T:140179020122240 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:05.345 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10001
2020-08-28 01:30:05.350 T:140179020122240 DEBUG: CPlayerGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/11.mp3?albumid=1)
2020-08-28 01:30:05.351 T:140178515441408 DEBUG: UPnP: Building didl for object 'musicdb://recentlyaddedalbums/1/11.mp3?albumid=1'
2020-08-28 01:30:05.353 T:140177746745088 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:05.353 T:140177746745088 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:05.353 T:140177746745088 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:05.353 T:140177746745088 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:05.357 T:140177746745088 DEBUG: SeekTime - seek ended up on time 0
2020-08-28 01:30:05.451 T:140179020122240 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:05.451 T:140179020122240 DEBUG: ------ Window Init (DialogBusy.xml) ------
2020-08-28 01:30:05.451 T:140177746745088 INFO: AudioDecoder: File is queued
2020-08-28 01:30:05.453 T:140177746745088 DEBUG: AudioDecoder::GetReplayGain - Final Replaygain applied: 1.000000, Track/Album Gain 89.000000, Peak 1.000000
2020-08-28 01:30:05.454 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:05.476 T:140177746745088 INFO: PAPlayer::PrepareStream - Ready
2020-08-28 01:30:05.478 T:140175885731584 DEBUG: OnAVStarted: CApplication::OnAVStarted
2020-08-28 01:30:05.488 T:140179020122240 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
2020-08-28 01:30:06.148 T:140176919619328 DEBUG: Version Check: Version installed {u'major': 18, u'tag': u'stable', u'minor': 8, u'revision': u'20200728-45686bddb1'}
2020-08-28 01:30:06.148 T:140176919619328 DEBUG: Version Check: Version available {u'major': u'18', u'extrainfo': u'final', u'tagversion': u'', u'tag': u'stable', u'addon_support': u'yes', u'minor': u'8', u'revision': u'20200727-45686bddb1'}
2020-08-28 01:30:06.148 T:140176919619328 DEBUG: Version Check: There is no newer stable available
2020-08-28 01:30:06.148 T:140176919619328 INFO: CPythonInvoker(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): script successfully run
2020-08-28 01:30:06.148 T:140176919619328 DEBUG: onExecutionDone(0, /home/jakermx/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py)
2020-08-28 01:30:06.170 T:140176919619328 INFO: Python interpreter stopped
2020-08-28 01:30:06.170 T:140176919619328 DEBUG: Thread LanguageInvoker 140176919619328 terminating
2020-08-28 01:30:06.796 T:140176919619328 DEBUG: Received request to serve unknown md5 ''
2020-08-28 01:30:07.800 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:07.801 T:140179020122240 DEBUG: Activating window ID: 12006
2020-08-28 01:30:08.129 T:140179020122240 DEBUG: ------ Window Deinit (MyMusicNav.xml) ------
2020-08-28 01:30:08.129 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:08.130 T:140179020122240 DEBUG: ------ Window Init (MusicVisualisation.xml) ------
2020-08-28 01:30:08.130 T:140179020122240 INFO: Loading skin file: MusicVisualisation.xml, load type: KEEP_IN_MEMORY
2020-08-28 01:30:08.133 T:140179020122240 DEBUG: ------ Window Init (MusicOSD.xml) ------
2020-08-28 01:30:08.133 T:140179020122240 INFO: Loading skin file: MusicOSD.xml, load type: KEEP_IN_MEMORY
2020-08-28 01:30:08.141 T:140179020122240 DEBUG: ------ Window Init (DialogNotification.xml) ------
2020-08-28 01:30:08.141 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:08.141 T:140179020122240 ERROR: CBinaryAddonManager::GetInstalledAddonInfo: Requested addon '' unknown as binary
2020-08-28 01:30:08.142 T:140179020122240 DEBUG: ------ Window Init (DialogSeekBar.xml) ------
2020-08-28 01:30:08.147 T:140179020122240 DEBUG: ------ Window Init (Custom_1109_TopBarOverlay.xml) ------
2020-08-28 01:30:08.181 T:140176911226624 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10002
2020-08-28 01:30:08.218 T:140176911226624 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:08.224 T:140176911226624 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10002
2020-08-28 01:30:08.248 T:140176911226624 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:08.255 T:140176911226624 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10002
2020-08-28 01:30:08.263 T:140176911226624 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:08.327 T:140179020122240 DEBUG: ------ Window Init (/home/jakermx/.kodi/addons/script.cu.lrclyrics/resources/skins/Default/1080i/script-cu-lrclyrics-main.xml) ------
2020-08-28 01:30:08.327 T:140179020122240 INFO: Loading skin file: /home/jakermx/.kodi/addons/script.cu.lrclyrics/resources/skins/Default/1080i/script-cu-lrclyrics-main.xml, load type: LOAD_ON_GUI_INIT
2020-08-28 01:30:08.332 T:140179020122240 DEBUG: [Warning] CGUITextureManager::GetTexturePath: could not find texture '-'
2020-08-28 01:30:08.362 T:140179020122240 DEBUG: Previous line repeats 6 times.
2020-08-28 01:30:08.362 T:140179020122240 DEBUG: ------ Window Deinit (MusicOSD.xml) ------
2020-08-28 01:30:08.370 T:140176911226624 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10002
2020-08-28 01:30:08.404 T:140176911226624 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:08.412 T:140176911226624 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10002
2020-08-28 01:30:08.436 T:140176911226624 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:08.442 T:140176911226624 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10002
2020-08-28 01:30:08.450 T:140176911226624 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:08.943 T:140179020122240 DEBUG: [Warning] CGUITextureManager::GetTexturePath: could not find texture '-'
2020-08-28 01:30:09.060 T:140179020122240 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:09.060 T:140179020122240 DEBUG: Activating window ID: 10120
2020-08-28 01:30:09.060 T:140179020122240 DEBUG: ------ Window Init (MusicOSD.xml) ------
2020-08-28 01:30:09.061 T:140179020122240 DEBUG: Activating window ID: 10120
2020-08-28 01:30:10.294 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers(smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3)
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding audiodefaultplayer (PAPlayer)
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=0, audio=1
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding player: VideoPlayer
2020-08-28 01:30:10.295 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: added 2 players
2020-08-28 01:30:10.376 T:140178498656000 DEBUG: CActiveAE::DiscardStream - audio stream deleted
2020-08-28 01:30:10.376 T:140177395910400 DEBUG: DoWork - Saving file state for audio item musicdb://recentlyaddedalbums/1/11.mp3?albumid=1
2020-08-28 01:30:10.376 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:10.376 T:140179020122240 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:10.376 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10000
2020-08-28 01:30:10.381 T:140175885731584 DEBUG: OnPlayBackStopped: CApplication::OnPlayBackStopped
2020-08-28 01:30:10.381 T:140175885731584 DEBUG: Thread PAPlayer 140175885731584 terminating
2020-08-28 01:30:10.381 T:140179020122240 DEBUG: FreeVisualisation() started
2020-08-28 01:30:10.381 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:10.388 T:140179020122240 DEBUG: OnPlayBackStarted: CApplication::OnPlayBackStarted
2020-08-28 01:30:10.388 T:140175885731584 DEBUG: Thread PAPlayer start, auto delete: false
2020-08-28 01:30:10.388 T:140175885731584 DEBUG: PAPlayer::Process - Playback started
2020-08-28 01:30:10.388 T:140179020122240 DEBUG: CMusicGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/12.mp3?albumid=1)
2020-08-28 01:30:10.392 T:140177746745088 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10000
2020-08-28 01:30:10.395 T:140179020122240 DEBUG: GetArtist(SELECT idArtist, strArtist, strSortName, strMusicBrainzArtistID, strType, strGender, strDisambiguation, strBorn, strFormed, strGenres,strMoods, strStyles, strInstruments, strBiography, strDied, strDisbanded, strYearsActive, strImage, strFanart, bScrapedMBID, lastScraped, '' AS dateAdded FROM artist WHERE idArtist = 2) - took 0 ms
2020-08-28 01:30:10.395 T:140179020122240 DEBUG: SELECT albumview.*,albumartistview.* FROM albumview JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum WHERE albumview.idAlbum = 1 ORDER BY albumartistview.iOrder
2020-08-28 01:30:10.396 T:140179020122240 DEBUG: Loading additional tag info for file smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3
2020-08-28 01:30:10.422 T:140177746745088 DEBUG: Open - probing detected format [mp3]
2020-08-28 01:30:10.422 T:140177746745088 DEBUG: Open - setting usetoc to 0 for accurate VBR MP3 seek
2020-08-28 01:30:10.423 T:140177746745088 DEBUG: Open - avformat_find_stream_info starting
2020-08-28 01:30:10.423 T:140177746745088 DEBUG: ffmpeg[7F7DACCCD700]: [mp3] Estimating duration from bitrate, this may be inaccurate
2020-08-28 01:30:10.423 T:140177746745088 DEBUG: Open - av_find_stream_info finished
2020-08-28 01:30:10.423 T:140177746745088 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2020-08-28 01:30:10.423 T:140177746745088 NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2020-08-28 01:30:10.424 T:140179020122240 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10002
2020-08-28 01:30:10.455 T:140177746745088 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10001
2020-08-28 01:30:10.516 T:140179020122240 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:10.516 T:140179020122240 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:10.516 T:140179020122240 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:10.516 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:10.520 T:140179020122240 DEBUG: CPlayerGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/12.mp3?albumid=1)
2020-08-28 01:30:10.521 T:140178515441408 DEBUG: UPnP: Building didl for object 'musicdb://recentlyaddedalbums/1/12.mp3?albumid=1'
2020-08-28 01:30:10.541 T:140177746745088 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:10.541 T:140177746745088 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:10.541 T:140177746745088 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:10.541 T:140177746745088 DEBUG: CSMBFile::Close closing fd 10001
2020-08-28 01:30:10.543 T:140177746745088 DEBUG: SeekTime - seek ended up on time 0
2020-08-28 01:30:10.580 T:140178498656000 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:10.580 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:10.621 T:140179020122240 DEBUG: ------ Window Init (DialogBusy.xml) ------
2020-08-28 01:30:10.622 T:140179020122240 ERROR: CBinaryAddonManager::GetInstalledAddonInfo: Requested addon '' unknown as binary
2020-08-28 01:30:10.637 T:140177746745088 INFO: AudioDecoder: File is queued
2020-08-28 01:30:10.638 T:140177746745088 DEBUG: AudioDecoder::GetReplayGain - Final Replaygain applied: 1.000000, Track/Album Gain 89.000000, Peak 1.000000
2020-08-28 01:30:10.639 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:10.685 T:140177746745088 INFO: PAPlayer::PrepareStream - Ready
2020-08-28 01:30:10.691 T:140175885731584 DEBUG: OnAVStarted: CApplication::OnAVStarted
2020-08-28 01:30:10.711 T:140179020122240 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
2020-08-28 01:30:10.959 T:140179020122240 DEBUG: ------ Window Deinit (DialogNotification.xml) ------
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers(smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/13 Chaos B.C. [-].mp3)
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding audiodefaultplayer (PAPlayer)
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=0, audio=1
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding player: VideoPlayer
2020-08-28 01:30:13.143 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: added 2 players
2020-08-28 01:30:13.227 T:140175885731584 DEBUG: CSMBFile::Close closing fd 10000
2020-08-28 01:30:13.229 T:140178498656000 DEBUG: CActiveAE::DiscardStream - audio stream deleted
2020-08-28 01:30:13.229 T:140177387517696 DEBUG: DoWork - Saving file state for audio item musicdb://recentlyaddedalbums/1/12.mp3?albumid=1
2020-08-28 01:30:13.229 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:13.239 T:140175885731584 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:13.239 T:140175885731584 DEBUG: OnPlayBackStopped: CApplication::OnPlayBackStopped
2020-08-28 01:30:13.239 T:140175885731584 DEBUG: Thread PAPlayer 140175885731584 terminating
2020-08-28 01:30:13.247 T:140179020122240 DEBUG: FreeVisualisation() started
2020-08-28 01:30:13.248 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:13.254 T:140179020122240 DEBUG: OnPlayBackStarted: CApplication::OnPlayBackStarted
2020-08-28 01:30:13.254 T:140175885731584 DEBUG: Thread PAPlayer start, auto delete: false
2020-08-28 01:30:13.254 T:140175885731584 DEBUG: PAPlayer::Process - Playback started
2020-08-28 01:30:13.254 T:140179020122240 DEBUG: CMusicGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/13.mp3?albumid=1)
2020-08-28 01:30:13.259 T:140177387517696 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/13 Chaos B.C. [-].mp3, fd=10000
2020-08-28 01:30:13.259 T:140179020122240 DEBUG: GetArtist(SELECT idArtist, strArtist, strSortName, strMusicBrainzArtistID, strType, strGender, strDisambiguation, strBorn, strFormed, strGenres,strMoods, strStyles, strInstruments, strBiography, strDied, strDisbanded, strYearsActive, strImage, strFanart, bScrapedMBID, lastScraped, '' AS dateAdded FROM artist WHERE idArtist = 2) - took 1 ms
2020-08-28 01:30:13.259 T:140179020122240 DEBUG: SELECT albumview.*,albumartistview.* FROM albumview JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum WHERE albumview.idAlbum = 1 ORDER BY albumartistview.iOrder
2020-08-28 01:30:13.260 T:140179020122240 DEBUG: Loading additional tag info for file smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/13 Chaos B.C. [-].mp3
2020-08-28 01:30:13.266 T:140179020122240 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/13 Chaos B.C. [-].mp3, fd=10001
2020-08-28 01:30:13.292 T:140177387517696 DEBUG: Open - probing detected format [mp3]
2020-08-28 01:30:13.292 T:140177387517696 DEBUG: Open - setting usetoc to 0 for accurate VBR MP3 seek
2020-08-28 01:30:13.292 T:140177387517696 DEBUG: Open - avformat_find_stream_info starting
2020-08-28 01:30:13.293 T:140177387517696 DEBUG: ffmpeg[7F7D97637700]: [mp3] Estimating duration from bitrate, this may be inaccurate
2020-08-28 01:30:13.293 T:140177387517696 DEBUG: Open - av_find_stream_info finished
2020-08-28 01:30:13.293 T:140177387517696 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2020-08-28 01:30:13.293 T:140177387517696 NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2020-08-28 01:30:13.314 T:140177387517696 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/13 Chaos B.C. [-].mp3, fd=10002
2020-08-28 01:30:13.376 T:140179020122240 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:13.376 T:140179020122240 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:13.376 T:140179020122240 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:13.376 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10001
2020-08-28 01:30:13.379 T:140179020122240 DEBUG: CPlayerGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/13.mp3?albumid=1)
2020-08-28 01:30:13.380 T:140178515441408 DEBUG: UPnP: Building didl for object 'musicdb://recentlyaddedalbums/1/13.mp3?albumid=1'
2020-08-28 01:30:13.409 T:140177387517696 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:13.409 T:140177387517696 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:13.409 T:140177387517696 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:13.409 T:140177387517696 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:13.412 T:140177387517696 DEBUG: SeekTime - seek ended up on time 0
2020-08-28 01:30:13.434 T:140178498656000 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:13.434 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:13.480 T:140179020122240 DEBUG: ------ Window Init (DialogBusy.xml) ------
2020-08-28 01:30:13.482 T:140179020122240 ERROR: CBinaryAddonManager::GetInstalledAddonInfo: Requested addon '' unknown as binary
2020-08-28 01:30:13.504 T:140177387517696 INFO: AudioDecoder: File is queued
2020-08-28 01:30:13.505 T:140177387517696 DEBUG: AudioDecoder::GetReplayGain - Final Replaygain applied: 1.000000, Track/Album Gain 89.000000, Peak 1.000000
2020-08-28 01:30:13.506 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:13.537 T:140177387517696 INFO: PAPlayer::PrepareStream - Ready
2020-08-28 01:30:13.547 T:140175885731584 DEBUG: OnAVStarted: CApplication::OnAVStarted
2020-08-28 01:30:13.562 T:140179020122240 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
2020-08-28 01:30:14.693 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers(smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3)
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding audiodefaultplayer (PAPlayer)
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=0, audio=1
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding player: VideoPlayer
2020-08-28 01:30:14.694 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: added 2 players
2020-08-28 01:30:14.796 T:140175885731584 DEBUG: CSMBFile::Close closing fd 10000
2020-08-28 01:30:14.798 T:140178498656000 DEBUG: CActiveAE::DiscardStream - audio stream deleted
2020-08-28 01:30:14.798 T:140177395910400 DEBUG: DoWork - Saving file state for audio item musicdb://recentlyaddedalbums/1/13.mp3?albumid=1
2020-08-28 01:30:14.798 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:14.808 T:140175885731584 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:14.808 T:140175885731584 DEBUG: OnPlayBackStopped: CApplication::OnPlayBackStopped
2020-08-28 01:30:14.808 T:140175885731584 DEBUG: Thread PAPlayer 140175885731584 terminating
2020-08-28 01:30:14.810 T:140179020122240 DEBUG: FreeVisualisation() started
2020-08-28 01:30:14.810 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:14.817 T:140179020122240 DEBUG: OnPlayBackStarted: CApplication::OnPlayBackStarted
2020-08-28 01:30:14.817 T:140175885731584 DEBUG: Thread PAPlayer start, auto delete: false
2020-08-28 01:30:14.817 T:140175885731584 DEBUG: PAPlayer::Process - Playback started
2020-08-28 01:30:14.817 T:140179020122240 DEBUG: CMusicGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/12.mp3?albumid=1)
2020-08-28 01:30:14.822 T:140177395910400 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10000
2020-08-28 01:30:14.822 T:140179020122240 DEBUG: GetArtist(SELECT idArtist, strArtist, strSortName, strMusicBrainzArtistID, strType, strGender, strDisambiguation, strBorn, strFormed, strGenres,strMoods, strStyles, strInstruments, strBiography, strDied, strDisbanded, strYearsActive, strImage, strFanart, bScrapedMBID, lastScraped, '' AS dateAdded FROM artist WHERE idArtist = 2) - took 0 ms
2020-08-28 01:30:14.822 T:140179020122240 DEBUG: SELECT albumview.*,albumartistview.* FROM albumview JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum WHERE albumview.idAlbum = 1 ORDER BY albumartistview.iOrder
2020-08-28 01:30:14.823 T:140179020122240 DEBUG: Loading additional tag info for file smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3
2020-08-28 01:30:14.845 T:140177395910400 DEBUG: Open - probing detected format [mp3]
2020-08-28 01:30:14.845 T:140177395910400 DEBUG: Open - setting usetoc to 0 for accurate VBR MP3 seek
2020-08-28 01:30:14.846 T:140177395910400 DEBUG: Open - avformat_find_stream_info starting
2020-08-28 01:30:14.846 T:140177395910400 DEBUG: ffmpeg[7F7D97E38700]: [mp3] Estimating duration from bitrate, this may be inaccurate
2020-08-28 01:30:14.846 T:140177395910400 DEBUG: Open - av_find_stream_info finished
2020-08-28 01:30:14.846 T:140177395910400 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2020-08-28 01:30:14.846 T:140177395910400 NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2020-08-28 01:30:14.847 T:140179020122240 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10002
2020-08-28 01:30:14.876 T:140177395910400 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/12 Clenched Fist.mp3, fd=10001
2020-08-28 01:30:14.934 T:140179020122240 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:14.934 T:140179020122240 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:14.934 T:140179020122240 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:14.935 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:14.939 T:140179020122240 DEBUG: CPlayerGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/12.mp3?albumid=1)
2020-08-28 01:30:14.939 T:140178515441408 DEBUG: UPnP: Building didl for object 'musicdb://recentlyaddedalbums/1/12.mp3?albumid=1'
2020-08-28 01:30:14.966 T:140177395910400 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:14.966 T:140177395910400 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:14.966 T:140177395910400 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:14.966 T:140177395910400 DEBUG: CSMBFile::Close closing fd 10001
2020-08-28 01:30:14.968 T:140177395910400 DEBUG: SeekTime - seek ended up on time 0
2020-08-28 01:30:14.973 T:140178498656000 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:14.973 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:15.039 T:140179020122240 DEBUG: ------ Window Init (DialogBusy.xml) ------
2020-08-28 01:30:15.041 T:140179020122240 ERROR: CBinaryAddonManager::GetInstalledAddonInfo: Requested addon '' unknown as binary
2020-08-28 01:30:15.061 T:140177395910400 INFO: AudioDecoder: File is queued
2020-08-28 01:30:15.062 T:140177395910400 DEBUG: AudioDecoder::GetReplayGain - Final Replaygain applied: 1.000000, Track/Album Gain 89.000000, Peak 1.000000
2020-08-28 01:30:15.063 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:15.090 T:140177395910400 INFO: PAPlayer::PrepareStream - Ready
2020-08-28 01:30:15.100 T:140175885731584 DEBUG: OnAVStarted: CApplication::OnAVStarted
2020-08-28 01:30:15.111 T:140179020122240 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
2020-08-28 01:30:15.243 T:140179020122240 DEBUG: ProcessMouse: trying mouse action leftclick
2020-08-28 01:30:15.243 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers(smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3)
2020-08-28 01:30:15.243 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules
2020-08-28 01:30:15.243 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding audiodefaultplayer (PAPlayer)
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=0, audio=1
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: adding player: VideoPlayer
2020-08-28 01:30:15.244 T:140179020122240 DEBUG: CPlayerCoreFactory::GetPlayers: added 2 players
2020-08-28 01:30:15.330 T:140178498656000 DEBUG: CActiveAE::DiscardStream - audio stream deleted
2020-08-28 01:30:15.330 T:140177395910400 DEBUG: DoWork - Saving file state for audio item musicdb://recentlyaddedalbums/1/12.mp3?albumid=1
2020-08-28 01:30:15.330 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:15.330 T:140179020122240 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:15.330 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10000
2020-08-28 01:30:15.338 T:140175885731584 DEBUG: OnPlayBackStopped: CApplication::OnPlayBackStopped
2020-08-28 01:30:15.338 T:140175885731584 DEBUG: Thread PAPlayer 140175885731584 terminating
2020-08-28 01:30:15.340 T:140179020122240 DEBUG: FreeVisualisation() started
2020-08-28 01:30:15.340 T:140179020122240 DEBUG: FreeVisualisation() done
2020-08-28 01:30:15.347 T:140179020122240 DEBUG: OnPlayBackStarted: CApplication::OnPlayBackStarted
2020-08-28 01:30:15.347 T:140175885731584 DEBUG: Thread PAPlayer start, auto delete: false
2020-08-28 01:30:15.347 T:140175885731584 DEBUG: PAPlayer::Process - Playback started
2020-08-28 01:30:15.347 T:140179020122240 DEBUG: CMusicGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/11.mp3?albumid=1)
2020-08-28 01:30:15.351 T:140177387517696 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10000
2020-08-28 01:30:15.352 T:140179020122240 DEBUG: GetArtist(SELECT idArtist, strArtist, strSortName, strMusicBrainzArtistID, strType, strGender, strDisambiguation, strBorn, strFormed, strGenres,strMoods, strStyles, strInstruments, strBiography, strDied, strDisbanded, strYearsActive, strImage, strFanart, bScrapedMBID, lastScraped, '' AS dateAdded FROM artist WHERE idArtist = 2) - took 0 ms
2020-08-28 01:30:15.353 T:140179020122240 DEBUG: SELECT albumview.*,albumartistview.* FROM albumview JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum WHERE albumview.idAlbum = 1 ORDER BY albumartistview.iOrder
2020-08-28 01:30:15.353 T:140179020122240 DEBUG: Loading additional tag info for file smb://192.168.0.5/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3
2020-08-28 01:30:15.377 T:140177387517696 DEBUG: Open - probing detected format [mp3]
2020-08-28 01:30:15.377 T:140177387517696 DEBUG: Open - setting usetoc to 0 for accurate VBR MP3 seek
2020-08-28 01:30:15.378 T:140177387517696 DEBUG: Open - avformat_find_stream_info starting
2020-08-28 01:30:15.378 T:140177387517696 DEBUG: ffmpeg[7F7D97637700]: [mp3] Estimating duration from bitrate, this may be inaccurate
2020-08-28 01:30:15.378 T:140177387517696 DEBUG: Open - av_find_stream_info finished
2020-08-28 01:30:15.379 T:140177387517696 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0
2020-08-28 01:30:15.379 T:140177387517696 NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2020-08-28 01:30:15.379 T:140179020122240 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10001
2020-08-28 01:30:15.405 T:140177387517696 DEBUG: CSMBFile::Open - opened smb://USERNAME:[email protected]/Share/Music/Sepultura/Chaos A.D/11 The Hunt.mp3, fd=10002
2020-08-28 01:30:15.463 T:140179020122240 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:15.463 T:140179020122240 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:15.463 T:140179020122240 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:15.463 T:140179020122240 DEBUG: CSMBFile::Close closing fd 10001
2020-08-28 01:30:15.466 T:140179020122240 DEBUG: CPlayerGUIInfo::InitCurrentItem(musicdb://recentlyaddedalbums/1/11.mp3?albumid=1)
2020-08-28 01:30:15.467 T:140178515441408 DEBUG: UPnP: Building didl for object 'musicdb://recentlyaddedalbums/1/11.mp3?albumid=1'
2020-08-28 01:30:15.500 T:140177387517696 DEBUG: unrecognized ID3 frame detected: MCDI
2020-08-28 01:30:15.500 T:140177387517696 DEBUG: unrecognized ID3 frame detected: PRIV
2020-08-28 01:30:15.500 T:140177387517696 DEBUG: unrecognized ID3 frame detected: TLEN
2020-08-28 01:30:15.500 T:140177387517696 DEBUG: CSMBFile::Close closing fd 10002
2020-08-28 01:30:15.502 T:140177387517696 DEBUG: SeekTime - seek ended up on time 0
2020-08-28 01:30:15.538 T:140178498656000 DEBUG: Previous line repeats 1 times.
2020-08-28 01:30:15.538 T:140178498656000 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted
2020-08-28 01:30:15.567 T:140179020122240 DEBUG: ------ Window Init (DialogBusy.xml) ------