-
Notifications
You must be signed in to change notification settings - Fork 0
/
2024-08-14 - Plex Network Logging.txt
1769 lines (1731 loc) · 202 KB
/
2024-08-14 - Plex Network Logging.txt
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
08-14 19:32:44.098 i: [MetricsSender] Metrics host is not available so we need to fetch the privacy map.
08-14 19:32:44.334 i: [ProviderVersion] Provider version is 7.0.0
08-14 19:32:44.357 i: [AppEventMonitor] ApplicationCreated
08-14 19:32:44.577 i: ------------------------------
08-14 19:32:44.577 i: Hello, Plex for Android world (debug: false)!
08-14 19:32:44.578 i: App version: 10.18.1.1096 (958416001)
08-14 19:32:44.579 i: Nano server version: 1.40.2.8395-c67dce28e
08-14 19:32:44.579 i: FFmpeg version: 2.0-ad474602b33
08-14 19:32:44.580 i: Treble version: 2.1.0.587
08-14 19:32:44.589 i: ASS version: 0.16.0
08-14 19:32:44.589 i: Manufacturer: Amazon Device: mantis Model: AFTMM Product: mantis Version: 7.1.2
08-14 19:32:44.593 i: Screen size: Large Screen density: XHigh Resolution: 1920x1080 DPI: 320 Touchscreen: false Marketplace: com.android.packageinstaller Architecture: armeabi-v7a
08-14 19:32:44.594 i: [Crashlytics] Enabled crash reporting.
08-14 19:32:44.596 i: [BootBehaviour][Background] Crashlytics behaviour took 1ms to execute on the background thread.
08-14 19:32:44.618 i: [BootBehaviour][Background] ExtractCertificate behaviour took 0ms to execute on the background thread.
08-14 19:32:44.618 i: [CleanupBehaviour] Cleaned up 0 existing seek maps.
08-14 19:32:44.619 i: [BootBehaviour][Background] Cleanup behaviour took 3ms to execute on the background thread.
08-14 19:32:44.627 w: [InstallReferrerManager] Unable to read install referrer response at this point. Probably a transient problem. ResponseCode 2
08-14 19:32:44.627 i: [BootBehaviour][Background] Install Referrer behaviour took 4ms to execute on the background thread.
08-14 19:32:44.633 i: [BootBehaviour][Background] SyncCleanup behaviour took 1ms to execute on the background thread.
08-14 19:32:44.654 i: [BootBehaviour][Background] Preferences behaviour took 31ms to execute on the background thread.
08-14 19:32:44.717 i: [ApplicationBehaviourManager] Version code is 958416001.
08-14 19:32:44.718 i: [ApplicationBehaviourManager] Previous version was 958416001.
08-14 19:32:44.746 i: [EventSource (PlexTV)] Attempting to connect to plex.tv (user: 35285974)
08-14 19:32:44.760 i: [EventSource (PlexTV)] Attempting to connect (user: 35285974)
08-14 19:32:44.802 i: [BootBehaviour][Background] Application behaviour took 133ms to execute on the background thread.
08-14 19:32:45.040 i: [Metrics] Correctly fetched privacy map from plex.tv (127 keys)
08-14 19:32:45.705 i: [EventSource (PlexTV)] Connected to https://pubsub.plex.tv/sub/eventsource/35285974/df8a5315490212a-com-plexapp-android?X-Plex-Token=...Fbx.
08-14 19:32:45.980 i: [BootBehaviour][Foreground] ExtractCertificate behaviour took 0ms to execute on the foreground thread.
08-14 19:32:45.981 i: [BootBehaviour][Foreground] Install Referrer behaviour took 0ms to execute on the foreground thread.
08-14 19:32:45.981 i: [BootBehaviour][Foreground] Cleanup behaviour took 0ms to execute on the foreground thread.
08-14 19:32:45.982 i: [BootBehaviour][Foreground] SyncCleanup behaviour took 0ms to execute on the foreground thread.
08-14 19:32:45.984 i: [BootBehaviour][Foreground] Preferences behaviour took 0ms to execute on the foreground thread.
08-14 19:32:45.985 i: [BootBehaviour][Foreground] Application behaviour took 0ms to execute on the foreground thread.
08-14 19:32:46.001 i: [BootManager] Took 1400ms to complete all 6 boot tasks.
08-14 19:32:46.022 i: [UserApiClient] Refreshing account...
08-14 19:32:46.173 i: Fetching [method:GET] https://clients.plex.tv/api/v2/user?includeProviders=1&includeSubscriptions=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:46.900 i: [UserDataLoader] User hasn't changed.
08-14 19:32:47.655 i: [BillingServiceWrapper] Amazon purchasing service running in sandbox mode.
08-14 19:32:48.314 i: Fetching [method:GET] https://clients.plex.tv/api/v2/home/users?X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:48.595 i: [OneApp] Adding entitlement: subscription.
08-14 19:32:48.962 i: [HttpServer] Starting local http server at port 32500.
08-14 19:32:48.962 i: [ApplicationInitialisationTask] Refreshing resources - outside withContext
08-14 19:32:48.963 i: [ApplicationInitialisationTask] Refreshing resources - inside withContext
08-14 19:32:49.234 i: [device] Selected device is Plex_Server
08-14 19:32:49.311 i: [SourceManager] Server manager has been initialized.
08-14 19:32:49.322 i: [PlexTV] Refreshing resources (empty token:...null
08-14 19:32:49.323 i: [PlexTV] Refreshing providers (empty token:...null
08-14 19:32:49.335 i: [PlexTV] Publishing device details
08-14 19:32:49.351 i: [NetworkServiceBrowserManager] Starting Server discovery
08-14 19:32:49.392 i: [GDM] Sending packet via /192.168.0.255
08-14 19:32:49.415 i: [GDM] Got browse reply from: /192.168.0.16
08-14 19:32:49.593 i: [SourceManagerStorage] Restored 10 sources (7 pinned) (10 previously pinned). Default ordering: true
08-14 19:32:49.598 i: [PlexTV] Discovered 3 providers
08-14 19:32:49.618 i: [SourceManagerFetcher:3246] Starting to process sources for provider SyntheticSourcesProvider.
08-14 19:32:49.620 i: [SourceManagerFetcher:3246] Processing 0 sections.
08-14 19:32:49.782 i: [PlexTV] Discovered 1 servers
08-14 19:32:49.810 i: [[UpdateTifChannelsBehaviour]] LiveTVJobService: retrieving EPG content for the next hour.
08-14 19:32:49.902 i: [[UpdateTifChannelsBehaviour]] LiveTVJobService already scheduled, won't start again
08-14 19:32:49.909 i: [ApplicationInitialisationTask] Fetching preferred platforms
08-14 19:32:49.910 i: [PreferredPlatformsRepository] Fetching preferred availability platforms
08-14 19:32:50.521 i: [ServerTestsManager] Ready to perform server tests: Ready.
08-14 19:32:50.540 i: [ServerTests] Scheduling job to test Movies & Shows. Reason: queue (reload active profile).
08-14 19:32:50.542 i: [ServerTestsManager] Reloading profile: default
08-14 19:32:50.574 i: [UpdateRecommendationsBehaviour] Setting pending update to recommendations. Reason: Application Initialised
08-14 19:32:50.575 i: Fetching [method:GET] https://vod.provider.plex.tv/?includePreferences=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:50.584 i: [ServerTests] Scheduling job to test Discover. Reason: queue (tests manager is idle).
08-14 19:32:50.585 i: [AmazonLauncherBehaviour] Broadcast capabilities...
08-14 19:32:50.605 i: Fetching [method:GET] https://discover.provider.plex.tv/?includePreferences=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:50.606 i: [ServerTests] Scheduling job to test Metadata. Reason: queue (tests manager is idle).
08-14 19:32:50.644 i: [ServerTests] Scheduling job to test Plex_Server. Reason: queue (tests manager is idle).
08-14 19:32:50.647 i: Fetching [method:GET] https://metadata.provider.plex.tv/?includePreferences=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:50.732 i: Fetching [method:GET] https://192.168.0.16:32400/media/providers?includePreferences=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:50.741 i: Fetching [method:GET] https://73-252-136-119.e4c0ee8074704c7ea04dc5ba36779b99.plex.direct:11374/media/providers?includePreferences=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:50.789 w: [PlexPivot] Pivot 'Friends' not supported as view 'view://discover/friends' is not defined
08-14 19:32:50.805 i: [SourceManagerFetcher:3246] Starting to process sources for provider MediaProviderSourceProvider.
08-14 19:32:50.819 i: [HdmiCaps] HDMI support for ac3 (Unknown) over 8 channels found.
08-14 19:32:50.819 i: [HdmiCaps] HDMI support for ac3 (Unknown) over 8 channels found.
08-14 19:32:50.826 i: [HdmiCaps] HDMI support for eac3 (Unknown) over 8 channels found.
08-14 19:32:50.826 i: [HdmiCaps] HDMI support for eac3 (Unknown) over 8 channels found.
08-14 19:32:50.827 i: [HdmiCaps] Capabilties changed (AudioCapabilities[maxChannelCount=8, supportedEncodings=[2, 4, 5, 6, 13]])
08-14 19:32:50.827 i: [HdmiCaps] Capabilties changed (AudioCapabilities[maxChannelCount=8, supportedEncodings=[2, 4, 5, 6, 13]])
08-14 19:32:50.829 i: [HdmiCaps] Reporting capabilities changed
08-14 19:32:50.834 i: [HdmiCaps] Reporting capabilities changed
08-14 19:32:50.835 i: [SourceManagerFetcher:3246] Processing 2 sections.
08-14 19:32:50.844 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/home) because it is pinned.
08-14 19:32:50.844 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/watchlist) because it is pinned.
08-14 19:32:50.899 i: [ApplicationInitialisationTask] Took 4877ms to complete initialisation
08-14 19:32:50.900 i: [AppEventMonitor] Focused +6.54s
08-14 19:32:50.902 i: [User] Application focused, refreshing feature flags.
08-14 19:32:50.903 i: [User] Updating feature flags.
08-14 19:32:50.909 i: Fetching [method:GET] https://clients.plex.tv/api/v2/features?X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:50.919 i: [SourceManagerFetcher:3246] Starting to process sources for provider MediaProviderSourceProvider.
08-14 19:32:50.925 i: [SourceManagerFetcher:3246] Processing 4 sections.
08-14 19:32:50.939 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/home) because it is pinned.
08-14 19:32:50.940 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/watchlist) because it is pinned.
08-14 19:32:50.940 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/movies) because it is pinned.
08-14 19:32:50.941 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/store) because it was pinned.
08-14 19:32:50.944 i: [LiveTVJobService] Fetching channels ...
08-14 19:32:50.950 w: [LiveTVJobService] Cannot fetch channels, EPG content source is not reachable
08-14 19:32:51.003 i: [SplashActivity] Proceeding to route: m
08-14 19:32:51.022 i: [SourceManagerFetcher:3246] Starting to process sources for provider MediaProviderSourceProvider.
08-14 19:32:51.023 i: [SourceManagerFetcher:3246] Processing 4 sections.
08-14 19:32:51.023 i: [SourceManagerFetcher:3246] Starting to process sources for provider MediaProviderSourceProvider.
08-14 19:32:51.024 i: [SourceManagerFetcher:3246] Starting to process sources for provider MediaProviderSourceProvider.
08-14 19:32:51.024 i: [[ServerSectionPrunePredicate]] Ignoring item Movies (Plex_Server) because its content source is not reachable
08-14 19:32:51.025 i: [PlexDevice] Plex_Server Setting https://192-168-0-16.e4c0ee8074704c7ea04dc5ba36779b99.plex.direct:32400 token:...ion.
08-14 19:32:51.027 i: [SourceManagerFetcher:3246] Processing 10 sections.
08-14 19:32:51.028 i: [SourceManagerFetcher:3246] Processing 10 sections.
08-14 19:32:51.040 i: [SourceManagerFetcher:3246] Starting to process sources for provider MediaProviderSourceProvider.
08-14 19:32:51.041 i: [SourceManagerFetcher:3246] Processing 10 sections.
08-14 19:32:51.052 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/home) because it is pinned.
08-14 19:32:51.054 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/watchlist) because it is pinned.
08-14 19:32:51.062 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/movies) because it is pinned.
08-14 19:32:51.062 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/store) because it was pinned.
08-14 19:32:51.063 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/home) because it is pinned.
08-14 19:32:51.063 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/watchlist) because it is pinned.
08-14 19:32:51.064 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/movies) because it is pinned.
08-14 19:32:51.064 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/store) because it was pinned.
08-14 19:32:51.065 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/1) because it is pinned.
08-14 19:32:51.065 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/19) because it was pinned.
08-14 19:32:51.066 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/11) because it was pinned.
08-14 19:32:51.066 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/4) because it is pinned.
08-14 19:32:51.066 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/9) because it is pinned.
08-14 19:32:51.067 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/playlists) because it is pinned.
08-14 19:32:51.067 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/1) because it is pinned.
08-14 19:32:51.072 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/home) because it is pinned.
08-14 19:32:51.075 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/19) because it was pinned.
08-14 19:32:51.079 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/11) because it was pinned.
08-14 19:32:51.080 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/4) because it is pinned.
08-14 19:32:51.087 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/watchlist) because it is pinned.
08-14 19:32:51.088 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/9) because it is pinned.
08-14 19:32:51.089 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/playlists) because it is pinned.
08-14 19:32:51.089 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/home) because it is pinned.
08-14 19:32:51.090 i: [SourceManager] Ignoring source (provider://tv.plex.provider.discover/watchlist) because it is pinned.
08-14 19:32:51.090 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/movies) because it is pinned.
08-14 19:32:51.091 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/store) because it was pinned.
08-14 19:32:51.091 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/1) because it is pinned.
08-14 19:32:51.091 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/19) because it was pinned.
08-14 19:32:51.093 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/11) because it was pinned.
08-14 19:32:51.121 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/movies) because it is pinned.
08-14 19:32:51.121 i: [SourceManager] Ignoring source (provider://tv.plex.provider.vod/store) because it was pinned.
08-14 19:32:51.122 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/4) because it is pinned.
08-14 19:32:51.123 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/9) because it is pinned.
08-14 19:32:51.128 i: [SourceManager] Ignoring source (server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/playlists) because it is pinned.
08-14 19:32:51.164 i: [SourceManagerStorage] Correctly saved 10 sources (7 pinned) (10 previously pinned).
08-14 19:32:51.205 i: [Metrics] Correctly fetched privacy map from plex.tv (127 keys)
08-14 19:32:51.262 i: [WebSocketApplicationBehaviour] Connecting to: Plex_Server
08-14 19:32:52.333 i: [SourceManagerStorage] Correctly saved 10 sources (7 pinned) (10 previously pinned).
08-14 19:32:52.485 i: Creating PickUserActivity.
08-14 19:32:52.533 i: [Boot] PickUserActivity took 42ms to run create behaviours.
08-14 19:32:52.619 i: [ResetCustomizationBrain] Check if we should show the server selector, is server already selected: (true) user has gone through onboarding: (true)
08-14 19:32:52.636 i: [AccountApplicationBehaviour] Fetching preferred platforms
08-14 19:32:52.642 i: [PreferredPlatformsRepository] Fetching preferred availability platforms
08-14 19:32:52.659 i: [ActivityBackgroundBehaviour] Canceling Playback: Starting new playback from onStart.
08-14 19:32:52.743 i: Resuming PickUserActivity.
08-14 19:32:52.859 i: [AccountApplicationBehaviour] Community onboarding set: null
08-14 19:32:53.035 i: [CommunitySinglePaneOnboardingActivity] Should show onboarding flow: false
08-14 19:32:53.654 i: Creating HomeActivityTV.
08-14 19:32:53.657 i: [Activity] Resuming the application, attempting to download item and children.
08-14 19:32:53.994 i: [Boot] HomeActivityTV took 339ms to run create behaviours.
08-14 19:32:54.050 i: [HomeActivity] Adding home fragment
08-14 19:32:54.128 i: [Boot] g took 0ms to run create behaviours.
08-14 19:32:54.257 w: [PlexActivity] Not adding behaviour TitleViewBehaviour because it was already present.
08-14 19:32:54.444 i: [GDM] Timeout reached, done.
08-14 19:32:54.445 i: [GDM] Done browsing, we found 1 servers.
08-14 19:32:54.575 i: [NetworkServiceBrowserManager] Server discovery complete
08-14 19:32:54.698 i: [Boot] g took 1ms to run create behaviours.
08-14 19:32:54.866 i: [Boot] g took 0ms to run create behaviours.
08-14 19:32:55.115 i: [ActivityBackgroundBehaviour] Canceling Playback: Source changed
08-14 19:32:55.126 i: [ActivityBackgroundBehaviour] Canceling Playback: Starting new playback from onStart.
08-14 19:32:55.406 i: [ContentSectionNavigation] Navigating to path view://home/recommended
08-14 19:32:55.546 i: Resuming HomeActivityTV.
08-14 19:32:55.683 i: [HubsRepository] Observing preferred platforms
08-14 19:32:56.029 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/continueWatching?contentDirectoryID=1%2C4%2C9%2Cplaylists&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.030 i: Fetching [method:GET] https://vod.provider.plex.tv/hubs/continueWatching?contentDirectoryID=movies&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.081 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=4&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.082 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=1&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.091 i: Fetching [method:GET] https://discover.provider.plex.tv/hubs/promoted?contentDirectoryID=watchlist&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=watchlist%2Chome&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.092 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=playlists&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.095 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=9&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.098 i: Fetching [method:GET] https://discover.provider.plex.tv/hubs/promoted?contentDirectoryID=home&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=watchlist%2Chome&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.103 i: Fetching [method:GET] https://vod.provider.plex.tv/hubs/promoted?contentDirectoryID=movies&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=movies&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:32:56.837 i: [WatchTogetherRepository] All rooms fetched with result: Success(result=WTRoomsResponseBody(rooms=[]), headers={access-control-allow-origin=[*], content-length=[12], content-type=[application/json; charset=utf-8], cross-origin-resource-policy=[cross-origin], date=[Thu, 15 Aug 2024 02:32:56 GMT], etag=[W/"c-3s3wvZKRCwxfzAuaR0KvWAvDvxc"], origin-agent-cluster=[?1], referrer-policy=[no-referrer], strict-transport-security=[max-age=31536000; includeSubDomains; preload], x-content-type-options=[nosniff], x-dns-prefetch-control=[off], x-download-options=[noopen], x-frame-options=[SAMEORIGIN], x-permitted-cross-domain-policies=[none], x-plex-version=[441c11182f4623d8962cec52353da8e0a9240a68], x-xss-protection=[1; mode=block]})
08-14 19:33:00.063 i: [ComposeHomeFragment] Updating hubs.
08-14 19:33:00.251 i: [ActivityBackgroundBehaviour] Canceling Playback: Changing background.
08-14 19:33:03.055 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.096 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.097 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.105 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.105 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.106 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.107 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.109 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.111 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.111 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.112 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.112 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.113 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.117 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.117 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.118 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.119 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.120 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.120 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.121 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.121 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.122 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.122 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.123 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.123 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.124 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.124 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.125 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.125 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.126 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.126 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.127 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.127 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.128 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.129 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.130 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.130 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.131 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.131 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.132 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.132 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.133 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.133 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.134 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.134 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.135 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.135 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.136 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.136 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.137 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.138 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.138 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.139 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.139 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.140 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.140 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.141 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.141 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.142 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.142 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.143 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.143 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.143 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.144 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.144 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.144 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.145 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:03.185 i: [ComposeHomeFragment] Updating hubs.
08-14 19:33:04.622 i: [NativeLibrary] Attempting to load `c++_shared`.
08-14 19:33:04.702 i: [NativeLibrary] Attempting to load `bass`.
08-14 19:33:04.730 i: [NativeLibrary] Attempting to load `bass_ape`.
08-14 19:33:04.737 i: [NativeLibrary] Attempting to load `bass_fx`.
08-14 19:33:04.745 i: [NativeLibrary] Attempting to load `bass_mpc`.
08-14 19:33:04.754 i: [NativeLibrary] Attempting to load `bassflac`.
08-14 19:33:04.762 i: [NativeLibrary] Attempting to load `bassmix`.
08-14 19:33:04.769 i: [NativeLibrary] Attempting to load `bassopus`.
08-14 19:33:04.785 i: [NativeLibrary] Attempting to load `bassalac`.
08-14 19:33:04.792 i: [NativeLibrary] Attempting to load `bass_aac`.
08-14 19:33:04.796 i: [NativeLibrary] Attempting to load `Treble`.
08-14 19:33:06.957 i: [ActivityBackgroundBehaviour] Canceling Playback: Changing background.
08-14 19:33:08.125 i: [ActivityBackgroundBehaviour] Canceling Playback: Changing background.
08-14 19:33:11.285 i: [ActivityBackgroundBehaviour] Canceling Playback: Changing background.
08-14 19:33:17.585 i: [PreplaySectionModelManager] Observing preferred platforms
08-14 19:33:21.787 i: [ThemeMusic] Playing new theme music.
08-14 19:33:22.493 i: [Preplay] Notifying listeners with status: SUCCESS
08-14 19:33:22.547 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28926/related?count=25&excludeElements=Actor%2CCollection%2CCountry%2CDirector%2CLabel%2CMood%2CPart%2CPhoto%2CProducer%2CSimilar%2CTopic%2CVast%2CWriter&excludeFields=file%2Ctagline&includeAugmentations=1&includeDetails=1&includeEmpty=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTrailers=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:22.585 i: [Preplay] Notifying listeners with status: SUCCESS
08-14 19:33:25.615 w: [HubItemFinder] Searching all hubs for ItemChangedServerSide change type 0 (key 28930) because server null.
08-14 19:33:25.665 i: [Download Item] Downloading item with uri server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/library/metadata/28930?asyncAugmentMetadata=1&checkFiles=1&includeExtras=1&includeReviews=1
08-14 19:33:25.667 w: [HubItemFinder] Searching all hubs for ItemChangedServerSide change type 0 (key 28930) because server null.
08-14 19:33:25.668 i: [Download Item] Downloading item with uri server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/library/metadata/28930?asyncAugmentMetadata=1&checkFiles=1&includeExtras=1&includeReviews=1
08-14 19:33:25.744 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28930?asyncAugmentMetadata=1&checkFiles=1&includeExtras=1&includeReviews=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:25.765 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28930?asyncAugmentMetadata=1&checkFiles=1&includeExtras=1&includeReviews=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:25.866 i: [PreplayViewModel] Refreshing metadata for Season 2
08-14 19:33:25.913 i: [PreplayViewModel] Refreshing metadata for Season 2
08-14 19:33:26.003 i: Fetching [method:GET] https://discover.provider.plex.tv/hubs/promoted?contentDirectoryID=home&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=watchlist%2Chome&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.012 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=1&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.013 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=4&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.014 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=9&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.015 i: Fetching [method:GET] https://vod.provider.plex.tv/hubs/promoted?contentDirectoryID=movies&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=movies&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.019 i: Fetching [method:GET] https://discover.provider.plex.tv/hubs/promoted?contentDirectoryID=watchlist&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=watchlist%2Chome&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.022 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/continueWatching?contentDirectoryID=1%2C4%2C9%2Cplaylists&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.024 i: Fetching [method:GET] https://vod.provider.plex.tv/hubs/continueWatching?contentDirectoryID=movies&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:26.026 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=playlists&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:27.198 i: [Preplay] Notifying listeners with status: SUCCESS
08-14 19:33:27.243 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28926/related?count=25&excludeElements=Actor%2CCollection%2CCountry%2CDirector%2CLabel%2CMood%2CPart%2CPhoto%2CProducer%2CSimilar%2CTopic%2CVast%2CWriter&excludeFields=file%2Ctagline&includeAugmentations=1&includeDetails=1&includeEmpty=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTrailers=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:27.282 i: [Preplay] Notifying listeners with status: SUCCESS
08-14 19:33:27.780 i: [OneApp] User can execute command without restrictions because they are entitled.
08-14 19:33:27.837 i: [PlaybackManager] Preparing for Interview with the Vampire - S2 • E4
08-14 19:33:27.837 i: [PlaybackManager] Item doesn't have streams, having to download...
08-14 19:33:27.883 i: [Download Item] Downloading item with uri server://f543646e966bbd6bab6cf70d961468047853afe8/com.plexapp.plugins.library/library/metadata/28930?asyncAugmentMetadata=1&checkFiles=1&includeExtras=1&includeReviews=1
08-14 19:33:27.942 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28930?asyncAugmentMetadata=1&checkFiles=1&includeExtras=1&includeReviews=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:28.659 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.AVC) for video/avc
08-14 19:33:28.661 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.HEVC) for video/hevc
08-14 19:33:28.668 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.DVHE.STN) for video/dolby-vision
08-14 19:33:28.672 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.MPEG2) for video/mpeg2
08-14 19:33:28.676 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.MPEG4) for video/mp4v-es
08-14 19:33:28.681 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.VPX) for video/x-vnd.on2.vp8
08-14 19:33:28.684 i: [VideoUtils] MediaCodec found (OMX.MTK.VIDEO.DECODER.VP9) for video/x-vnd.on2.vp9
08-14 19:33:28.701 i: [MediaCodecCaps] Support detected: (audio/raw, Max: 8)
08-14 19:33:28.702 i: [MediaCodecCaps] Support detected: (audio/mpeg-L1, Max: 1)
08-14 19:33:28.703 i: [MediaCodecCaps] Support detected: (audio/mpeg-L2, Max: 1)
08-14 19:33:28.704 i: [MediaCodecCaps] Support detected: (audio/mpeg, Max: 2)
08-14 19:33:28.705 i: [MediaCodecCaps] Support detected: (audio/ac3, Max: 6)
08-14 19:33:28.705 i: [MediaCodecCaps] Support detected: (audio/eac3, Max: 8)
08-14 19:33:28.706 i: [MediaCodecCaps] Support detected: (audio/vnd.dts, Max: 1)
08-14 19:33:28.707 i: [MediaCodecCaps] Support detected: (audio/vnd.dts.hd, Max: 1)
08-14 19:33:28.708 i: [MediaCodecCaps] Support detected: (audio/true-hd, Max: 1)
08-14 19:33:28.724 i: [NativeLibrary] Attempting to load `c++_shared`.
08-14 19:33:28.726 i: [NativeLibrary] Attempting to load `fmt`.
08-14 19:33:28.742 i: [NativeLibrary] Attempting to load `cpu_features`.
08-14 19:33:28.744 i: [NativeLibrary] Attempting to load `ndk_compat`.
08-14 19:33:28.746 i: [NativeLibrary] Attempting to load `ass`.
08-14 19:33:28.755 i: [NativeLibrary] Attempting to load `avutil`.
08-14 19:33:28.763 i: [NativeLibrary] Attempting to load `swresample`.
08-14 19:33:28.808 i: [NativeLibrary] Attempting to load `avcodec`.
08-14 19:33:28.824 i: [NativeLibrary] Attempting to load `avformat`.
08-14 19:33:28.855 i: [NativeLibrary] Attempting to load `swscale`.
08-14 19:33:28.860 i: [NativeLibrary] Attempting to load `avfilter`.
08-14 19:33:28.875 i: [NativeLibrary] Attempting to load `ffplex`.
08-14 19:33:28.900 i: [FF] Loaded avcodec - 59.25.100.
08-14 19:33:28.901 i: [FF] Loaded avutil - 57.24.101.
08-14 19:33:28.901 i: [FF] Loaded swsresample - 4.6.100.
08-14 19:33:28.902 i: [FF] Loaded avformat - 59.20.101.
08-14 19:33:28.902 i: [FF] Using Codecs ad47460-4673-android-armv7sf.
08-14 19:33:28.906 i: [FF] FFmpeg Configuration: `--disable-static --enable-shared --disable-libx264 --disable-hwaccels --disable-protocol=concat --external-decoder=h264 --enable-debug --enable-muxers --enable-libxml2 --fatal-warnings --disable-gmp --disable-avdevice --disable-bzlib --disable-sdl2 --disable-decoders --disable-devices --disable-encoders --disable-ffprobe --disable-ffplay --disable-doc --disable-iconv --disable-lzma --disable-schannel --disable-linux-perf --disable-mediacodec --enable-eae --disable-protocol='udp,udplite' --arch=armv7 --target-os=android --strip=true --cc=arm-linux-androideabi21-clang --pkg-config=/data/jenkins/conan_build/2095517742/plexconantool/plex-pkg-config --pkg-config-flags=--static --windres=llvm-windres --enable-opencl --disable-vulkan --enable-cross-compile --ar=llvm-ar --nm=llvm-nm --ranlib=llvm-ranlib --enable-mediacodecndk --extra-ldflags='-L/data/jenkins/conan_build/2095517742/conan/.conan/data/opus/1.2.1-35/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/libvorbis/1.3.5-39/plex/stable/package/1fcd59a24b2bf041ef7e198a9d96b85da2118b11/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/dav1d/1.0.0-15/plex/stable/package/0330496eaf8e66a62f782e784b7ae21c31f6063d/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/openssl/3.1.1-2cf4e90-1/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/zvbi/0.2.35-61/plex/stable/package/a7e2728ffeb4bd403298ec4ffd10474115f4be91/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/libass/0.16.0-6/plex/stable/package/de7963a8d30d2603b49575b60b9988374583d004/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/mp3lame/3.98.4-34/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/opencl-runtime-loader/0.0.1-739ae8d-19/plex/stable/package/1e0d9d722fabcd0b355d0d8aad8a43f182666d4a/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/libogg/1.3.2-35/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/iconv/1.16-33/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/fribidi/1.0.12-3/plex/stable/package/e3f3d9ac63b753db22b165d0db4c335d8ac6044f/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/harfbuzz/4.2.1-5/plex/stable/package/2d6be05a72d1d62e2a9a961e7031d2baf90f6fea/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/fontconfig/2.14.0-5/plex/stable/package/97b05d5efb2048ffc270c776014d5536efe1e3d5/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/libxml2/2.9.11-e1bcffea-14/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/freetype2/2.12.1-27/plex/stable/package/9b43164de51598cc49246295664ba5cb4d65757c/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/expat/2.2.5-36/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/libuuid/1.0.3-29/plex/stable/package/92c382db3bc13c5f5106eb715b410390fcbfcfa3/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/bzip2/1.0.6-39/plex/stable/package/64315d8cdd7d351d701261fdacb76d5af463abc8/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/libpng/1.6.37-42/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/lib -L/data/jenkins/conan_build/2095517742/conan/.conan/data/zlib/1.2.11-33/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/lib -Wl,--gc-sections -Wl,-z,noexecstack -Wl,-z,relro -g2 -gdwarf-4 -Wl,--build-id=sha1 -flto=thin -fwhole-program-vtables -Wl,--icf=all -Wl,--threads=6 -Wl,-O2 -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libgnustl_shared.so -Wl,--exclude-libs,libunwind.a -Wl,-rpath,'\''XORIGIN/../lib'\'' -Wl,-rpath,'\''XORIGIN/lib'\'' -Wl,--thinlto-cache-dir=/data/jenkins/conan_build/2095517742/conan/.conan/data/ffmpeg/2.0-ad474602b33-2/plex/stable/build/ba60b4bc1774ca17707af12d8ee10456e53b048b/lto_cache/' --extra-libs= --enable-decoder=png --enable-decoder=apng --enable-decoder=bmp --enable-decoder=mjpeg --enable-decoder=thp --enable-decoder=gif --enable-decoder=dirac --enable-decoder=ffv1 --enable-decoder=ffvhuff --enable-decoder=huffyuv --enable-decoder=libdav1d --enable-decoder=av1 --enable-decoder=rawvideo --enable-decoder=flac --enable-decoder=vorbis --enable-decoder=opus --enable-decoder=rawvideo --enable-decoder=pcm_f32be --enable-decoder=pcm_f32le --enable-decoder=pcm_f64be --enable-decoder=pcm_f64le --enable-decoder=pcm_lxf --enable-decoder=pcm_s16be --enable-decoder=pcm_s16be_planar --enable-decoder=pcm_s16le --enable-decoder=pcm_s16le_planar --enable-decoder=pcm_s24be --enable-decoder=pcm_s24le --enable-decoder=pcm_s24le_planar --enable-decoder=pcm_s32be --enable-decoder=pcm_s32le --enable-decoder=pcm_s32le_planar --enable-decoder=pcm_s8 --enable-decoder=pcm_s8_planar --enable-decoder=pcm_u16be --enable-decoder=pcm_u16le --enable-decoder=pcm_u24be --enable-decoder=pcm_u24le --enable-decoder=pcm_u32be --enable-decoder=pcm_u32le --enable-decoder=pcm_u8 --enable-decoder=pcm_alaw --enable-decoder=pcm_mulaw --enable-decoder=alac --enable-encoder=png --enable-encoder=mjpeg --enable-encoder=rawvideo --enable-encoder=wrapped_avframe --enable-encoder=flac --enable-encoder=alac --enable-encoder=libvorbis --enable-encoder=libopus --enable-encoder=mjpeg --enable-encoder=png --enable-encoder=rawvideo --enable-encoder=wrapped_avframe --enable-encoder=ass --enable-encoder=dvbsub --enable-encoder=dvdsub --enable-encoder=movtext --enable-encoder=ssa --enable-encoder=subrip --enable-encoder=text --enable-encoder=webvtt --enable-encoder=xsub --enable-encoder=pcm_f32be --enable-encoder=pcm_f32le --enable-encoder=pcm_f64be --enable-encoder=pcm_f64le --enable-encoder=pcm_s8 --enable-encoder=pcm_s8_planar --enable-encoder=pcm_s16be --enable-encoder=pcm_s16be_planar --enable-encoder=pcm_s16le --enable-encoder=pcm_s16le_planar --enable-encoder=pcm_s24be --enable-encoder=pcm_s24le --enable-encoder=pcm_s24le_planar --enable-encoder=pcm_s32be --enable-encoder=pcm_s32le --enable-encoder=pcm_s32le_planar --enable-encoder=pcm_u8 --enable-encoder=pcm_u16be --enable-encoder=pcm_u16le --enable-encoder=pcm_u24be --enable-encoder=pcm_u24le --enable-encoder=pcm_u32be --enable-encoder=pcm_u32le --prefix=/data/jenkins/conan_build/2095517742/conan/.conan/data/ffmpeg/2.0-ad474602b33-2/plex/stable/build/ba60b4bc1774ca17707af12d8ee10456e53b048b/transcoder-install --enable-libzvbi --enable-openssl --enable-libass --enable-libopus --enable-libvorbis --enable-libdav1d --extra-cflags='-O3 -fdata-sections -ffunction-sections -fno-omit-frame-pointer -g2 -gdwarf-4 -fcommon -flto=thin -fwhole-program-vtables -I/data/jenkins/conan_build/2095517742/conan/.conan/data/opus/1.2.1-35/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libvorbis/1.3.5-39/plex/stable/package/1fcd59a24b2bf041ef7e198a9d96b85da2118b11/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/dav1d/1.0.0-15/plex/stable/package/0330496eaf8e66a62f782e784b7ae21c31f6063d/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/openssl/3.1.1-2cf4e90-1/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/zvbi/0.2.35-61/plex/stable/package/a7e2728ffeb4bd403298ec4ffd10474115f4be91/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libass/0.16.0-6/plex/stable/package/de7963a8d30d2603b49575b60b9988374583d004/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/mp3lame/3.98.4-34/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libogg/1.3.2-35/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/iconv/1.16-33/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/fribidi/1.0.12-3/plex/stable/package/e3f3d9ac63b753db22b165d0db4c335d8ac6044f/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/harfbuzz/4.2.1-5/plex/stable/package/2d6be05a72d1d62e2a9a961e7031d2baf90f6fea/include/harfbuzz -I/data/jenkins/conan_build/2095517742/conan/.conan/data/opencl-headers/v2022.01.04-59ac4dc-3/plex/stable/package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/fontconfig/2.14.0-5/plex/stable/package/97b05d5efb2048ffc270c776014d5536efe1e3d5/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libxml2/2.9.11-e1bcffea-14/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libxml2/2.9.11-e1bcffea-14/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/include/libxml2 -I/data/jenkins/conan_build/2095517742/conan/.conan/data/freetype2/2.12.1-27/plex/stable/package/9b43164de51598cc49246295664ba5cb4d65757c/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/expat/2.2.5-36/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libuuid/1.0.3-29/plex/stable/package/92c382db3bc13c5f5106eb715b410390fcbfcfa3/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/bzip2/1.0.6-39/plex/stable/package/64315d8cdd7d351d701261fdacb76d5af463abc8/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/libpng/1.6.37-42/plex/stable/package/afa914261f0585698daad56286ecb9a4ab8ec80b/include -I/data/jenkins/conan_build/2095517742/conan/.conan/data/zlib/1.2.11-33/plex/stable/package/78349e1aad4ece15e62d80ebd4faa1c0fcecdcb8/include -DLIBXML_STATIC -DFRIBIDI_LIB_STATIC -DUSING_STATIC_LIBICONV -DNDEBUG'`.
08-14 19:33:28.921 i: [FF] Decoder found: alac.
08-14 19:33:28.922 i: [FF] Decoder found: flac.
08-14 19:33:28.922 i: [FF] Decoder found: opus.
08-14 19:33:28.923 i: [FF] Decoder found: vorbis.
08-14 19:33:28.923 i: [FF] Decoder found: pcm
08-14 19:33:28.944 i: [DefaultPlaybackManager] No codecs being downloaded.
08-14 19:33:29.086 i: [PlayQueues] Creating delayed remote PQ.
08-14 19:33:29.226 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28930/related?count=25&excludeElements=Actor%2CCollection%2CCountry%2CDirector%2CLabel%2CMood%2CPart%2CPhoto%2CProducer%2CSimilar%2CTopic%2CVast%2CWriter&excludeFields=file%2Ctagline&includeAugmentations=1&includeDetails=1&includeEmpty=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTrailers=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:29.317 i: [Preplay] Notifying listeners with status: EMPTY
08-14 19:33:30.026 i: [PlayerService] Service has been created.
08-14 19:33:30.114 i: [PlayerService] Service is being initialised.
08-14 19:33:30.229 i: [ConnectivityManager] Device is under Wifi
08-14 19:33:30.258 i: [VideoUtilities] Recommended H264 profile determined as Level52 / High.
08-14 19:33:30.259 i: [Player] Changing to use ExoPlayer for playback.
08-14 19:33:30.470 i: [LoadControl] Setting buffer size to 57.56 MB / 0 seconds.
08-14 19:33:30.560 i: [ExoPlayer][ExoPlayerImpl] Init 54e8bfb [AndroidXMedia3/1.1.0] [mantis, AFTMM, Amazon, 25]
08-14 19:33:30.602 i: [AudioCapabilitiesHelper] Passthrough is set to auto over HDMI, supported capabilities:
08-14 19:33:30.605 i: [AudioCapabilitiesHelper] - ac3
08-14 19:33:30.606 i: [AudioCapabilitiesHelper] - eac3
08-14 19:33:30.666 i: [ExoPlayerEngine] Constructed ExoPlayer to use a background looper.
08-14 19:33:31.059 i: [MemoryOptimisationBehaviour] Reducing memory cache.
08-14 19:33:31.186 i: [MediaSessionHelper] Starting media session with tag: video
08-14 19:33:31.187 i: [MediaSessionHelper] Creating media session with tag: video
08-14 19:33:31.324 i: [MediaSessionBehaviour] Current item has changed
08-14 19:33:31.326 i: [MediaSessionBehaviour] Updating metadata for video.
08-14 19:33:31.346 i: [InteractionBehaviour] Slept, reason: Startup.
08-14 19:33:31.359 i: [CurrentItemMetadataBehaviour] Fetching current item
08-14 19:33:31.361 i: [PlayerService] Service has been started successfully.
08-14 19:33:31.412 i: [ExoPlayer][EventLogger] surfaceSize [eventTime=0.74, mediaPos=0.00, window=0, 0, 0]
08-14 19:33:31.413 i: [Player][ExoPlayer] Setting given surfaceView
08-14 19:33:31.415 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:33:31.416 i: [DisplayBehaviour] New ExoPlayerEngine detected, enabling: true.
08-14 19:33:31.417 i: [Player][ExoPlayer] Using PlayQueueMediaSource
08-14 19:33:31.451 i: [ExoPlayerEngine] Media source has been created.
08-14 19:33:31.455 i: [MediaCodecVideoSyncRenderer] Setting allow dummy surface: false
08-14 19:33:31.456 i: [LoadControl] Setting buffer size to 57.56 MB / 0 seconds.
08-14 19:33:31.457 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=0.79, mediaPos=0.00, window=0, true, USER_REQUEST]
08-14 19:33:31.561 i: [ExoPlayer][EventLogger] timeline [eventTime=0.90, mediaPos=0.00, window=0, periodCount=1, windowCount=1, reason=PLAYLIST_CHANGED
08-14 19:33:31.644 i: [ExoPlayer][EventLogger] period [?]
08-14 19:33:31.645 i: [ExoPlayer][EventLogger] window [?, seekable=false, dynamic=true]
08-14 19:33:31.645 i: [ExoPlayer][EventLogger] ]
08-14 19:33:31.646 i: [Player][ExoPlayer] onTimelineChanged (Position: 0 ms, Duration: 0 ms)
08-14 19:33:31.646 i: [ExoPlayer][EventLogger] mediaItem [eventTime=0.93, mediaPos=0.00, window=0, reason=PLAYLIST_CHANGED]
08-14 19:33:31.647 i: [LoadControl] Setting buffer size to 57.56 MB / 0 seconds.
08-14 19:33:31.647 i: [ExoPlayer][EventLogger] state [eventTime=0.94, mediaPos=0.00, window=0, BUFFERING]
08-14 19:33:31.647 i: [MediaDecisionEngine] Starting media decision for: Interview with the Vampire - S2 • E4 (part index 0)
08-14 19:33:31.648 i: [MediaDecisionEngine] Provided video item has no streams, checking files...
08-14 19:33:31.651 i: Fetching [method:GET] https://192.168.0.16:32400/library/metadata/28930?checkFiles=1&includeChapters=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:31.670 i: [CurrentItemMetadataBehaviour] Fetched current item, success: true
08-14 19:33:31.695 i: [MediaDecisionEngine] Transcode server selected: Plex_Server
08-14 19:33:31.742 i: [MediaDecisionEngine] Analyzing media: 1920x1080 1086kbps (Container: mkv, Video: hevc, Audio: eac3)
08-14 19:33:31.743 i: Creating PlayerActivity.
08-14 19:33:31.744 i: [Activity] Resuming the application, attempting to download item and children.
08-14 19:33:31.744 i: [Boot] PlayerActivity took 2ms to run create behaviours.
08-14 19:33:31.780 i: Resuming PlayerActivity.
08-14 19:33:31.781 i: [ThemeMusic] Starting fade out.
08-14 19:33:31.791 i: [MediaDecisionEngine] Selected subtitle (ass) can be direct played (via Transcode? false)
08-14 19:33:31.796 i: [video] User maximum h264 profile determined: 52
08-14 19:33:31.797 i: [video] Device recommended h264 profile determined: 52
08-14 19:33:31.844 i: [PlayerActivity] Creating fragment
08-14 19:33:31.851 i: [Player][DimensionsLayout] Resizing: 100 x 100
08-14 19:33:31.879 i: [DisplayBehaviour] Activity has been changed, searching for available modes.
08-14 19:33:31.924 i: [DisplayBehaviour] Current mode detected as 3840x2160 @ 59.9400Hz (3).
08-14 19:33:31.927 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:33:32.032 i: [BufferHelper] Assumed Bitrate: 10000, Segment Count: 1171
08-14 19:33:32.055 i: [BufferHelper] Segment count: 1171
08-14 19:33:32.058 i: Fetching [method:GET] https://192.168.0.16:32400/video/:/transcode/universal/decision?advancedSubtitles=text&audioBoost=100&autoAdjustQuality=0&directPlay=1&directStream=1&directStreamAudio=1&fastSeek=1&hasMDE=1&location=lan&maxVideoBitrate=200000&mediaBufferSize=74944&mediaIndex=0&partIndex=0&path=%2Flibrary%2Fmetadata%2F28930&protocol=*&session=df8a5315490212a-com-plexapp-android&skipSubtitles=1&subtitleSize=100&videoBitrate=200000&videoQuality=100&videoResolution=3840x2160&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Client-Platform=Android&X-Plex-Client-Profile-Extra=add-limitation(scope%3DvideoCodec%26scopeName%3Dh264%26type%3DupperBound%26name%3Dvideo.level%26value%3D52)%2Badd-limitation(scope%3DvideoCodec%26scopeName%3D*%26type%3DupperBound%26name%3Dvideo.width%26value%3D3840%26replace%3Dtrue)%2Badd-limitation(scope%3DvideoCodec%26scopeName%3D*%26type%3DupperBound%26name%3Dvideo.height%26value%3D2160%26replace%3Dtrue)%2Badd-transcode-target(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26container%3Dmkv%26videoCodec%3Dh264%2Chevc%2Cmpeg2video%26audioCodec%3Daac_latm%2Caac%2Caac%2Cac3%2Calac%2Cdca%2Ceac3%2Cflac%2Cmp1%2Cmp2%2Cmp3%2Copus%2Cvorbis%2Cwmav1%2Cwmav2%2Cwmalossless%2Cwmapro%2Cwmavoice%26subtitleCodec%3Dass%2Cpgs%2Csubrip%2Cdvd_subtitle%2Cmov_text%2Cvtt%2Cdvb_subtitle%26replace%3Dtrue)%2Badd-transcode-target-settings(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26CopyMatroskaAttachments%3Dtrue)%2Badd-limitation(scope%3DvideoAudioCodec%26scopeName%3Daac%26type%3DupperBound%26name%3Daudio.channels%26value%3D8%26replace%3Dtrue)%2Badd-transcode-target-audio-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26audioCodec%3Dmp3)%2Badd-transcode-target-audio-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26audioCodec%3Dac3)%2Badd-transcode-target-audio-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26audioCodec%3Deac3)%2Badd-transcode-target-audio-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26audioCodec%3Ddca)%2Badd-transcode-target-audio-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26audioCodec%3Dopus)%2Badd-limitation(scope%3DvideoCodec%26scopeName%3D*%26type%3DNotMatch%26name%3Dvideo.anamorphic%26value%3D999%26replace%3Dtrue)%2Badd-transcode-target(type%3DsubtitleProfile%26context%3Dstreaming%26protocol%3Dhttp%26container%3Dmkv%26subtitleCodec%3Dsrt)%2Bappend-transcode-target-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26videoCodec%3Dmpeg2video)%2Bappend-transcode-target-codec(type%3DvideoProfile%26context%3Dstreaming%26protocol%3Dhls%26videoCodec%3Dhevc)%2Badd-limitation(scope%3DvideoCodec%26scopeName%3Dhevc%26type%3DMatch%26name%3Dvideo.profile%26list%3Dmain%7Cmain%2010)%2Badd-limitation(scope%3DvideoTranscodeTarget%26scopeName%3Dhevc%26scopeType%3DvideoCodec%26context%3Dstreaming%26protocol%3Dhls%26type%3Dmatch%26name%3Dvideo.colorTrc%26list%3Dsmpte240m%7Csmpte2084%7Csmpte170m%7Cbt470m%7Cbt470bg%7Cbt2020-10%7Cbt709%26isRequired%3Dfalse)&X-Plex-Device=AFTMM&X-Plex-Platform=Android&X-Plex-Platform-Version=7.1.2&X-Plex-Product=Plex%20for%20Android%20(TV)&X-Plex-Session-Id=c071ac5c-d366-4920-9952-8b41a0a9fe05&X-Plex-Version=10.18.1.1096&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:32.136 i: [MediaDecisionEngine] Server was happy with client's original decision
08-14 19:33:32.138 i: [MediaDecisionEngine] Decision: CanPlay: true CanDirectPlay: true CanDirectStreamVideo: true CanDirectStreamAudio: true CanDirectPlaySubtitle: true CanTranscodeSubtitle: false CanDisplayVideo: true
08-14 19:33:32.139 i: [LoadControl] New bitrate: 1086, Maximum: 1086
08-14 19:33:32.139 i: [MediaDecisionMediaSource] Resetting mappable types.
08-14 19:33:32.203 i: [BufferHelper] Assumed Bitrate: 10000, Segment Count: 1171
08-14 19:33:32.204 i: [BufferHelper] Segment count: 1171
08-14 19:33:32.205 i: [MediaDecisionMediaSource] Loading from https://192-168-0-16.e4c0ee8074704c7ea04dc5ba36779b99.plex.direct:32400/library/parts/39231/1717387200/file.mkv?autoAdjustQuality=0&hasMDE=1&location=lan&mediaBufferSize=74944&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Client-Platform=Android&X-Plex-Device=AFTMM&X-Plex-DRM=widevine%3Avideo&X-Plex-Platform=Android&X-Plex-Platform-Version=7.1.2&X-Plex-Product=Plex%20for%20Android%20(TV)&X-Plex-Session-Id=c071ac5c-d366-4920-9952-8b41a0a9fe05&X-Plex-Token=...PFbx&X-Plex-Version=10.18.1.1096.
08-14 19:33:32.208 i: [BufferHelper] Assumed Bitrate: 10000, Segment Count: 1171
08-14 19:33:32.209 i: [BufferHelper] Segment count: 1171
08-14 19:33:32.210 i: [MediaDecisionMediaSource] Loading from https://192.168.0.16:32400/library/parts/39231/1717387200/file.mkv?autoAdjustQuality=0&hasMDE=1&location=lan&mediaBufferSize=74944&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Client-Platform=Android&X-Plex-Device=AFTMM&X-Plex-DRM=widevine%3Avideo&X-Plex-Platform=Android&X-Plex-Platform-Version=7.1.2&X-Plex-Product=Plex%20for%20Android%20(TV)&X-Plex-Session-Id=c071ac5c-d366-4920-9952-8b41a0a9fe05&X-Plex-Token=...PFbx&X-Plex-Version=10.18.1.1096.
08-14 19:33:32.211 i: [MediaDecisionMediaSource] Resolving 192-168-0-16.e4c0ee8074704c7ea04dc5ba36779b99.plex.direct as 192.168.0.16.
08-14 19:33:32.218 i: [AudioCapabilitiesHelper] Passthrough is set to auto over HDMI, supported capabilities:
08-14 19:33:32.219 i: [AudioCapabilitiesHelper] - ac3
08-14 19:33:32.220 i: [AudioCapabilitiesHelper] - eac3
08-14 19:33:32.220 i: [MediaDecisionMediaSource] Opening https://192-168-0-16.e4c0ee8074704c7ea04dc5ba36779b99.plex.direct:32400/library/parts/39231/1717387200/file.mkv?autoAdjustQuality=0&hasMDE=1&location=lan&mediaBufferSize=74944&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Client-Platform=Android&X-Plex-Device=AFTMM&X-Plex-DRM=widevine%3Avideo&X-Plex-Platform=Android&X-Plex-Platform-Version=7.1.2&X-Plex-Product=Plex%20for%20Android%20(TV)&X-Plex-Session-Id=c071ac5c-d366-4920-9952-8b41a0a9fe05&X-Plex-Token=...PFbx&X-Plex-Version=10.18.1.1096.
08-14 19:33:32.221 i: [MediaDecisionMediaSource] Using ProgressiveMediaSource with FFmpegExtractor.
08-14 19:33:32.251 i: [MediaDecisionMediaSource] onMediaDecisionRefreshed (Sources: 1)
08-14 19:33:32.255 i: [DisplayBehaviour] Mode found: 1920x1080 @ 60.0000Hz (1) (Score: 125.00 (RR: 0.00 R: 125.00)
08-14 19:33:32.257 i: [DisplayBehaviour] Mode found: 1920x1080 @ 59.9400Hz (2) (Score: 125.00 (RR: 0.00 R: 125.00)
08-14 19:33:32.258 i: [DisplayBehaviour] Mode found: 3840x2160 @ 59.9400Hz (3) (Score: 72.00 (RR: 0.00 R: 72.00)
08-14 19:33:32.258 i: [DisplayBehaviour] Mode found: 3840x2160 @ 60.0000Hz (5) (Score: 72.00 (RR: 0.00 R: 72.00)
08-14 19:33:32.260 i: [DisplayBehaviour] Best mode for 1920x1080 @ 23.976000Hz selected as 1920x1080 @ 59.9400Hz (2).
08-14 19:33:32.605 i: [ChaptersSheetHud] Found 0 chapters.
08-14 19:33:32.696 i: [MenuSheetHud] Item changed (and fetched), invalidating settings...
08-14 19:33:33.087 i: [SystemUIBehaviour] Hiding the system user-interface.
08-14 19:33:34.282 i: [Player][View] Layout has been measured with a size of 1920 x 1080 (1920 x 1080).
08-14 19:33:34.295 i: [Player][DimensionsLayout] Resizing: 1920 x 1080
08-14 19:33:34.388 i: [ASS][Renderer] Surface has been created, connecting to renderer.
08-14 19:33:34.416 i: [ExoPlayer][EventLogger] surfaceSize [eventTime=3.75, mediaPos=0.00, window=0, period=0, 1920, 1080]
08-14 19:33:34.470 i: [InteractionBehaviour] Woke up, reason: Interface visibility has been toggled..
08-14 19:33:34.484 i: [SystemUIBehaviour] Hiding the system user-interface.
08-14 19:33:34.538 i: [ASS][Renderer] Attempting to start renderer from setSurface.
08-14 19:33:34.539 w: [ASS][Renderer] Missing video size, can't start renderer yet.
08-14 19:33:34.896 i: [SystemUIBehaviour] Showing the system user-interface.
08-14 19:33:35.377 i: [DisplayBehaviour] Mode was correctly updated to 1920x1080 @ 59.9400Hz (2).
08-14 19:33:35.871 i: [ExoPlayer][EventLogger] timeline [eventTime=5.20, mediaPos=0.00, window=0, period=0, periodCount=1, windowCount=1, reason=SOURCE_UPDATE
08-14 19:33:35.872 i: [ExoPlayer][EventLogger] period [?]
08-14 19:33:35.873 i: [ExoPlayer][EventLogger] window [?, seekable=false, dynamic=false]
08-14 19:33:35.873 i: [ExoPlayer][EventLogger] ]
08-14 19:33:35.968 i: [Player][ExoPlayer] onTimelineChanged (Position: 0 ms, Duration: 0 ms)
08-14 19:33:35.997 i: [EngineEventManager] onBufferingStarted (isSeeking: false)
08-14 19:33:36.014 i: [Player][Timeline] Playback started (or buffering), scheduling updates
08-14 19:33:36.489 i: [FFmpeg] [INFO] JNI environment has been loaded successfully.
08-14 19:33:36.490 i: [FFmpeg] [INFO] Updated codec path to '/data/user/0/com.plexapp.android/Plex Media Server/Codecs/ad47460-4673-android-armv7sf/'.
08-14 19:33:36.491 i: [FFmpeg] [INFO] Initialised AV functions.
08-14 19:33:36.496 i: [FFmpegExtractor] Initialised with new output.
08-14 19:33:36.510 i: [HdmiCaps] Capabilties changed (AudioCapabilities[maxChannelCount=10, supportedEncodings=[2]])
08-14 19:33:36.510 i: [HdmiCaps] Reporting capabilities changed
08-14 19:33:36.569 i: [FFmpegExtractor] Opening demuxer.
08-14 19:33:36.575 i: [FFmpeg] [INFO] [FFmpegExtractor] Connecting to ExoPlayer with IO cache in-between.
08-14 19:33:36.575 i: [FFmpeg] [INFO] [FFmpegExtractor] Preparing context for demuxing.
08-14 19:33:36.593 i: [ThemeMusic] Fade out complete. Stopping media player.
08-14 19:33:36.689 i: [HdmiCaps] HDMI support for ac3 (Unknown) over 8 channels found.
08-14 19:33:36.715 i: [HdmiCaps] HDMI support for eac3 (Unknown) over 8 channels found.
08-14 19:33:36.716 i: [HdmiCaps] Capabilties changed (AudioCapabilities[maxChannelCount=8, supportedEncodings=[2, 4, 5, 6, 13]])
08-14 19:33:36.723 i: [HdmiCaps] Reporting capabilities changed
08-14 19:33:36.728 i: [FFmpeg] [INFO] [FFmpegExtractor] Requesting IO seek to 0 bytes.
08-14 19:33:36.742 i: [FFmpegExtractor] IO-seek has been requested, target of 0 bytes (whence 65536).
08-14 19:33:36.742 i: [FFmpegExtractor] IO-seek wanted to know the length, returning 472208107 bytes.
08-14 19:33:36.746 i: [FFmpeg] [INFO] [FFmpegExtractor] IO seek completed to 472208107 Interrupted: No Closed: No
08-14 19:33:36.749 i: [FFmpeg] [INFO] [CacheSource] Worker thread has been enabled and will start processing data.
08-14 19:33:36.778 i: [FFmpeg] [INFO] [FFmpegExtractor] Successfully opened demuxer.
08-14 19:33:36.785 i: [FFmpegExtractor] Demuxer context has been opened.
08-14 19:33:36.787 i: [FFmpegExtractor] Discovering streams on the demuxer.
08-14 19:33:36.797 i: [FFmpeg] [INFO] Input #0, matroska,webm, from '':
08-14 19:33:36.797 i: [FFmpeg] [INFO] Metadata:
08-14 19:33:36.797 i: [FFmpeg] [INFO] ENCODER :
08-14 19:33:36.798 i: [FFmpeg] [INFO] Lavf60.20.100
08-14 19:33:36.798 i: [FFmpeg] [INFO]
08-14 19:33:36.799 i: [FFmpeg] [INFO] Duration:
08-14 19:33:36.799 i: [FFmpeg] [INFO] 00:57:47.55
08-14 19:33:36.800 i: [FFmpeg] [INFO] , start:
08-14 19:33:36.802 i: [FFmpeg] [INFO] 0.000000
08-14 19:33:36.805 i: [FFmpeg] [INFO] , bitrate:
08-14 19:33:36.816 i: [FFmpeg] [INFO] 1089 kb/s
08-14 19:33:36.820 i: [FFmpeg] [INFO]
08-14 19:33:36.820 i: [FFmpeg] [INFO] Stream #0:0
08-14 19:33:36.821 i: [FFmpeg] [INFO] : Video: hevc, none(tv, bt709, progressive), 1920x1080
08-14 19:33:36.822 i: [FFmpeg] [INFO] , SAR 1:1 DAR 16:9
08-14 19:33:36.823 i: [FFmpeg] [INFO] ,
08-14 19:33:36.825 i: [FFmpeg] [INFO] 23.98 fps,
08-14 19:33:36.826 i: [FFmpeg] [INFO] 23.98 tbr,
08-14 19:33:36.826 i: [FFmpeg] [INFO] 1k tbn
08-14 19:33:36.827 i: [FFmpeg] [INFO] (default)
08-14 19:33:36.828 i: [FFmpeg] [INFO]
08-14 19:33:36.828 i: [FFmpeg] [INFO] Metadata:
08-14 19:33:36.828 i: [FFmpeg] [INFO] ENCODER :
08-14 19:33:36.829 i: [FFmpeg] [INFO] Lavc60.38.100 libx265
08-14 19:33:36.832 i: [FFmpeg] [INFO]
08-14 19:33:36.833 i: [FFmpeg] [INFO] DURATION :
08-14 19:33:36.835 i: [FFmpeg] [INFO] 00:57:47.548000000
08-14 19:33:36.836 i: [FFmpeg] [INFO]
08-14 19:33:36.837 i: [FFmpeg] [INFO] Stream #0:1
08-14 19:33:36.837 i: [FFmpeg] [INFO] (eng)
08-14 19:33:36.838 i: [FFmpeg] [INFO] : Audio: eac3, 48000 Hz, 5.1(side), s16p
08-14 19:33:36.839 i: [FFmpeg] [INFO] (default)
08-14 19:33:36.840 i: [FFmpeg] [INFO]
08-14 19:33:36.841 i: [FFmpeg] [INFO] Metadata:
08-14 19:33:36.841 i: [FFmpeg] [INFO] DURATION :
08-14 19:33:36.843 i: [FFmpeg] [INFO] 00:57:47.552000000
08-14 19:33:36.844 i: [FFmpeg] [INFO]
08-14 19:33:36.844 i: [FFmpeg] [INFO] Stream #0:2
08-14 19:33:36.845 i: [FFmpeg] [INFO] (eng)
08-14 19:33:36.845 i: [FFmpeg] [INFO] : Subtitle: ass
08-14 19:33:36.846 i: [FFmpeg] [INFO]
08-14 19:33:36.849 i: [FFmpeg] [INFO] Metadata:
08-14 19:33:36.850 i: [FFmpeg] [INFO] title :
08-14 19:33:36.850 i: [FFmpeg] [INFO] English [SDH]
08-14 19:33:36.850 i: [FFmpeg] [INFO]
08-14 19:33:36.851 i: [FFmpeg] [INFO] ENCODER :
08-14 19:33:36.852 i: [FFmpeg] [INFO] Lavc60.38.100 ssa
08-14 19:33:36.852 i: [FFmpeg] [INFO]
08-14 19:33:36.852 i: [FFmpeg] [INFO] DURATION :
08-14 19:33:36.853 i: [FFmpeg] [INFO] 00:57:11.729000000
08-14 19:33:36.855 i: [FFmpeg] [INFO]
08-14 19:33:36.856 i: [FFmpeg] [INFO] [FFmpegExtractor] Created filter for hevc.
08-14 19:33:36.893 i: [FFmpegExtractor] Container: Container[mkv] No Title - 1.1 Mbps, 57 minutes [CT: 0us, ST: 0us, SRT: -9223372036854775808us]..
08-14 19:33:36.912 i: [FFmpegExtractor] Track found: VideoStream[0-hevc] 1920x1080 [SAR 1:1, DAR 16:9]. H.265 / HEVC (High Efficiency Video Coding) - Unknown Profile (video/hevc), ~1.1 Mbps -54 seconds 23.98fps, No Title / Unknown (null), 1 / 2457 bytes, Default ..
08-14 19:33:37.070 i: [TranscodeSession] Media choice updated
08-14 19:33:37.071 i: [FFmpegExtractor] Track found: AudioStream[1-eac3] 6 channels over 1551 (5.1(side)), 48000 Hz, 0,0 padding. ATSC A/52B (AC-3, E-AC-3) - Unknown Profile (audio/eac3), ~1.1 Mbps -54 seconds 0.00fps, No Title / English (eng), 0 bytes, Default ..
08-14 19:33:37.077 i: [FFmpegExtractor] Track found: SubtitleStream[2-ass] ASS (Advanced SSA) subtitle - Unknown Profile (text/x-ssa), ~1.1 Mbps 57 minutes 0.00fps, English [SDH] / English (eng), 1 / 595 bytes, ..
08-14 19:33:37.145 i: [TranscodeSession] Pausing...
08-14 19:33:37.337 i: [LoadControl] Assumed Bitrate: 10000, Segment Count: 1171
08-14 19:33:37.340 i: [LoadControl] Ideal buffer size would be too high, reducing size from 73.19 MB to 57.56 MB.
08-14 19:33:37.341 i: [LoadControl] Setting buffer size to 57.56 MB / 436 seconds.
08-14 19:33:37.354 i: [FFmpeg] [INFO] [ASS] libass API version: 0x1600000
08-14 19:33:37.355 i: [FFmpeg] [INFO] [ASS] libass source: tarball: 0.16.0
08-14 19:33:37.356 i: [FFmpeg] [INFO] [ASS] Raster: FreeType 2.12.1
08-14 19:33:37.357 i: [FFmpeg] [INFO] [ASS] Shaper: FriBidi 1.0.12 (SIMPLE) HarfBuzz-ng 4.2.1 (COMPLEX)
08-14 19:33:37.357 i: [FFmpeg] [INFO] [ASS] Initialized
08-14 19:33:37.358 i: [FFmpeg] [INFO] [ASS][Decoder] Decoder has been initialised.
08-14 19:33:37.368 i: [ASS][Renderer] Enabled renderer.
08-14 19:33:37.473 i: [ASS][Renderer] Attempting to start renderer from onEnable.
08-14 19:33:37.474 w: [ASS][Renderer] Missing video size, can't start renderer yet.
08-14 19:33:37.474 i: [FFmpeg] [INFO] [ASS] Using font provider fontconfig
08-14 19:33:37.511 i: [ExoPlayer][EventLogger] timeline [eventTime=6.84, mediaPos=0.00, window=0, period=0, periodCount=1, windowCount=1, reason=SOURCE_UPDATE
08-14 19:33:37.517 i: [ExoPlayer][EventLogger] period [3467.55]
08-14 19:33:37.524 i: [ExoPlayer][EventLogger] window [3467.55, seekable=true, dynamic=false]
08-14 19:33:37.527 i: [ExoPlayer][EventLogger] ]
08-14 19:33:37.547 i: [Player][ExoPlayer] onTimelineChanged (Position: 0 ms, Duration: 3467552 ms)
08-14 19:33:37.618 i: [ExoPlayer][EventLogger] videoEnabled [eventTime=6.95, mediaPos=0.00, window=0, period=0]
08-14 19:33:37.676 i: [ExoPlayer][EventLogger] audioEnabled [eventTime=6.97, mediaPos=0.00, window=0, period=0]
08-14 19:33:37.677 i: [ExoPlayer][EventLogger] tracks [eventTime=6.97, mediaPos=0.00, window=0, period=0
08-14 19:33:37.677 i: [ExoPlayer][EventLogger] group [
08-14 19:33:37.678 i: [ExoPlayer][EventLogger] [X] Track:0, id=0, mimeType=video/hevc, codecs=hevc, res=1920x1080, fps=23.976025, supported=YES
08-14 19:33:37.678 i: [ExoPlayer][EventLogger] ]
08-14 19:33:37.679 i: [ExoPlayer][EventLogger] group [
08-14 19:33:37.679 i: [ExoPlayer][EventLogger] [X] Track:0, id=1, mimeType=audio/eac3, codecs=eac3, channels=6, sample_rate=48000, language=english, selectionFlags=[forced], supported=YES
08-14 19:33:37.680 i: [ExoPlayer][EventLogger] ]
08-14 19:33:37.680 i: [ExoPlayer][EventLogger] group [
08-14 19:33:37.683 i: [ExoPlayer][EventLogger] [X] Track:0, id=2, mimeType=text/x-ssa, language=en, selectionFlags=[default,forced], supported=YES
08-14 19:33:37.684 i: [ExoPlayer][EventLogger] ]
08-14 19:33:37.685 i: [ExoPlayer][EventLogger] Metadata [
08-14 19:33:37.690 i: [ExoPlayer][EventLogger] original_init_data: (Value: 0 Buffer: 2484 bytes)
08-14 19:33:37.700 i: [ExoPlayer][EventLogger] scantype_progressive: (Value: 1 Buffer: 0 bytes)
08-14 19:33:37.700 i: [MediaCodecVideoSyncRenderer] Decoder initialised, after 0 attempts.
08-14 19:33:37.711 i: [ExoPlayer][EventLogger] ]
08-14 19:33:37.712 i: [ExoPlayer][EventLogger] ]
08-14 19:33:37.713 i: [Player][ExoPlayer] Track information has been changed.
08-14 19:33:37.718 i: [Player][ExoPlayer] Setting initial track selection...
08-14 19:33:37.942 i: [TrackSelectorHelper] Initialising (Video: 1, Audio: 1, Text: 1)
08-14 19:33:38.070 i: [TrackSelectorHelper] Type: 2 Auto
08-14 19:33:38.145 i: [TrackSelectorHelper] Type: 1 Auto
08-14 19:33:38.145 i: [TrackSelectorHelper] Type: 2 Auto
08-14 19:33:38.146 i: [TrackSelectorHelper] Type: 1 Auto
08-14 19:33:38.146 i: [TrackSelectorHelper] Type: 2 Auto
08-14 19:33:38.149 i: [TrackSelectorHelper] Type: 3 Disabled
08-14 19:33:38.150 i: [TrackSelectorHelper] Type: 1 Auto
08-14 19:33:38.151 i: [TrackSelectorHelper] Type: 2 Auto
08-14 19:33:38.152 i: [TrackSelectorHelper] Type: 3 Disabled
08-14 19:33:38.153 i: [TrackSelectorHelper] Type: 1 Media Index: 1
08-14 19:33:38.160 i: [TrackSelectorHelper] Renderer: MediaCodecAudioRenderer Track: 0
08-14 19:33:38.168 i: [TrackSelectorHelper] Type: 2 Auto
08-14 19:33:38.169 i: [TrackSelectorHelper] Type: 3 Disabled
08-14 19:33:38.184 i: [TrackSelectorHelper] Override: audio/eac3 null english Indexes(0)
08-14 19:33:38.186 i: [TrackSelectorHelper] Type: 1 Media Index: 1
08-14 19:33:38.187 i: [TrackSelectorHelper] Renderer: MediaCodecAudioRenderer Track: 0
08-14 19:33:38.187 i: [TrackSelectorHelper] Type: 2 Auto
08-14 19:33:38.188 i: [TrackSelectorHelper] Type: 3 Media Index: 2
08-14 19:33:38.212 i: [TrackSelectorHelper] Renderer: Plex.Renderer.ASS Track: 0
08-14 19:33:38.220 i: [TrackSelectorHelper] Override: text/x-ssa null en Indexes(0)
08-14 19:33:38.224 i: [TrackSelectorHelper] Override: audio/eac3 null english Indexes(0)
08-14 19:33:38.352 i: [ExoPlayer][EventLogger] videoDecoderInitialized [eventTime=7.57, mediaPos=0.00, window=0, period=0, OMX.MTK.VIDEO.DECODER.HEVC]
08-14 19:33:38.366 i: [InteractionBehaviour] Slept, reason: Timeout reached.
08-14 19:33:38.383 i: [SystemUIBehaviour] Hiding the system user-interface.
08-14 19:33:38.395 i: [ExoPlayer][EventLogger] videoInputFormat [eventTime=7.72, mediaPos=0.00, window=0, period=0, id=0, mimeType=video/hevc, codecs=hevc, res=1920x1080, fps=23.976025]
08-14 19:33:38.505 i: [ExoPlayer][EventLogger] audioInputFormat [eventTime=7.80, mediaPos=0.00, window=0, period=0, id=1, mimeType=audio/eac3, codecs=eac3, channels=6, sample_rate=48000, language=english, selectionFlags=[forced]]
08-14 19:33:38.513 i: [FFmpeg] [INFO] [ASS] Event: [Script Info]
; Script generated by FFmpeg/Lavc60.38.100
ScriptType: v4.00+
PlayResX: 384
PlayResY: 288
ScaledBorderAndShadow: yes
YCbCr Matrix: None
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: Default,Arial,16,&Hffffff,&Hffffff,&H0,&H0,0,0,0,0,100,100,0,0,1,1,0,2,10,10,10,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
08-14 19:33:38.514 i: [FFmpeg] [INFO] [ASS] Style format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
08-14 19:33:38.515 i: [FFmpeg] [INFO] [ASS] [0x7cfd1c00] Style: Default,Arial,16,&Hffffff,&Hffffff,&H0,&H0,0,0,0,0,100,100,0,0,1,1,0,2,10,10,10,1
08-14 19:33:38.516 i: [FFmpeg] [INFO] [ASS] Event format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
08-14 19:33:39.059 i: [TranscodeSession] Updating session status
08-14 19:33:39.169 i: [TranscodeSession] Direct Play
08-14 19:33:39.878 i: [ExoPlayer][EventLogger] videoSize [eventTime=8.78, mediaPos=0.00, window=0, period=0, 1920, 1080]
08-14 19:33:39.932 i: [ASS][Renderer] Attempting to start renderer from setVideoSize.
08-14 19:33:40.195 i: [Player] onDisplaySizeChanged(1920x1080 at 0x0)
08-14 19:33:40.212 i: [Player][DimensionsLayout] Resizing: 1920 x 1080
08-14 19:33:40.326 i: [FFmpeg] [INFO] [ASS][Renderer] Connecting surface ...
08-14 19:33:40.389 i: [ExoPlayer][EventLogger] renderedFirstFrame [eventTime=9.69, mediaPos=0.00, window=0, period=0, Surface(name=null)/@0xb6266fa]
08-14 19:33:40.432 i: [FFmpeg] [INFO] [ASS][Renderer] EGL2 renderer created.
08-14 19:33:40.442 i: [FFmpeg] [INFO] [ASS][Decoder] Video size has been updated to 1920x1080 (1.000000).
08-14 19:33:40.446 i: [ASS][Renderer] Renderer starting.
08-14 19:33:40.458 i: [FFmpeg] [INFO] [ASS][Decoder] Frame size has been updated to 1920x1080.
08-14 19:33:42.330 i: [ExoPlayer][EventLogger] state [eventTime=11.65, mediaPos=1.90, window=0, period=0, READY]
08-14 19:33:42.363 i: [EngineEventManager] onBufferingEnded
08-14 19:33:42.438 i: [EngineEventManager] onPlaybackStarted: Delay-459485567
08-14 19:33:42.465 i: [MetricsLatencyBehaviour] Latency recorded for playback: 13507
08-14 19:33:45.044 i: [PlaybackTimeBehaviour] Initialising
08-14 19:33:45.123 i: [PlaybackTimeBehaviour] Starting stopwatch
08-14 19:33:45.150 i: [VideoAwakeBehaviour] Keep screen awake has been requested enabled for VideoAwakeBehaviour.
08-14 19:33:45.583 i: [AudioFocusBehaviour] Playback started
08-14 19:33:45.657 i: [VideoAwakeBehaviour] Keeping screen on
08-14 19:33:46.255 i: [AudioFocusBehaviour] Gained focus.
08-14 19:33:46.896 i: [TranscodeSession] Media choice updated
08-14 19:33:46.901 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: true
08-14 19:33:46.917 i: [PlayQueueBehaviour] Clearing audio PQ because video playback has started.
08-14 19:33:47.238 i: [DelayedPlayQueueBehaviour] Resolving Play Queue...
08-14 19:33:47.239 i: [DelayedRemotePlayQueue] Resolving delayed Play Queue...
08-14 19:33:47.250 i: [PlayQueueAPIHelperBase] No item path provided, will generate a new one
08-14 19:33:47.265 i: [Player][ExoPlayer] Passing subtitle offset of 0.
08-14 19:33:47.429 i: Fetching [method:POST] https://192.168.0.16:32400/playQueues?repeat=0&includeChapters=1&shuffle=0&key=%2Flibrary%2Fmetadata%2F28930&uri=server%3A%2F%2Ff543646e966bbd6bab6cf70d961468047853afe8%2Fcom.plexapp.plugins.library%2Flibrary%2Fmetadata%2F28930&type=video&includeLoudnessRamps=1&continuous=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:47.555 i: [WiFiLockBehaviour] Aquiring WiFi lock since playback was started.
08-14 19:33:48.421 i: [PlayQueueAPIHelperBase] Result container=<MediaContainer playQueueVersion="1" playQueueSelectedItemID="32763" playQueueTotalCount="5" mediaTagPrefix="/system/bundle/media/flags/" identifier="com.plexapp.plugins.library" size="5" mediaTagVersion="1720550806" playQueueSourceURI="library://x/item/%2Flibrary%2Fmetadata%2F28930" playQueueID="2468" playQueueSelectedMetadataItemID="28930" playQueueShuffled="0" playQueueSelectedItemOffset="0" />
08-14 19:33:48.493 w: [RemotePlayQueue] Couldn't find item with PQ ID=null in current window.
08-14 19:33:48.500 w: [RemotePlayQueue] Couldn't find item with PQ ID=null in current window.
08-14 19:33:48.502 i: [DelayedPlayQueueBehaviour] New Play Queue: 2468
08-14 19:33:48.624 i: [MediaSessionBehaviour] Updating state to PLAYING
08-14 19:33:48.753 i: [Player] onPlaybackStarted
08-14 19:33:49.172 i: [TranscodeSession] Media choice updated
08-14 19:33:49.180 i: [TranscodeSession] Updating session status
08-14 19:33:49.323 i: [MediaSessionBehaviour] Player seeked, updating state to PLAYING
08-14 19:33:49.404 i: [ExoPlayer][EventLogger] isPlaying [eventTime=18.55, mediaPos=8.81, window=0, period=0, true]
08-14 19:33:49.405 i: [TranscodeSession] Direct Play
08-14 19:33:49.688 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=19262&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=4314&playQueueItemID=32763&ratingKey=28930&state=playing&time=1922&timeToFirstFrame=4&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:49.883 i: [PlayQueueAPIHelperBase] Retrieving play queue (id: 2468, repeat: 0).
08-14 19:33:49.886 i: Fetching [method:GET] https://192.168.0.16:32400/playQueues/2468?center=32763&includeChapters=1&repeat=0&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:49.940 i: [PlayQueueAPIHelperBase] Result container=<MediaContainer playQueueVersion="1" playQueueSelectedItemID="32763" playQueueTotalCount="5" mediaTagPrefix="/system/bundle/media/flags/" identifier="com.plexapp.plugins.library" size="5" mediaTagVersion="1720550806" playQueueSourceURI="library://x/item/%2Flibrary%2Fmetadata%2F28930" playQueueID="2468" playQueueSelectedMetadataItemID="28930" playQueueShuffled="0" playQueueSelectedItemOffset="0" />
08-14 19:33:49.957 i: [MediaSessionBehaviour] Player seeked, updating state to PLAYING
08-14 19:33:50.899 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.901 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.902 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.903 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.904 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.905 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.906 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.906 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.907 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.908 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.909 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.911 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.924 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.925 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.925 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.955 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.956 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.956 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.957 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.962 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.963 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.963 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.964 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.964 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.965 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.965 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.966 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.966 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.967 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.967 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.967 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:50.968 w: [NanoClient] Cannot get media subscription mapping because client is null
08-14 19:33:52.574 i: [AudioFocusBehaviour] Focus lost completely, pausing
08-14 19:33:52.633 i: [PlayerUtils] Pause supported, pausing playback.
08-14 19:33:52.755 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=22.09, mediaPos=12.30, window=0, period=0, false, USER_REQUEST]
08-14 19:33:52.823 i: [EngineEventManager] onPlaybackPaused
08-14 19:33:52.995 i: [PlaybackTimeBehaviour] Pausing stopwatch
08-14 19:33:53.019 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:33:53.200 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=127413&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=7863&playQueueItemID=32763&ratingKey=28930&state=paused&time=12075&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:53.222 i: [AudioFocusBehaviour] Playback paused
08-14 19:33:53.257 i: [TranscodeSession] Pausing...
08-14 19:33:53.325 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: false
08-14 19:33:53.489 i: [VideoAwakeBehaviour] Disabling screen on
08-14 19:33:53.764 i: [WiFiLockBehaviour] Releasing WiFi lock since playback was paused.
08-14 19:33:54.572 i: [MediaSessionBehaviour] Updating state to PAUSED
08-14 19:33:55.014 i: [ExoPlayer][EventLogger] isPlaying [eventTime=24.33, mediaPos=12.30, window=0, period=0, false]
08-14 19:33:55.227 i: [ExoPlayer][EventLogger] droppedFrames [eventTime=24.52, mediaPos=12.30, window=0, period=0, 1]
08-14 19:33:56.792 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=176833&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=7906&playQueueItemID=32763&ratingKey=28930&state=paused&time=12383&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:33:58.050 i: [MediaSessionBehaviour] Player seeked, updating state to PAUSED
08-14 19:33:59.211 i: [FFmpegExtractor] IO seek point for 7383000us with 80330752 byte position.
08-14 19:33:59.854 i: [FFmpegExtractor] IO seek point for 7383000us with 81068032 byte position.
08-14 19:34:00.360 i: [FFmpegExtractor] User-seek to 7383000us, data will start from 81068032 bytes, position is 81068032 bytes.
08-14 19:34:00.365 i: [FFmpegExtractor] Applying user-seek to 7383000us.
08-14 19:34:00.483 i: [FFmpegExtractor] IO-seek has been requested, target of 472172801 bytes (whence 0).
08-14 19:34:00.500 i: [FFmpegExtractor] IO seek request to 472172801 bytes, current position 81084416 bytes.
08-14 19:34:00.517 i: [FFmpeg] [INFO] [FFmpegExtractor] User-seeking context to 7383000 us, original target was 7383000 us.
08-14 19:34:00.518 i: [FFmpeg] [INFO] [CacheSource] Source seek requested to 472172801 bytes with 0 whence.
08-14 19:34:00.518 i: [FFmpeg] [INFO] [CacheSource] Seek found to 472172801 bytes.
08-14 19:34:00.523 i: [FFmpeg] [INFO] [FFmpegExtractor] Requesting IO seek to 472172801 bytes.
08-14 19:34:00.525 i: [ExoPlayer][EventLogger] positionDiscontinuity [eventTime=29.65, mediaPos=7.38, window=0, period=0, reason=SEEK, PositionInfo:old [mediaItem=0, period=0, pos=12383], PositionInfo:new [mediaItem=0, period=0, pos=7383]]
08-14 19:34:00.683 i: [Player][ExoPlayer] onPositionDiscontinuity, Reason: 1
08-14 19:34:00.690 i: [ExoPlayer][EventLogger] state [eventTime=30.03, mediaPos=7.38, window=0, period=0, BUFFERING]
08-14 19:34:00.812 i: [FFmpegExtractor] IO-seek has been completed, target was 472172801 bytes, now at 472172801 bytes.
08-14 19:34:00.813 i: [FFmpeg] [INFO] [FFmpegExtractor] IO seek completed to 472172801 Interrupted: No Closed: No
08-14 19:34:00.814 i: [FFmpeg] [INFO] [CacheSource] Seek complete to 472172801 bytes.
08-14 19:34:00.823 i: [FFmpeg] [INFO] [CacheSource] Seek has returned with a response of 472172801.
08-14 19:34:00.823 i: [EngineEventManager] onBufferingStarted (isSeeking: true)
08-14 19:34:00.884 i: [FFmpegExtractor] Informed demuxer about the end of input at 472208107 bytes.
08-14 19:34:00.885 i: [FFmpegExtractor] Informed demuxer about the end of input at 472208107 bytes.
08-14 19:34:00.886 i: [FFmpeg] [INFO] [CacheSource] End of source has been reached at 472208107 bytes (size is 472208107 bytes).
08-14 19:34:00.888 i: [FFmpeg] [INFO] [CacheSource] Source seek requested to 44350347 bytes with 0 whence.
08-14 19:34:00.890 i: [FFmpeg] [INFO] [CacheSource] Seek found to 44350347 bytes.
08-14 19:34:00.892 i: [FFmpeg] [INFO] [FFmpegExtractor] Requesting IO seek to 44350347 bytes.
08-14 19:34:00.893 i: [FFmpegExtractor] IO-seek has been requested, target of 44350347 bytes (whence 0).
08-14 19:34:00.894 i: [FFmpegExtractor] IO seek request to 44350347 bytes, current position 472208107 bytes.
08-14 19:34:00.901 i: [FFmpegExtractor] IO-seek has been completed, target was 44350347 bytes, now at 44350347 bytes.
08-14 19:34:00.904 i: [FFmpeg] [INFO] [FFmpegExtractor] IO seek completed to 44350347 Interrupted: No Closed: No
08-14 19:34:00.906 i: [FFmpeg] [INFO] [CacheSource] Seek complete to 44350347 bytes.
08-14 19:34:00.907 i: [FFmpeg] [INFO] [CacheSource] Seek has returned with a response of 44350347.
08-14 19:34:00.908 i: [FFmpeg] [INFO] [CacheSource] Source seek requested to 3923 bytes with 0 whence.
08-14 19:34:00.909 i: [FFmpegExtractor] IO-seek has been requested, target of 3923 bytes (whence 0).
08-14 19:34:00.910 i: [FFmpegExtractor] IO seek request to 3923 bytes, current position 44358539 bytes.
08-14 19:34:00.911 i: [FFmpeg] [INFO] [CacheSource] Seek found to 3923 bytes.
08-14 19:34:00.912 i: [FFmpeg] [INFO] [FFmpegExtractor] Requesting IO seek to 3923 bytes.
08-14 19:34:00.935 i: [TranscodeSession] Media choice updated
08-14 19:34:00.936 i: [TranscodeSession] Pausing...
08-14 19:34:01.002 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=30.34, mediaPos=7.38, window=0, period=0, true, USER_REQUEST]
08-14 19:34:01.162 i: [FFmpegExtractor] IO-seek has been completed, target was 3923 bytes, now at 3923 bytes.
08-14 19:34:01.163 i: [FFmpeg] [INFO] [FFmpegExtractor] IO seek completed to 3923 Interrupted: No Closed: No
08-14 19:34:01.164 i: [FFmpeg] [INFO] [CacheSource] Seek complete to 3923 bytes.
08-14 19:34:01.164 i: [FFmpeg] [INFO] [CacheSource] Seek has returned with a response of 3923.
08-14 19:34:01.165 i: [FFmpegExtractor] Completed user-seek to 7383000us successfully.
08-14 19:34:01.757 i: [MediaSessionBehaviour] Player seeked, updating state to PAUSED
08-14 19:34:01.816 i: [FFmpegExtractor] IO seek point for 2383000us with 2109267 byte position.
08-14 19:34:01.925 i: [ExoPlayer][EventLogger] positionDiscontinuity [eventTime=31.26, mediaPos=2.38, window=0, period=0, reason=SEEK, PositionInfo:old [mediaItem=0, period=0, pos=7383], PositionInfo:new [mediaItem=0, period=0, pos=2383]]
08-14 19:34:01.935 i: [Player][ExoPlayer] onPositionDiscontinuity, Reason: 1
08-14 19:34:01.943 i: [FFmpegExtractor] IO seek point for 2383000us with 2109267 byte position.
08-14 19:34:02.059 i: [FFmpegExtractor] User-seek to 2383000us, data will start from 2109267 bytes, position is 2109267 bytes.
08-14 19:34:02.067 i: [FFmpegExtractor] Applying user-seek to 2383000us.
08-14 19:34:02.082 i: [FFmpegExtractor] Completed user-seek to 2383000us successfully.
08-14 19:34:02.108 i: [FFmpeg] [INFO] [FFmpegExtractor] User-seeking context to 2383000 us, original target was 2383000 us.
08-14 19:34:02.128 i: [FFmpeg] [INFO] [CacheSource] Seeking in the reserve to 3923 bytes, read position was 380755 bytes.
08-14 19:34:02.971 i: [ExoPlayer][EventLogger] renderedFirstFrame [eventTime=32.29, mediaPos=2.38, window=0, period=0, Surface(name=null)/@0xb6266fa]
08-14 19:34:03.384 i: [ExoPlayer][EventLogger] state [eventTime=32.72, mediaPos=2.40, window=0, period=0, READY]
08-14 19:34:03.496 i: [EngineEventManager] onBufferingEnded
08-14 19:34:03.530 i: [EngineEventManager] onPlaybackResumed
08-14 19:34:03.673 i: [PlaybackTimeBehaviour] Resuming stopwatch
08-14 19:34:03.685 i: [VideoAwakeBehaviour] Keep screen awake has been requested enabled for VideoAwakeBehaviour.
08-14 19:34:03.751 i: [AudioFocusBehaviour] Playback resumed
08-14 19:34:03.757 i: [VideoAwakeBehaviour] Keeping screen on
08-14 19:34:03.787 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=2720&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=7906&playQueueItemID=32763&ratingKey=28930&state=playing&time=2400&timeToFirstFrame=27&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:34:03.887 i: [AudioFocusBehaviour] Gained focus.
08-14 19:34:04.013 i: [TranscodeSession] Media choice updated
08-14 19:34:04.016 i: [TranscodeSession] Resuming...
08-14 19:34:04.018 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: true
08-14 19:34:04.021 i: [PlayQueueBehaviour] Clearing audio PQ because video playback has started.
08-14 19:34:04.039 i: [Player][ExoPlayer] Passing subtitle offset of 0.
08-14 19:34:04.090 i: [WiFiLockBehaviour] Aquiring WiFi lock since playback was resumed.
08-14 19:34:04.976 i: [MediaSessionBehaviour] Updating state to PLAYING
08-14 19:34:06.253 i: [ExoPlayer][EventLogger] isPlaying [eventTime=35.56, mediaPos=4.88, window=0, period=0, true]
08-14 19:34:07.669 w: [Player][Timeline] Ignoring timeline update, as less than 8 seconds has passed since last update without any state change.
08-14 19:34:11.294 i: [MediaSessionBehaviour] Player seeked, updating state to PLAYING
08-14 19:34:11.527 i: [FFmpegExtractor] IO seek point for 22621000us with 44756819 byte position.
08-14 19:34:11.830 i: [ExoPlayer][EventLogger] positionDiscontinuity [eventTime=41.04, mediaPos=22.62, window=0, period=0, reason=SEEK, PositionInfo:old [mediaItem=0, period=0, pos=10168], PositionInfo:new [mediaItem=0, period=0, pos=22621]]
08-14 19:34:11.872 i: [Player][ExoPlayer] onPositionDiscontinuity, Reason: 1
08-14 19:34:12.205 i: [ExoPlayer][EventLogger] state [eventTime=41.24, mediaPos=22.62, window=0, period=0, BUFFERING]
08-14 19:34:12.250 i: [EngineEventManager] onBufferingStarted (isSeeking: true)
08-14 19:34:12.391 i: [TranscodeSession] Media choice updated
08-14 19:34:12.412 i: [TranscodeSession] Pausing...
08-14 19:34:12.512 i: [ExoPlayer][EventLogger] isPlaying [eventTime=41.84, mediaPos=22.62, window=0, period=0, false]
08-14 19:34:12.592 i: [ExoPlayer][EventLogger] droppedFrames [eventTime=41.84, mediaPos=22.62, window=0, period=0, 1]
08-14 19:34:12.595 i: [ExoPlayer][EventLogger] renderedFirstFrame [eventTime=41.93, mediaPos=22.62, window=0, period=0, Surface(name=null)/@0xb6266fa]
08-14 19:34:13.074 i: [ExoPlayer][EventLogger] state [eventTime=41.99, mediaPos=23.05, window=0, period=0, READY]
08-14 19:34:13.170 i: [EngineEventManager] onBufferingEnded
08-14 19:34:13.178 i: [EngineEventManager] onPlaybackResumed
08-14 19:34:13.245 i: [PlaybackTimeBehaviour] Resuming stopwatch
08-14 19:34:13.247 i: [VideoAwakeBehaviour] Keep screen awake has been requested enabled for VideoAwakeBehaviour.
08-14 19:34:13.292 i: [AudioFocusBehaviour] Playback resumed
08-14 19:34:13.316 i: [TranscodeSession] Media choice updated
08-14 19:34:13.327 i: [TranscodeSession] Resuming...
08-14 19:34:13.330 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: true
08-14 19:34:13.357 i: [Player][ExoPlayer] Passing subtitle offset of 0.
08-14 19:34:13.366 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=44792&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=17459&playQueueItemID=32763&ratingKey=28930&state=playing&time=23464&timeToFirstFrame=36&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:34:13.488 i: [WiFiLockBehaviour] Aquiring WiFi lock since playback was resumed.
08-14 19:34:14.194 i: [MediaSessionBehaviour] Updating state to PLAYING
08-14 19:34:14.354 i: [ExoPlayer][EventLogger] isPlaying [eventTime=43.69, mediaPos=24.74, window=0, period=0, true]
08-14 19:34:17.466 i: [FFmpeg] [INFO] [ASS] fontselect: (Arial, 400, 0) -> /system/fonts/DroidSans.ttf, 0, Roboto-Regular
08-14 19:34:17.480 i: [FFmpeg] [INFO] [ASS] fontselect: (Arial, 400, 100) -> /system/fonts/Roboto-Italic.ttf, 0, Roboto-Italic
08-14 19:34:17.940 w: [Player][Timeline] Ignoring timeline update, as less than 8 seconds has passed since last update without any state change.
08-14 19:34:28.089 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=288110&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=32276&playQueueItemID=32763&ratingKey=28930&state=playing&time=38290&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:34:38.236 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=284361&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=42313&playQueueItemID=32763&ratingKey=28930&state=playing&time=48375&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:34:48.125 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=287625&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=52340&playQueueItemID=32763&ratingKey=28930&state=playing&time=58455&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:34:58.118 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=285967&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=62343&playQueueItemID=32763&ratingKey=28930&state=playing&time=68305&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:00.868 i: [AudioFocusBehaviour] Focus lost completely, pausing
08-14 19:35:00.932 i: [PlayerUtils] Pause supported, pausing playback.
08-14 19:35:01.026 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=90.36, mediaPos=71.38, window=0, period=0, false, USER_REQUEST]
08-14 19:35:01.072 i: [EngineEventManager] onPlaybackPaused
08-14 19:35:01.093 i: [PlaybackTimeBehaviour] Pausing stopwatch
08-14 19:35:01.110 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=282945&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=65309&playQueueItemID=32763&ratingKey=28930&state=paused&time=71327&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:01.118 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:35:01.153 i: [AudioFocusBehaviour] Playback paused
08-14 19:35:01.178 i: [TranscodeSession] Pausing...
08-14 19:35:01.179 i: [VideoAwakeBehaviour] Disabling screen on
08-14 19:35:01.207 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: false
08-14 19:35:01.336 i: [WiFiLockBehaviour] Releasing WiFi lock since playback was paused.
08-14 19:35:01.751 i: [MediaSessionBehaviour] Updating state to PAUSED
08-14 19:35:01.853 i: [ExoPlayer][EventLogger] isPlaying [eventTime=91.18, mediaPos=71.38, window=0, period=0, false]
08-14 19:35:05.325 i: [MediaSessionBehaviour] Player seeked, updating state to PAUSED
08-14 19:35:05.369 i: [FFmpegExtractor] IO seek point for 66411000us with 106901331 byte position.
08-14 19:35:05.386 i: [ExoPlayer][EventLogger] positionDiscontinuity [eventTime=94.72, mediaPos=66.41, window=0, period=0, reason=SEEK, PositionInfo:old [mediaItem=0, period=0, pos=71411], PositionInfo:new [mediaItem=0, period=0, pos=66411]]
08-14 19:35:05.409 i: [Player][ExoPlayer] onPositionDiscontinuity, Reason: 1
08-14 19:35:05.410 i: [ExoPlayer][EventLogger] state [eventTime=94.75, mediaPos=66.41, window=0, period=0, BUFFERING]
08-14 19:35:05.478 i: [EngineEventManager] onBufferingStarted (isSeeking: true)
08-14 19:35:05.480 i: [TranscodeSession] Media choice updated
08-14 19:35:05.480 i: [TranscodeSession] Pausing...
08-14 19:35:05.481 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=94.81, mediaPos=66.41, window=0, period=0, true, USER_REQUEST]
08-14 19:35:05.541 i: [FFmpegExtractor] IO seek point for 66411000us with 106901331 byte position.
08-14 19:35:05.709 i: [FFmpegExtractor] User-seek to 66411000us, data will start from 106901331 bytes, position is 106901331 bytes.
08-14 19:35:05.709 i: [FFmpegExtractor] Applying user-seek to 66411000us.
08-14 19:35:05.784 i: [FFmpeg] [INFO] [FFmpegExtractor] User-seeking context to 66411000 us, original target was 66411000 us.
08-14 19:35:05.785 i: [FFmpeg] [INFO] [CacheSource] Source seek requested to 9079327 bytes with 0 whence.
08-14 19:35:05.788 i: [FFmpeg] [INFO] [CacheSource] Seek found to 9079327 bytes.
08-14 19:35:05.789 i: [FFmpegExtractor] IO-seek has been requested, target of 9079327 bytes (whence 0).
08-14 19:35:05.790 i: [FFmpeg] [INFO] [FFmpegExtractor] Requesting IO seek to 9079327 bytes.
08-14 19:35:05.800 i: [FFmpegExtractor] IO seek request to 9079327 bytes, current position 106901331 bytes.
08-14 19:35:06.029 i: [FFmpegExtractor] IO-seek has been completed, target was 9079327 bytes, now at 9079327 bytes.
08-14 19:35:06.030 i: [FFmpeg] [INFO] [FFmpegExtractor] IO seek completed to 9079327 Interrupted: No Closed: No
08-14 19:35:06.044 i: [FFmpegExtractor] Completed user-seek to 66411000us successfully.
08-14 19:35:06.045 i: [FFmpeg] [INFO] [CacheSource] Seek complete to 9079327 bytes.
08-14 19:35:06.045 i: [FFmpeg] [INFO] [CacheSource] Seek has returned with a response of 9079327.
08-14 19:35:06.224 w: [ASS][Renderer] Decoding is behind at 1000063197000us whilst position is at 1000066411000us (3214000us).
08-14 19:35:06.413 w: [ASS][Renderer] Decoding is behind at 1000064365000us whilst position is at 1000066411000us (2046000us).
08-14 19:35:06.535 w: [ASS][Renderer] Decoding is behind at 1000065533000us whilst position is at 1000066411000us (878000us).
08-14 19:35:06.865 i: [ExoPlayer][EventLogger] renderedFirstFrame [eventTime=96.19, mediaPos=66.41, window=0, period=0, Surface(name=null)/@0xb6266fa]
08-14 19:35:07.133 i: [ExoPlayer][EventLogger] state [eventTime=96.43, mediaPos=66.43, window=0, period=0, READY]
08-14 19:35:07.133 i: [EngineEventManager] onBufferingEnded
08-14 19:35:07.149 i: [EngineEventManager] onPlaybackResumed
08-14 19:35:07.278 i: [PlaybackTimeBehaviour] Resuming stopwatch
08-14 19:35:07.283 i: [VideoAwakeBehaviour] Keep screen awake has been requested enabled for VideoAwakeBehaviour.
08-14 19:35:07.289 i: [AudioFocusBehaviour] Playback resumed
08-14 19:35:07.328 i: [VideoAwakeBehaviour] Keeping screen on
08-14 19:35:07.387 i: [AudioFocusBehaviour] Gained focus.
08-14 19:35:07.398 i: [TranscodeSession] Media choice updated
08-14 19:35:07.398 i: [TranscodeSession] Resuming...
08-14 19:35:07.401 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=3168&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=65336&playQueueItemID=32763&ratingKey=28930&state=playing&time=66432&timeToFirstFrame=90&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:07.421 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: true
08-14 19:35:07.426 i: [PlayQueueBehaviour] Clearing audio PQ because video playback has started.
08-14 19:35:07.451 i: [Player][ExoPlayer] Passing subtitle offset of 0.
08-14 19:35:07.523 i: [WiFiLockBehaviour] Aquiring WiFi lock since playback was resumed.
08-14 19:35:07.967 i: [MediaSessionBehaviour] Updating state to PLAYING
08-14 19:35:08.143 w: [Player][Timeline] Ignoring timeline update, as less than 8 seconds has passed since last update without any state change.
08-14 19:35:08.144 i: [ExoPlayer][EventLogger] isPlaying [eventTime=97.48, mediaPos=67.20, window=0, period=0, true]
08-14 19:35:16.378 i: [AudioFocusBehaviour] Focus lost completely, pausing
08-14 19:35:16.418 i: [PlayerUtils] Pause supported, pausing playback.
08-14 19:35:16.508 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=105.84, mediaPos=75.50, window=0, period=0, false, USER_REQUEST]
08-14 19:35:16.560 i: [EngineEventManager] onPlaybackPaused
08-14 19:35:16.731 i: [PlaybackTimeBehaviour] Pausing stopwatch
08-14 19:35:16.770 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:35:16.799 i: [AudioFocusBehaviour] Playback paused
08-14 19:35:16.804 i: [TranscodeSession] Pausing...
08-14 19:35:16.814 i: [VideoAwakeBehaviour] Disabling screen on
08-14 19:35:16.843 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: false
08-14 19:35:17.133 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=109675&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=74685&playQueueItemID=32763&ratingKey=28930&state=paused&time=75413&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:17.163 i: [WiFiLockBehaviour] Releasing WiFi lock since playback was paused.
08-14 19:35:17.808 i: [MediaSessionBehaviour] Updating state to PAUSED
08-14 19:35:17.904 i: [ExoPlayer][EventLogger] isPlaying [eventTime=107.23, mediaPos=75.50, window=0, period=0, false]
08-14 19:35:18.229 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=124146&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=74820&playQueueItemID=32763&ratingKey=28930&state=paused&time=75534&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:25.671 i: [MediaSessionBehaviour] Player seeked, updating state to PAUSED
08-14 19:35:25.707 i: [FFmpegExtractor] IO seek point for 70534000us with 108341791 byte position.
08-14 19:35:25.709 i: [ExoPlayer][EventLogger] positionDiscontinuity [eventTime=115.04, mediaPos=70.53, window=0, period=0, reason=SEEK, PositionInfo:old [mediaItem=0, period=0, pos=75534], PositionInfo:new [mediaItem=0, period=0, pos=70534]]
08-14 19:35:25.715 i: [Player][ExoPlayer] onPositionDiscontinuity, Reason: 1
08-14 19:35:25.723 i: [ExoPlayer][EventLogger] state [eventTime=115.05, mediaPos=70.53, window=0, period=0, BUFFERING]
08-14 19:35:25.738 i: [EngineEventManager] onBufferingStarted (isSeeking: true)
08-14 19:35:25.809 i: [TranscodeSession] Media choice updated
08-14 19:35:25.810 i: [TranscodeSession] Pausing...
08-14 19:35:25.844 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=115.18, mediaPos=70.53, window=0, period=0, true, USER_REQUEST]
08-14 19:35:25.853 i: [FFmpegExtractor] IO seek point for 70534000us with 108341791 byte position.
08-14 19:35:25.919 i: [FFmpegExtractor] User-seek to 70534000us, data will start from 108341791 bytes, position is 108341791 bytes.
08-14 19:35:25.921 i: [FFmpegExtractor] Applying user-seek to 70534000us.
08-14 19:35:25.932 i: [FFmpegExtractor] IO-seek has been requested, target of 9079327 bytes (whence 0).
08-14 19:35:25.936 i: [FFmpegExtractor] IO seek request to 9079327 bytes, current position 108341791 bytes.
08-14 19:35:25.950 i: [FFmpeg] [INFO] [FFmpegExtractor] User-seeking context to 70534000 us, original target was 70534000 us.
08-14 19:35:25.952 i: [FFmpeg] [INFO] [CacheSource] Source seek requested to 9079327 bytes with 0 whence.
08-14 19:35:25.953 i: [FFmpeg] [INFO] [CacheSource] Seek found to 9079327 bytes.
08-14 19:35:25.954 i: [FFmpeg] [INFO] [FFmpegExtractor] Requesting IO seek to 9079327 bytes.
08-14 19:35:26.184 i: [FFmpegExtractor] IO-seek has been completed, target was 9079327 bytes, now at 9079327 bytes.
08-14 19:35:26.185 i: [FFmpegExtractor] Completed user-seek to 70534000us successfully.
08-14 19:35:26.186 i: [FFmpeg] [INFO] [FFmpegExtractor] IO seek completed to 9079327 Interrupted: No Closed: No
08-14 19:35:26.187 i: [FFmpeg] [INFO] [CacheSource] Seek complete to 9079327 bytes.
08-14 19:35:26.188 i: [FFmpeg] [INFO] [CacheSource] Seek has returned with a response of 9079327.
08-14 19:35:26.279 w: [ASS][Renderer] Decoding is behind at 1000063197000us whilst position is at 1000070534000us (7337000us).
08-14 19:35:26.432 w: [ASS][Renderer] Decoding is behind at 1000064365000us whilst position is at 1000070534000us (6169000us).
08-14 19:35:26.652 w: [ASS][Renderer] Decoding is behind at 1000065533000us whilst position is at 1000070534000us (5001000us).
08-14 19:35:26.797 w: [ASS][Renderer] Decoding is behind at 1000066734000us whilst position is at 1000070534000us (3800000us).
08-14 19:35:26.989 w: [ASS][Renderer] Decoding is behind at 1000068169000us whilst position is at 1000070534000us (2365000us).
08-14 19:35:27.185 w: [ASS][Renderer] Decoding is behind at 1000069837000us whilst position is at 1000070534000us (697000us).
08-14 19:35:27.690 i: [ExoPlayer][EventLogger] renderedFirstFrame [eventTime=117.01, mediaPos=70.53, window=0, period=0, Surface(name=null)/@0xb6266fa]
08-14 19:35:27.820 i: [ExoPlayer][EventLogger] state [eventTime=117.15, mediaPos=70.56, window=0, period=0, READY]
08-14 19:35:27.823 i: [EngineEventManager] onBufferingEnded
08-14 19:35:27.827 i: [EngineEventManager] onPlaybackResumed
08-14 19:35:27.891 i: [PlaybackTimeBehaviour] Resuming stopwatch
08-14 19:35:27.904 i: [VideoAwakeBehaviour] Keep screen awake has been requested enabled for VideoAwakeBehaviour.
08-14 19:35:27.931 i: [AudioFocusBehaviour] Playback resumed
08-14 19:35:27.945 i: [VideoAwakeBehaviour] Keeping screen on
08-14 19:35:28.013 i: [AudioFocusBehaviour] Gained focus.
08-14 19:35:28.072 i: [TranscodeSession] Media choice updated
08-14 19:35:28.078 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=3360&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=74820&playQueueItemID=32763&ratingKey=28930&state=playing&time=70560&timeToFirstFrame=111&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:28.085 i: [TranscodeSession] Resuming...
08-14 19:35:28.094 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: true
08-14 19:35:28.098 i: [PlayQueueBehaviour] Clearing audio PQ because video playback has started.
08-14 19:35:28.107 i: [Player][ExoPlayer] Passing subtitle offset of 0.
08-14 19:35:28.179 i: [WiFiLockBehaviour] Aquiring WiFi lock since playback was resumed.
08-14 19:35:28.216 w: [Player][Timeline] Ignoring timeline update, as less than 8 seconds has passed since last update without any state change.
08-14 19:35:28.335 i: [MediaSessionBehaviour] Updating state to PLAYING
08-14 19:35:28.461 i: [ExoPlayer][EventLogger] isPlaying [eventTime=117.79, mediaPos=70.91, window=0, period=0, true]
08-14 19:35:34.023 i: [ExoPlayer][EventLogger] playWhenReady [eventTime=123.35, mediaPos=76.33, window=0, period=0, false, USER_REQUEST]
08-14 19:35:34.087 i: [EngineEventManager] onPlaybackPaused
08-14 19:35:34.188 i: [PlaybackTimeBehaviour] Pausing stopwatch
08-14 19:35:34.204 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:35:34.209 i: [AudioFocusBehaviour] Playback paused
08-14 19:35:34.224 i: [VideoAwakeBehaviour] Disabling screen on
08-14 19:35:34.328 i: [AudioFocusBehaviour] Given up focus.
08-14 19:35:34.333 i: [TranscodeSession] Pausing...
08-14 19:35:34.340 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: false
08-14 19:35:34.472 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=44616&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=81086&playQueueItemID=32763&ratingKey=28930&state=paused&time=76248&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:34.473 i: [WiFiLockBehaviour] Releasing WiFi lock since playback was paused.
08-14 19:35:34.587 i: [Player] Engine being destroyed due to player deconstruction.
08-14 19:35:34.675 i: [EngineEventManager] onPlaybackStopped: Closed
08-14 19:35:34.681 i: [Player][Timeline] Playback stopped (error: false)
08-14 19:35:34.697 i: [BufferingMetrics] {bufferingCount=5, bufferingDuration=12792, auto=true, bufferingDurationUnit=ms, numSeeks=4, bufferDurationFromSeeks=7}
08-14 19:35:34.830 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:35:34.833 i: Fetching [method:GET] https://192.168.0.16:32400/:/timeline?audioStreamID=114402&bufferedTime=44616&duration=3467552&guid=plex%3A%2F%2Fepisode%2F66377641cafd6d1e64e25cf7&key=%2Flibrary%2Fmetadata%2F28930&playbackTime=81132&playQueueItemID=32763&ratingKey=28930&state=stopped&time=76248&token=...PFbx&X-Plex-Client-Identifier=df8a5315490212a-com-plexapp-android&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:34.838 i: [TranscodeSession] Stopping...
08-14 19:35:34.838 i: [TranscodeSession] Session already stopped.
08-14 19:35:34.839 i: [PlayQueueProgressBehaviour] Updating PlayQueueManager state, isPlaying: false
08-14 19:35:34.839 i: [SleepTimerBehaviour] Sleep timer behaviour changed.
08-14 19:35:34.842 i: [WiFiLockBehaviour] Releasing WiFi lock since playback was stopped.
08-14 19:35:34.913 i: [MediaSessionBehaviour] Updating state to PAUSED
08-14 19:35:34.988 i: [MediaSessionBehaviour] Updating state to STOPPED
08-14 19:35:35.030 i: [Player] Starting to clear huds on player destroy. Activity finishing: false, should finish activity: true
08-14 19:35:35.063 i: [MemoryOptimisationBehaviour] Expanding memory cache.
08-14 19:35:35.096 i: [PreplayViewModel] Refreshing metadata for Season 2
08-14 19:35:35.107 i: [VideoAwakeBehaviour] Keep screen awake has been requested disabled for VideoAwakeBehaviour.
08-14 19:35:35.109 i: [AudioFocusBehaviour] Behaviour being destroyed, giving up audio focus
08-14 19:35:35.329 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=playlists&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.332 i: Fetching [method:GET] https://discover.provider.plex.tv/hubs/promoted?contentDirectoryID=watchlist&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=watchlist%2Chome&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.340 i: Fetching [method:GET] https://vod.provider.plex.tv/hubs/continueWatching?contentDirectoryID=movies&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.342 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=1&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.343 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=4&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.344 i: Fetching [method:GET] https://discover.provider.plex.tv/hubs/promoted?contentDirectoryID=home&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=watchlist%2Chome&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.345 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/promoted?contentDirectoryID=9&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=1%2C4%2C9%2Cplaylists&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.349 i: Fetching [method:GET] https://192.168.0.16:32400/hubs/continueWatching?contentDirectoryID=1%2C4%2C9%2Cplaylists&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.354 i: Fetching [method:GET] https://vod.provider.plex.tv/hubs/promoted?contentDirectoryID=movies&count=25&excludeContinueWatching=1&includeDetails=1&includeExternalMetadata=1&includeLibraryPlaylists=1&includeMeta=1&includeRecentChannels=1&includeStations=1&includeTypeFirst=1&libraryHubsOnly=1&pinnedContentDirectoryID=movies&X-Plex-Token=...PFbx&X-Plex-Language=en-us
08-14 19:35:35.443 i: [DisplayBehaviour] Reverting back to the original display mode.
08-14 19:35:35.508 i: [ExoPlayer][EventLogger] isPlaying [eventTime=124.70, mediaPos=76.33, window=0, period=0, false]
08-14 19:35:35.565 i: [ExoPlayerEngine] Releasing media source due to engine destruction.
08-14 19:35:35.572 i: [MediaSessionBehaviour] Releasing MediaSessionHelper
08-14 19:35:35.595 i: [ExoPlayer][EventLogger] state [eventTime=124.91, mediaPos=76.37, window=0, period=0, IDLE]
08-14 19:35:35.596 i: [MediaSessionHelper] Releasing media session with tag: video
08-14 19:35:35.968 i: [ASS][Renderer] Renderer thread being stopped due to renderer disabled.
08-14 19:35:35.969 i: [ExoPlayer][ExoPlayerImpl] Release 54e8bfb [AndroidXMedia3/1.1.0] [mantis, AFTMM, Amazon, 25] [media3.common, media3.exoplayer, media3.decoder, media3.datasource, media3.extractor]
08-14 19:35:36.183 i: [FFmpeg] [INFO] [ASS][Renderer] Clearing surface.
08-14 19:35:36.243 i: [FFmpeg] [INFO] [ASS][Renderer] Renderer has been released.
08-14 19:35:36.245 i: [ASS][Renderer] Renderer thread has terminated.
08-14 19:35:36.246 i: [ASS][Renderer] Renderer stopped successfully.
08-14 19:35:36.249 i: [FFmpeg] [INFO] [ASS][Decoder] Releasing decoder.
08-14 19:35:36.310 i: [FFmpeg] [INFO] [ASS][Decoder] Released decoder successfully.
08-14 19:35:36.311 i: [ASS][Renderer] Disabled renderer.
08-14 19:35:36.525 i: [LoadControl] Setting buffer size to 57.56 MB / 0 seconds.
08-14 19:35:36.549 i: [LoadControl] Setting buffer size to 57.56 MB / 0 seconds.
08-14 19:35:36.560 i: [ExoPlayer][EventLogger] videoDisabled [eventTime=125.89, mediaPos=76.37, window=0, period=0]
08-14 19:35:36.562 i: [ExoPlayer][EventLogger] audioDisabled [eventTime=125.90, mediaPos=76.37, window=0, period=0]
08-14 19:35:36.577 i: [PlayerService] Terminating service from stop request.