forked from kdschlosser/samsungctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upnp_methods.txt
3581 lines (2999 loc) · 125 KB
/
upnp_methods.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
UA32M4100
IP Address: 192.168.2.33
==============================================
Services:
Service name: ScreenSharingService
Service class: urn:samsung.com:service:ScreenSharingService:1
Access point: UPNPObject.ScreenSharingService
----------------------------------------------
Methods:
None
Service name: ConnectionManager
Service class: urn:schemas-upnp-org:service:ConnectionManager:1
Access point: UPNPObject.ConnectionManager
----------------------------------------------
Methods:
None
Service name: RenderingControl
Service class: urn:schemas-upnp-org:service:RenderingControl:1
Access point: UPNPObject.RenderingControl
----------------------------------------------
Methods:
None
Service name: AVTransport
Service class: urn:schemas-upnp-org:service:AVTransport:1
Access point: UPNPObject.AVTransport
----------------------------------------------
Methods:
None
Service name: TestRCRService
Service class: urn:samsung.com:service:TestRCRService:1
Access point: UPNPObject.TestRCRService
----------------------------------------------
Methods:
None
Devices: None
UA55MU6100
IP Address: 192.168.2.32
==============================================
Services:
Service name: MultiScreenService
Service class: urn:samsung.com:service:MultiScreenService:1
Access point: UPNPObject.MultiScreenService
----------------------------------------------
Methods:
Method name: SendKeyCode
Access point: UPNPObject.MultiScreenService.SendKeyCode
Call: UPNPObject.MultiScreenService.SendKeyCode(KeyCode, KeyDescription)
----------------------------------------------
Parameters:
Name: KeyCode
UPNP data type: A_ARG_TYPE_KeyCode
Py data type: unsigned 32bit int
Name: KeyDescription
UPNP data type: A_ARG_TYPE_KeyDescription
Py data type: str, bytes
Return Values: None
Service name: RenderingControl
Service class: urn:schemas-upnp-org:service:RenderingControl:1
Access point: UPNPObject.RenderingControl
----------------------------------------------
Methods:
Method name: X_UpdateAudioSelection
Access point: UPNPObject.RenderingControl.X_UpdateAudioSelection
Call: UPNPObject.RenderingControl.X_UpdateAudioSelection(InstanceID, AudioPID, AudioEncoding)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: AudioPID
UPNP data type: X_AudioPID
Py data type: unsigned 16bit int
Default: 0
Minimum: 0
Maximum: 65535
Step: 1
Name: AudioEncoding
UPNP data type: X_AudioEncoding
Py data type: str, bytes
Return Values: None
Method name: X_SetAspectRatio
Access point: UPNPObject.RenderingControl.X_SetAspectRatio
Call: UPNPObject.RenderingControl.X_SetAspectRatio(InstanceID, AspectRatio)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: AspectRatio
UPNP data type: X_AspectRatio
Py data type: str, bytes
Default: Default
Allowed values:
Default
FitScreen
Return Values: None
Method name: SelectPreset
Access point: UPNPObject.RenderingControl.SelectPreset
Call: UPNPObject.RenderingControl.SelectPreset(InstanceID, PresetName)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: PresetName
UPNP data type: A_ARG_TYPE_PresetName
Py data type: str, bytes
Allowed values:
FactoryDefaults
Return Values: None
Method name: X_GetTVSlideShow
Access point: UPNPObject.RenderingControl.X_GetTVSlideShow
Call: CurrentShowState, CurrentThemeId, TotalThemeNumber = UPNPObject.RenderingControl.X_GetTVSlideShow(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: CurrentShowState
UPNP data type: A_ARG_TYPE_SlideShowState
Py data type: bool
Possible returned values: True/False
Name: CurrentThemeId
UPNP data type: A_ARG_TYPE_ThemeId
Py data type: unsigned 32bit int
Name: TotalThemeNumber
UPNP data type: A_ARG_TYPE_TotalThemeNumber
Py data type: unsigned 32bit int
Method name: X_Origin360View
Access point: UPNPObject.RenderingControl.X_Origin360View
Call: UPNPObject.RenderingControl.X_Origin360View(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values: None
Method name: X_Zoom360View
Access point: UPNPObject.RenderingControl.X_Zoom360View
Call: UPNPObject.RenderingControl.X_Zoom360View(InstanceID, ScaleFactorOffset)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: ScaleFactorOffset
UPNP data type: X_ARG_TYPE_ScaleFactorOffset
Py data type: float
Default: 1.0
Return Values: None
Method name: SetVolume
Access point: UPNPObject.RenderingControl.SetVolume
Call: UPNPObject.RenderingControl.SetVolume(InstanceID, Channel, DesiredVolume)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Channel
UPNP data type: A_ARG_TYPE_Channel
Py data type: str, bytes
Allowed values:
Master
Name: DesiredVolume
UPNP data type: Volume
Py data type: unsigned 16bit int
Minimum: 0
Maximum: 100
Step: 1
Return Values: None
Method name: X_ControlCaption
Access point: UPNPObject.RenderingControl.X_ControlCaption
Call: UPNPObject.RenderingControl.X_ControlCaption(InstanceID, Operation, Name, ResourceURI, CaptionURI, CaptionType, Language, Encoding)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Operation
UPNP data type: X_ARG_TYPE_CaptionOperation
Py data type: str, bytes
Allowed values:
Enable
Disable
Name: Name
UPNP data type: X_ARG_TYPE_CaptionName
Py data type: str, bytes
Name: ResourceURI
UPNP data type: X_ARG_TYPE_ResourceURI
Py data type: str, bytes
Name: CaptionURI
UPNP data type: X_ARG_TYPE_CaptionURI
Py data type: str, bytes
Name: CaptionType
UPNP data type: X_ARG_TYPE_CaptionType
Py data type: str, bytes
Name: Language
UPNP data type: X_ARG_TYPE_Language
Py data type: str, bytes
Name: Encoding
UPNP data type: X_ARG_TYPE_Encoding
Py data type: str, bytes
Return Values: None
Method name: X_Move360View
Access point: UPNPObject.RenderingControl.X_Move360View
Call: UPNPObject.RenderingControl.X_Move360View(InstanceID, LatitudeOffset, LongitudeOffset)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: LatitudeOffset
UPNP data type: X_ARG_TYPE_ArcDegreeOffset
Py data type: float
Default: 0.0
Name: LongitudeOffset
UPNP data type: X_ARG_TYPE_ArcDegreeOffset
Py data type: float
Default: 0.0
Return Values: None
Method name: X_UpdateVideoSelection
Access point: UPNPObject.RenderingControl.X_UpdateVideoSelection
Call: UPNPObject.RenderingControl.X_UpdateVideoSelection(InstanceID, VideoPID, VideoEncoding)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: VideoPID
UPNP data type: X_VideoPID
Py data type: unsigned 16bit int
Default: 0
Minimum: 0
Maximum: 65535
Step: 1
Name: VideoEncoding
UPNP data type: X_VideoEncoding
Py data type: str, bytes
Return Values: None
Method name: X_SetZoom
Access point: UPNPObject.RenderingControl.X_SetZoom
Call: UPNPObject.RenderingControl.X_SetZoom(InstanceID, x, y, w, h)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: x
UPNP data type: A_ARG_TYPE_Coordinate
Py data type: unsigned 32bit int
Name: y
UPNP data type: A_ARG_TYPE_Coordinate
Py data type: unsigned 32bit int
Name: w
UPNP data type: A_ARG_TYPE_Coordinate
Py data type: unsigned 32bit int
Name: h
UPNP data type: A_ARG_TYPE_Coordinate
Py data type: unsigned 32bit int
Return Values: None
Method name: X_GetAspectRatio
Access point: UPNPObject.RenderingControl.X_GetAspectRatio
Call: AspectRatio = UPNPObject.RenderingControl.X_GetAspectRatio(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: AspectRatio
UPNP data type: X_AspectRatio
Py data type: str, bytes
Default: Default
Possible returned values:
Default
FitScreen
Method name: GetVolume
Access point: UPNPObject.RenderingControl.GetVolume
Call: CurrentVolume = UPNPObject.RenderingControl.GetVolume(InstanceID, Channel)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Channel
UPNP data type: A_ARG_TYPE_Channel
Py data type: str, bytes
Allowed values:
Master
Return Values:
Name: CurrentVolume
UPNP data type: Volume
Py data type: unsigned 16bit int
Minimum: 0
Maximum: 100
Step: 1
Method name: X_GetVideoSelection
Access point: UPNPObject.RenderingControl.X_GetVideoSelection
Call: VideoPID, VideoEncoding = UPNPObject.RenderingControl.X_GetVideoSelection(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: VideoPID
UPNP data type: X_VideoPID
Py data type: unsigned 16bit int
Default: 0
Minimum: 0
Maximum: 65535
Step: 1
Name: VideoEncoding
UPNP data type: X_VideoEncoding
Py data type: str, bytes
Method name: X_GetAudioSelection
Access point: UPNPObject.RenderingControl.X_GetAudioSelection
Call: AudioPID, AudioEncoding = UPNPObject.RenderingControl.X_GetAudioSelection(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: AudioPID
UPNP data type: X_AudioPID
Py data type: unsigned 16bit int
Default: 0
Minimum: 0
Maximum: 65535
Step: 1
Name: AudioEncoding
UPNP data type: X_AudioEncoding
Py data type: str, bytes
Method name: X_GetCaptionState
Access point: UPNPObject.RenderingControl.X_GetCaptionState
Call: Captions, EnabledCaptions = UPNPObject.RenderingControl.X_GetCaptionState(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: Captions
UPNP data type: X_Captions
Py data type: str, bytes
Name: EnabledCaptions
UPNP data type: X_EnabledCaptions
Py data type: str, bytes
Method name: GetMute
Access point: UPNPObject.RenderingControl.GetMute
Call: CurrentMute = UPNPObject.RenderingControl.GetMute(InstanceID, Channel)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Channel
UPNP data type: A_ARG_TYPE_Channel
Py data type: str, bytes
Allowed values:
Master
Return Values:
Name: CurrentMute
UPNP data type: Mute
Py data type: bool
Possible returned values: True/False
Method name: SetMute
Access point: UPNPObject.RenderingControl.SetMute
Call: UPNPObject.RenderingControl.SetMute(InstanceID, Channel, DesiredMute)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Channel
UPNP data type: A_ARG_TYPE_Channel
Py data type: str, bytes
Allowed values:
Master
Name: DesiredMute
UPNP data type: Mute
Py data type: bool
Allowed values: True/False
Return Values: None
Method name: X_SetTVSlideShow
Access point: UPNPObject.RenderingControl.X_SetTVSlideShow
Call: UPNPObject.RenderingControl.X_SetTVSlideShow(InstanceID, CurrentShowState, CurrentShowTheme)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: CurrentShowState
UPNP data type: A_ARG_TYPE_SlideShowState
Py data type: bool
Allowed values: True/False
Name: CurrentShowTheme
UPNP data type: A_ARG_TYPE_ThemeId
Py data type: unsigned 32bit int
Return Values: None
Method name: X_GetServiceCapabilities
Access point: UPNPObject.RenderingControl.X_GetServiceCapabilities
Call: ServiceCapabilities = UPNPObject.RenderingControl.X_GetServiceCapabilities(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: ServiceCapabilities
UPNP data type: X_ServiceCapabilities
Py data type: str, bytes
Method name: ListPresets
Access point: UPNPObject.RenderingControl.ListPresets
Call: CurrentPresetNameList = UPNPObject.RenderingControl.ListPresets(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: CurrentPresetNameList
UPNP data type: PresetNameList
Py data type: str, bytes
Default: FactoryDefaults
Service name: dial
Service class: urn:dial-multiscreen-org:service:dial:1
Access point: UPNPObject.dial
----------------------------------------------
Methods:
Method name: SendKeyCode
Access point: UPNPObject.dial.SendKeyCode
Call: UPNPObject.dial.SendKeyCode(KeyCode, KeyDescription)
----------------------------------------------
Parameters:
Name: KeyCode
UPNP data type: A_ARG_TYPE_KeyCode
Py data type: unsigned 32bit int
Name: KeyDescription
UPNP data type: A_ARG_TYPE_KeyDescription
Py data type: str, bytes
Return Values: None
Service name: AVTransport
Service class: urn:schemas-upnp-org:service:AVTransport:1
Access point: UPNPObject.AVTransport
----------------------------------------------
Methods:
Method name: GetCurrentTransportActions
Access point: UPNPObject.AVTransport.GetCurrentTransportActions
Call: Actions = UPNPObject.AVTransport.GetCurrentTransportActions(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: Actions
UPNP data type: CurrentTransportActions
Py data type: str, bytes
Method name: SetNextAVTransportURI
Access point: UPNPObject.AVTransport.SetNextAVTransportURI
Call: UPNPObject.AVTransport.SetNextAVTransportURI(InstanceID, NextURI, NextURIMetaData)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: NextURI
UPNP data type: NextAVTransportURI
Py data type: str, bytes
Name: NextURIMetaData
UPNP data type: NextAVTransportURIMetaData
Py data type: str, bytes
Return Values: None
Method name: GetDeviceCapabilities
Access point: UPNPObject.AVTransport.GetDeviceCapabilities
Call: PlayMedia, RecMedia, RecQualityModes = UPNPObject.AVTransport.GetDeviceCapabilities(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: PlayMedia
UPNP data type: PossiblePlaybackStorageMedia
Py data type: str, bytes
Default: NETWORK
Name: RecMedia
UPNP data type: PossibleRecordStorageMedia
Py data type: str, bytes
NOT_IMPLEMENTED
Name: RecQualityModes
UPNP data type: PossibleRecordQualityModes
Py data type: str, bytes
NOT_IMPLEMENTED
Method name: GetMediaInfo
Access point: UPNPObject.AVTransport.GetMediaInfo
Call: NrTracks, MediaDuration, CurrentURI, CurrentURIMetaData, NextURI, NextURIMetaData, PlayMedium, RecordMedium, WriteStatus = UPNPObject.AVTransport.GetMediaInfo(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: NrTracks
UPNP data type: NumberOfTracks
Py data type: unsigned 32bit int
Default: 0
Minimum: 0
Maximum: 4294967295
Name: MediaDuration
UPNP data type: CurrentMediaDuration
Py data type: str, bytes
Default: 00:00:00
Name: CurrentURI
UPNP data type: AVTransportURI
Py data type: str, bytes
Name: CurrentURIMetaData
UPNP data type: AVTransportURIMetaData
Py data type: str, bytes
Name: NextURI
UPNP data type: NextAVTransportURI
Py data type: str, bytes
Name: NextURIMetaData
UPNP data type: NextAVTransportURIMetaData
Py data type: str, bytes
Name: PlayMedium
UPNP data type: PlaybackStorageMedium
Py data type: str, bytes
Default: NONE
Possible returned values:
NONE
NETWORK
Name: RecordMedium
UPNP data type: RecordStorageMedium
Py data type: str, bytes
NOT_IMPLEMENTED
Name: WriteStatus
UPNP data type: RecordMediumWriteStatus
Py data type: str, bytes
NOT_IMPLEMENTED
Method name: GetTransportSettings
Access point: UPNPObject.AVTransport.GetTransportSettings
Call: PlayMode, RecQualityMode = UPNPObject.AVTransport.GetTransportSettings(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: PlayMode
UPNP data type: CurrentPlayMode
Py data type: str, bytes
Default: NORMAL
Possible returned values:
NORMAL
Name: RecQualityMode
UPNP data type: CurrentRecordQualityMode
Py data type: str, bytes
NOT_IMPLEMENTED
Method name: SetAVTransportURI
Access point: UPNPObject.AVTransport.SetAVTransportURI
Call: UPNPObject.AVTransport.SetAVTransportURI(InstanceID, CurrentURI, CurrentURIMetaData)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: CurrentURI
UPNP data type: AVTransportURI
Py data type: str, bytes
Name: CurrentURIMetaData
UPNP data type: AVTransportURIMetaData
Py data type: str, bytes
Return Values: None
Method name: Pause
Access point: UPNPObject.AVTransport.Pause
Call: UPNPObject.AVTransport.Pause(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values: None
Method name: X_DLNA_GetBytePositionInfo
Access point: UPNPObject.AVTransport.X_DLNA_GetBytePositionInfo
Call: TrackSize, RelByte, AbsByte = UPNPObject.AVTransport.X_DLNA_GetBytePositionInfo(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: TrackSize
UPNP data type: X_DLNA_CurrentTrackSize
Py data type: str, bytes
Name: RelByte
UPNP data type: X_DLNA_RelativeBytePosition
Py data type: str, bytes
Name: AbsByte
UPNP data type: X_DLNA_AbsoluteBytePosition
Py data type: str, bytes
Method name: X_GetStoppedReason
Access point: UPNPObject.AVTransport.X_GetStoppedReason
Call: StoppedReason, StoppedReasonData = UPNPObject.AVTransport.X_GetStoppedReason(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: StoppedReason
UPNP data type: A_ARG_TYPE_StoppedReason
Py data type: str, bytes
Name: StoppedReasonData
UPNP data type: A_ARG_TYPE_StoppedReasonData
Py data type: str, bytes
Method name: Play
Access point: UPNPObject.AVTransport.Play
Call: UPNPObject.AVTransport.Play(InstanceID, Speed)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Speed
UPNP data type: TransportPlaySpeed
Py data type: str, bytes
Default: 1
Return Values: None
Method name: GetPositionInfo
Access point: UPNPObject.AVTransport.GetPositionInfo
Call: Track, TrackDuration, TrackMetaData, TrackURI, RelTime, AbsTime, RelCount, AbsCount = UPNPObject.AVTransport.GetPositionInfo(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: Track
UPNP data type: CurrentTrack
Py data type: unsigned 32bit int
Default: 0
Minimum: 0
Maximum: 4294967295
Step: 1
Name: TrackDuration
UPNP data type: CurrentTrackDuration
Py data type: str, bytes
Default: 00:00:00
Name: TrackMetaData
UPNP data type: CurrentTrackMetaData
Py data type: str, bytes
Name: TrackURI
UPNP data type: CurrentTrackURI
Py data type: str, bytes
Name: RelTime
UPNP data type: RelativeTimePosition
Py data type: str, bytes
Default: 00:00:00
Name: AbsTime
UPNP data type: AbsoluteTimePosition
Py data type: str, bytes
Default: 00:00:00
Name: RelCount
UPNP data type: RelativeCounterPosition
Py data type: signed 32bit int
Default: 2147483647
Name: AbsCount
UPNP data type: AbsoluteCounterPosition
Py data type: signed 32bit int
Default: 2147483647
Method name: Seek
Access point: UPNPObject.AVTransport.Seek
Call: UPNPObject.AVTransport.Seek(InstanceID, Unit, Target)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: Unit
UPNP data type: A_ARG_TYPE_SeekMode
Py data type: str, bytes
Default: REL_TIME
Allowed values:
TRACK_NR
REL_TIME
ABS_TIME
ABS_COUNT
REL_COUNT
X_DLNA_REL_BYTE
FRAME
Name: Target
UPNP data type: A_ARG_TYPE_SeekTarget
Py data type: str, bytes
Return Values: None
Method name: Stop
Access point: UPNPObject.AVTransport.Stop
Call: UPNPObject.AVTransport.Stop(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values: None
Method name: Next
Access point: UPNPObject.AVTransport.Next
Call: UPNPObject.AVTransport.Next(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values: None
Method name: Previous
Access point: UPNPObject.AVTransport.Previous
Call: UPNPObject.AVTransport.Previous(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values: None
Method name: X_PlayerAppHint
Access point: UPNPObject.AVTransport.X_PlayerAppHint
Call: UPNPObject.AVTransport.X_PlayerAppHint(InstanceID, UpnpClass, PlayerHint)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: UpnpClass
UPNP data type: X_ARG_TYPE_UpnpClass
Py data type: str, bytes
Allowed values:
object.item.imageItem
object.item.audioItem
object.item.videoItem
Name: PlayerHint
UPNP data type: X_ARG_TYPE_PlayerHint
Py data type: str, bytes
Allowed values:
load
unload
Return Values: None
Method name: X_PrefetchURI
Access point: UPNPObject.AVTransport.X_PrefetchURI
Call: UPNPObject.AVTransport.X_PrefetchURI(InstanceID, PrefetchURI, PrefetchURIMetaData)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: PrefetchURI
UPNP data type: A_ARG_TYPE_PrefetchURI
Py data type: str, bytes
Name: PrefetchURIMetaData
UPNP data type: A_ARG_TYPE_PrefetchURIMetaData
Py data type: str, bytes
Return Values: None
Method name: SetPlayMode
Access point: UPNPObject.AVTransport.SetPlayMode
Call: UPNPObject.AVTransport.SetPlayMode(InstanceID, NewPlayMode)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Name: NewPlayMode
UPNP data type: CurrentPlayMode
Py data type: str, bytes
Default: NORMAL
Allowed values:
NORMAL
Return Values: None
Method name: GetTransportInfo
Access point: UPNPObject.AVTransport.GetTransportInfo
Call: CurrentTransportState, CurrentTransportStatus, CurrentSpeed = UPNPObject.AVTransport.GetTransportInfo(InstanceID)
----------------------------------------------
Parameters:
Name: InstanceID
UPNP data type: A_ARG_TYPE_InstanceID
Py data type: unsigned 32bit int
Return Values:
Name: CurrentTransportState
UPNP data type: TransportState
Py data type: str, bytes
Default: NO_MEDIA_PRESENT
Possible returned values:
STOPPED
PAUSED_PLAYBACK
PLAYING
TRANSITIONING
NO_MEDIA_PRESENT
Name: CurrentTransportStatus
UPNP data type: TransportStatus
Py data type: str, bytes
Default: OK
Possible returned values:
OK
ERROR_OCCURRED
Name: CurrentSpeed
UPNP data type: TransportPlaySpeed
Py data type: str, bytes
Default: 1
Service name: ScreenSharingService
Service class: urn:samsung.com:service:ScreenSharingService:1
Access point: UPNPObject.ScreenSharingService
----------------------------------------------
Methods:
Method name: X_ConnectScreenSharingM2TV
Access point: UPNPObject.ScreenSharingService.X_ConnectScreenSharingM2TV
Call: tBSSID, tWlanFreq, tListenFreq = UPNPObject.ScreenSharingService.X_ConnectScreenSharingM2TV(mWlanMacAddress, mP2pDeviceAddress, mBluetoothMacAddress, mWFDSourcePort)
----------------------------------------------
Parameters:
Name: mWlanMacAddress
UPNP data type: A_ARG_TYPE_mWlanMacAddress
Py data type: str, bytes
Name: mP2pDeviceAddress
UPNP data type: A_ARG_TYPE_mP2pDeviceAddress
Py data type: str, bytes
Name: mBluetoothMacAddress
UPNP data type: A_ARG_TYPE_mBluetoothMacAddress
Py data type: str, bytes
Name: mWFDSourcePort
UPNP data type: A_ARG_TYPE_mWFDSourcePort
Py data type: str, bytes
Return Values:
Name: tBSSID
UPNP data type: A_ARG_TYPE_tBSSID
Py data type: str, bytes
Name: tWlanFreq
UPNP data type: A_ARG_TYPE_tWlanFreq
Py data type: str, bytes
Name: tListenFreq
UPNP data type: A_ARG_TYPE_tListenFreq
Py data type: str, bytes
Method name: X_ConnectScreenSharingTV2M
Access point: UPNPObject.ScreenSharingService.X_ConnectScreenSharingTV2M