-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathgrep
1230 lines (1229 loc) · 70.9 KB
/
grep
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
libmtp version: 1.1.13
Listing raw device(s)
Found 2 device(s):
Samsung: Galaxy models (MTP) (04e8:6860) @ bus 2, dev 50
Samsung: Galaxy models (MTP) (04e8:6860) @ bus 2, dev 49
Attempting to connect device(s)
USB low-level info:
bcdUSB: 528
bDeviceClass: 0
bDeviceSubClass: 0
bDeviceProtocol: 0
idVendor: 04e8
idProduct: 6860
IN endpoint maxpacket: 512 bytes
OUT endpoint maxpacket: 512 bytes
Raw device info:
Bus location: 2
Device number: 50
Device entry info:
Vendor: Samsung
Vendor id: 0x04e8
Product: Galaxy models (MTP)
Vendor id: 0x6860
Device flags: 0x49000202
Configuration 0, interface 0, altsetting 0:
Interface description contains the string "MTP"
Device recognized as MTP, no further probing.
Device info:
Manufacturer: Samsung Electronics Co., Ltd.
Model: SM-N9005
Device version: N9005DXSGBQA1
Serial number: R38F305JC1N
Vendor extension ID: 0x00000006
Vendor extension description: microsoft.com: 1.0; microsoft.com/WMPPD: 11.0; microsoft.com/WMPPD: 10.0; microsoft.com/WMDRMPD:10.1; microsoft.com/playready:1.10;samsung.com/kies:2.1;samsung.com/sidesync3.1;
Detected object size: 64 bits
Extensions:
microsoft.com: 1.0
microsoft.com/WMPPD: 11.0
microsoft.com/WMPPD: 10.0
microsoft.com/WMDRMPD: 10.1
microsoft.com/playready: 1.10
samsung.com/kies: 2.1
Supported operations:
1001: Get device info
1002: Open session
1003: Close session
1004: Get storage IDs
1005: Get storage info
1006: Get number of objects
1007: Get object handles
1008: Get object info
1009: Get object
100b: Delete object
100c: Send object info
100d: Send object
1014: Get device property description
1015: Get device property value
1016: Set device property value
101b: Get partial object
9810: Get object references
9811: Set object references
9802: Get object property description
9801: Get object properties supported
9803: Get object property value
9804: Set object property value
9805: Get object property list
9806: Set object property list
9201: Report Added/Deleted Items
9202: Report Acquired Items
100a: Get thumbnail
1011: Self test device
1012: Set object protection
1017: Reset device property value
9807: Get interdependent property description
9808: Send object property list
9100: Unknown PTP_OC
9101: Get secure time challenge
9102: Get secure time response
9103: Set license response
9104: Get sync list
9105: Send meter challenge query
9106: Get meter challenge
9107: Get meter response
9108: Clean data store
9109: Get license state
910a: Send WMDRM-PD Command
910b: Send WMDRM-PD Request
910c: Unknown PTP_OC
910d: Unknown PTP_OC
910e: Unknown PTP_OC
910f: Unknown PTP_OC
9110: Unknown PTP_OC
9111: Unknown PTP_OC
9112: Unknown PTP_OC
9113: Unknown PTP_OC
9114: Unknown PTP_OC
9115: Unknown PTP_OC
9116: Unknown PTP_OC
9501: Unknown PTP_OC
9502: Unknown PTP_OC
9503: Unknown PTP_OC
9504: Unknown PTP_OC
Events supported:
0x4002 ((null))
0x4003 ((null))
0x4004 ((null))
0x4005 ((null))
0x400c ((null))
Device Properties Supported:
0x5001: Battery Level
0xd401: Synchronization Partner
0xd402: Friendly Device Name
0xd404: Unknown property
0xd407: Perceived Device Type
0xd101: Secure Time
0xd102: Device Certificate
0xd103: Revocation Info
0xd104: Unknown property
0xd105: Unknown property
Playable File (Object) Types and Object Properties Supported:
b984: 3GP
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 85, 352, 353, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type enumeration: 0, 861293911, GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3009: MP3
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc46: Artist STRING data type GET/SET
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc8a: Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc8b: Track UINT16 data type ANY 16BIT VALUE form GET/SET
dc8c: Genre STRING data type GET/SET
dc97: Effective Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
dc9a: Album Name STRING data type GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 1, 2, 3, 8, 9, 11, 49, 50, 80, 85, 352, 353, 354, 355, 356, 41222, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 384000, STEP 1 READ ONLY
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
de92: Bit Rate Type UINT16 data type enumeration: 0, 1, 2, 3, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc96: Composer STRING data type GET/SET
b901: WMA
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc46: Artist STRING data type GET/SET
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc8a: Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc8b: Track UINT16 data type ANY 16BIT VALUE form GET/SET
dc8c: Genre STRING data type GET/SET
dc97: Effective Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
dc9a: Album Name STRING data type GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 1, 2, 3, 8, 9, 11, 49, 50, 80, 85, 352, 353, 354, 355, 356, 41222, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 384000, STEP 1 READ ONLY
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
de92: Bit Rate Type UINT16 data type enumeration: 0, 1, 2, 3, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc96: Composer STRING data type GET/SET
b981: WMV
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 85, 352, 353, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type enumeration: 0, 861293911, GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3801: JPEG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3001: Association/Directory
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
ba05: Abstract Audio Video Playlist
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3000: Undefined Type
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3807: GIF
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3804: BMP
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
380b: PNG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
300a: MS AVI
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 85, 352, 353, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type enumeration: 0, 861293911, GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
300b: MPEG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 85, 352, 353, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type enumeration: 0, 861293911, GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
300c: ASF
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 85, 352, 353, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type enumeration: 0, 861293911, GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
b982: MP4
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type enumeration: 0, 85, 352, 353, READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type enumeration: 0, 861293911, GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3800: Defined Type
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
b980: Undefined Video
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
ba10: WPL Playlist
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
ba11: M3U Playlist
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
ba03: Abstract Audio Album
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
Storage Devices:
StorageID: 0x00010001
StorageType: 0x0003 fixed RAM storage
FilesystemType: 0x0002 generic hierarchical
AccessCapability: 0x0000 read/write
MaxCapacity: 28283068416
FreeSpaceInBytes: 9173331968
FreeSpaceInObjects: 4294967295
StorageDescription: Phone
VolumeIdentifier: SECZ9519043CHOHB
StorageID: 0x00020002
StorageType: 0x0004 removable RAM storage
FilesystemType: 0x0002 generic hierarchical
AccessCapability: 0x0000 read/write
MaxCapacity: 8025473024
FreeSpaceInBytes: 7829913600
FreeSpaceInObjects: 4294967295
StorageDescription: Card
VolumeIdentifier: SECZ9519043CHOHB01
Special directories:
Default music folder: 0xffffffff
Default playlist folder: 0xffffffff
Default picture folder: 0xffffffff
Default video folder: 0xffffffff
Default organizer folder: 0xffffffff
Default zencast folder: 0xffffffff
Default album folder: 0xffffffff
Default text folder: 0xffffffff
MTP-specific device properties:
Friendly name: Galaxy Note3
Synchronization partner: Longhorn Sync Engine
Battery level 100 of 100 (100%)
libmtp supported (playable) filetypes:
ISO MPEG-1 Audio Layer 3
Microsoft Windows Media Audio
Microsoft Windows Media Video
JPEG file
Folder
Abstract Playlist file
GIF bitmap file
BMP bitmap file
Portable Network Graphics
Audio Video Interleave
MPEG video stream
Microsoft Advanced Systems Format
MPEG-4 Part 14 Container Format (Audio+Video Emphasis)
Undefined video file
Abstract Album file
Ogg container format
Free Lossless Audio Codec (FLAC)
USB low-level info:
bcdUSB: 528
bDeviceClass: 0
bDeviceSubClass: 0
bDeviceProtocol: 0
idVendor: 04e8
idProduct: 6860
IN endpoint maxpacket: 512 bytes
OUT endpoint maxpacket: 512 bytes
Raw device info:
Bus location: 2
Device number: 49
Device entry info:
Vendor: Samsung
Vendor id: 0x04e8
Product: Galaxy models (MTP)
Vendor id: 0x6860
Device flags: 0x48000002
Configuration 0, interface 0, altsetting 0:
Interface description contains the string "MTP"
Device recognized as MTP, no further probing.
Device info:
Manufacturer: Samsung Electronics Co., Ltd.
Model: SM-N950F
Device version: N950FXXU6DSF6
Serial number: R58J93JSFXB
Vendor extension ID: 0x00000006
Vendor extension description: microsoft.com: 1.0; samsung.com/kies: 4.2; samsung.com/devicestatus: 1;
Detected object size: 64 bits
Extensions:
microsoft.com: 1.0
samsung.com/kies: 4.2
samsung.com/devicestatus: 1.0
Supported operations:
1001: Get device info
1002: Open session
1003: Close session
1004: Get storage IDs
1005: Get storage info
1006: Get number of objects
1007: Get object handles
1008: Get object info
1009: Get object
100b: Delete object
100c: Send object info
100d: Send object
1014: Get device property description
1015: Get device property value
1016: Set device property value
101b: Get partial object
9810: Get object references
9811: Set object references
9802: Get object property description
9801: Get object properties supported
9803: Get object property value
9804: Set object property value
9805: Get object property list
9806: Set object property list
9201: Report Added/Deleted Items
9202: Report Acquired Items
100a: Get thumbnail
1011: Self test device
1012: Set object protection
1017: Reset device property value
9807: Get interdependent property description
9808: Send object property list
9501: Unknown PTP_OC
9502: Unknown PTP_OC
9503: Unknown PTP_OC
9504: Unknown PTP_OC
Events supported:
0x4002 ((null))
0x4003 ((null))
0x4004 ((null))
0x4005 ((null))
0x4007 ((null))
0x400c ((null))
Device Properties Supported:
0x5001: Battery Level
0xd401: Synchronization Partner
0xd402: Friendly Device Name
0xd404: Unknown property
0xd407: Perceived Device Type
0x0000: Unknown property
Playable File (Object) Types and Object Properties Supported:
3000: Undefined Type
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3001: Association/Directory
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3004: Text
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3005: HTML
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3008: MS Wave
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3009: MP3
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc46: Artist STRING data type GET/SET
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc8a: Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc8b: Track UINT16 data type ANY 16BIT VALUE form GET/SET
dc8c: Genre STRING data type GET/SET
dc97: Effective Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
dc9a: Album Name STRING data type GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de99: Audio WAVE Codec UINT32 data type ANY 32BIT VALUE form READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 384000, STEP 1 READ ONLY
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
de92: Bit Rate Type UINT16 data type enumeration: 0, 1, 2, 3, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc96: Composer STRING data type GET/SET
300b: MPEG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 4000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 3000, STEP 1 GET/SET
dc8c: Genre STRING data type GET/SET
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de97: Scan Depth UINT16 data type enumeration: 0, 1, 2, 3, 6, 7, GET/SET
de99: Audio WAVE Codec UINT32 data type ANY 32BIT VALUE form READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 192999, STEP 1 READ ONLY
de9b: Video Four CC Codec UINT32 data type ANY 32BIT VALUE form GET/SET
de9c: Video Bit Rate UINT32 data type range: MIN 32000, MAX 10485760, STEP 1 GET/SET
de9d: Frames Per Thousand Seconds UINT32 data type enumeration: 0, 15000, 24000, 25000, 29970, 30000, GET/SET
de9e: Key Frame Distance UINT32 data type range: MIN 100, MAX 300, STEP 1 GET/SET
dea1: Encoding Profile STRING data type READ ONLY
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3801: JPEG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3802: TIFF EP
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
3804: BMP
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3807: GIF
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
3808: JFIF
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
380b: PNG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc87: Width UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
dc88: Height UINT32 data type range: MIN 0, MAX 30000, STEP 1 GET/SET
d901: Buy flag UINT8 data type range: MIN 0, MAX 1, STEP 0 GET/SET
dc47: Date Authored STRING data type DATETIME FORM GET/SET
380d: TIFF
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
b901: WMA
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
dc46: Artist STRING data type GET/SET
dc89: Duration UINT32 data type range: MIN 0, MAX -1, STEP 1 GET/SET
dc8a: Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc8b: Track UINT16 data type ANY 16BIT VALUE form GET/SET
dc8c: Genre STRING data type GET/SET
dc97: Effective Rating UINT16 data type range: MIN 0, MAX 100, STEP 1 GET/SET
dc99: Original Release Date STRING data type DATETIME FORM GET/SET
dc9a: Album Name STRING data type GET/SET
de93: Sample Rate UINT32 data type range: MIN 8000, MAX 48000, STEP 50 READ ONLY
de94: Number Of Channels UINT16 data type enumeration: 0, 1, 2, GET/SET
de99: Audio WAVE Codec UINT32 data type ANY 32BIT VALUE form READ ONLY
de9a: Audio Bit Rate UINT32 data type range: MIN 13000, MAX 384000, STEP 1 READ ONLY
dc91: Use Count UINT32 data type ANY 32BIT VALUE form GET/SET
de92: Bit Rate Type UINT16 data type enumeration: 0, 1, 2, 3, GET/SET
dc9b: Album Artist STRING data type GET/SET
dc96: Composer STRING data type GET/SET
b902: OGG
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
dc08: Date Created STRING data type DATETIME FORM GET/SET
dc9d: DRM Status UINT16 data type enumeration: 0, 1, GET/SET
b903: AAC
dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
dc02: Object Format UINT16 data type ANY 16BIT VALUE form READ ONLY
dc03: Protection Status UINT16 data type enumeration: 0, 1, 32770, 32771, READ ONLY
dc04: Object Size UINT64 data type READ ONLY
dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
dc0b: Parent Object UINT32 data type ANY 32BIT VALUE form READ ONLY
dc41: Persistant Unique Object Identifier UINT128 data type READ ONLY
dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
dc09: Date Modified STRING data type DATETIME FORM GET/SET
dc44: Name STRING data type GET/SET
dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET