-
Notifications
You must be signed in to change notification settings - Fork 4
/
io-package.json
1632 lines (1632 loc) · 37.2 KB
/
io-package.json
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
{
"common": {
"name": "mpd",
"version": "2.2.0",
"news": {
"2.2.0": {
"en": "Seek functionality for online streams has been fixed.\nMaterialize UI has been removed. [#166]\nIssues reported by repository checker have been fixed. [#166]\nDependencies have been updated.",
"de": "Seek-Funktionalität für Online-Streams wurde korrigiert.\nMaterialize UI wurde entfernt. (#166)\nVom Repository-Checker gemeldete Probleme wurden behoben. (#166)\nAbhängigkeiten wurden aktualisiert.",
"ru": "Поиск функциональности для онлайн-потоков был фиксированным.\nМатериализируйте UI был удален. [#166]\nВопросы, сообщаемые регистратором репозиторий, были решены. [#166]\nЗависимость была обновлена.",
"pt": "Buscar funcionalidade para fluxos on-line foi corrigido.\nO materialize UI foi removido. [#166]\nQuestões relatadas pelo verificador de repositório foram corrigidas. [#166]\nAs dependências foram atualizadas.",
"nl": "Zoek functionaliteit voor online streams is vastgesteld.\nDe materialisatie-UI is verwijderd. [#166]\nDoor repository-checker gemelde problemen zijn opgelost. [#166]\nAfhankelijkheden zijn bijgewerkt.",
"fr": "Rechercher la fonctionnalité pour les flux en ligne a été corrigé.\nL'interface utilisateur matérialisée a été supprimée. [#166]\nLes problèmes signalés par le vérificateur du dépôt ont été corrigés. [#166]\nLes dépendances ont été actualisées.",
"it": "La funzionalità di ricerca per i flussi online è stata fissata.\nMaterialize UI è stato rimosso. [#166]\nI problemi segnalati da repository checker sono stati fissati. [#166]\nLe dipendenze sono state aggiornate.",
"es": "Seek funcionalidad para los flujos en línea se ha fijado.\nMaterializar UI ha sido eliminado. [#166]\nSe han fijado las cuestiones comunicadas por el repositorio. [#166]\nSe han actualizado las dependencias.",
"pl": "Funkcjonalność wyszukiwania strumieni internetowych została ustalona.\nZmaterializować interfejs został usunięty. [# 166]\nProblemy zgłoszone przez kontroler repozytorium zostały naprawione. [# 166]\nZaktualizowano zależność.",
"uk": "Виправлено функції Seek для онлайн-потоків.\nВидалено матеріалізацію UI. [#166]\nЗафіксовано питання, що повідомляються репозиторійним чекером. [#166]\nОновлено залежність.",
"zh-cn": "在线流的搜索功能已固定 .\n物质化的 UI 已被移除 。 [#166]\n储存库检查员报告的问题已经解决。 [#166]\n附属关系已经更新."
},
"2.1.0": {
"en": "Adapter requires node.js >= 18 and js-controller >= 5 now\nDependencies have been updated",
"de": "Adapter benötigt node.js >= 18 und js-controller >= 5 jetzt\nAbhängigkeiten wurden aktualisiert",
"ru": "Адаптер требует node.js >= 18 и js-контроллер >= 5 сейчас\nЗависимость обновлена",
"pt": "Adapter requer node.js >= 18 e js-controller >= 5 agora\nAs dependências foram atualizadas",
"nl": "Voor adaptor zijn node.js < 18 en js-controller > Nu 5\nAfhankelijkheden zijn bijgewerkt",
"fr": "L'adaptateur nécessite node.js >= 18 et js-controller >= 5 maintenant\nLes dépendances ont été actualisées",
"it": "Adattatore richiede node.js >= 18 e js-controller >= 5 ora\nLe dipendenze sono state aggiornate",
"es": "Adaptador requiere node.js ó= 18 y js-controller 5 ahora\nSe han actualizado las dependencias",
"pl": "Adapter wymaga node.js > = 18 i kontroler js- > = 5 teraz\nZaktualizowano zależności",
"uk": "Адаптер вимагає node.js >= 18 і js-controller >= 5 тепер\nЗалежність було оновлено",
"zh-cn": "适配器需要节点.js QQ18和js控制器 QQ 现在5号\n依赖关系已更新"
},
"1.1.1": {
"en": "Just small refactoring",
"de": "Nur kleine Refactoring",
"ru": "Просто небольшой рефакторинг",
"pt": "Apenas pequeno refactoring",
"nl": "Gewoon een kleine refactor",
"fr": "Juste petit refactoring",
"it": "Solo piccolo rifattore",
"es": "Sólo pequeña refactorización",
"pl": "Niewielki refaktor",
"uk": "Просто невеликий рефакторинг",
"zh-cn": "小额重新计算"
}
},
"titleLang": {
"en": "Music player daemon",
"de": "Musikalische Musik",
"ru": "Музыкальный проигрыватель",
"pt": "Jogador de música daemon",
"nl": "Muziekspeler daemon",
"fr": "Démon du lecteur de musique",
"it": "Musicista daemon",
"es": "Music player daemon",
"pl": "Demon odtwarzacza muzyki",
"uk": "Музичний плеєр daemon",
"zh-cn": "音乐播放器守护进程"
},
"desc": {
"en": "MusicPlayer Daemon (MPD) client",
"de": "MusicPlayer Daemon (MPD) Client",
"ru": "MusicPlayer Daemon (MPD) client",
"pt": "MusicPlayer Daemon (MPD) cliente",
"nl": "Muziekspeler Daemon (MPD) client",
"fr": "Client MusicPlayer Daemon (MPD)",
"it": "Client MusicPlayer Daemon (MPD)",
"es": "MusicPlayer Daemon (MPD) cliente",
"pl": "Klient MusicPlayer Daemon (MPD)",
"uk": "MusicPlayer Daemon (MPD) клієнт",
"zh-cn": "MusicPlayer 守护进程客户端"
},
"licenseInformation": {
"license": "MIT",
"type": "free"
},
"authors": [
"instalator <[email protected]>"
],
"platform": "Javascript/Node.js",
"mode": "daemon",
"icon": "mpd.png",
"dataSource": "push",
"connectionType": "local",
"adminUI": {
"config": "json"
},
"enabled": false,
"messagebox": true,
"compact": true,
"extIcon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.mpd/master/admin/mpd.png",
"keywords": [
"mpd",
"player",
"media"
],
"readme": "https://github.com/iobroker-community-adapters/ioBroker.mpd/blob/master/README.md",
"loglevel": "info",
"tier": 2,
"type": "multimedia",
"dependencies": [
{
"js-controller": ">=5.0.19"
}
],
"globalDependencies": [
{
"admin": ">=6.13.16"
}
]
},
"native": {
"ip": "127.0.0.1",
"port": 6600
},
"objects": [],
"instanceObjects": [
{
"_id": "shuffle",
"type": "state",
"common": {
"role": "media.shuffle",
"name": "The current playlist shuffle",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "say",
"type": "state",
"common": {
"role": "media.tts",
"name": "Text 2 speech mpd",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "mute",
"type": "state",
"common": {
"role": "media.mute",
"name": "Player mute",
"type": "boolean",
"read": true,
"write": true,
"def": false
},
"native": {}
},
{
"_id": "outputs",
"type": "state",
"common": {
"role": "media.outputs",
"name": "Audio output devices outputs",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "toggleoutput",
"type": "state",
"common": {
"role": "media.toggleoutput",
"name": "Audio output devices toggle output",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "enableoutput",
"type": "state",
"common": {
"role": "media.enableoutput",
"name": "Audio output devices enable output",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "disableoutput",
"type": "state",
"common": {
"role": "media.disableoutput",
"name": "Audio output devices disable output",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "sticker_find",
"type": "state",
"common": {
"role": "media.sticker_find",
"name": "Stickers sticker_find",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "sticker_list",
"type": "state",
"common": {
"role": "media.sticker_list",
"name": "Stickers sticker_list",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "sticker_delete",
"type": "state",
"common": {
"role": "media.sticker_delete",
"name": "Stickers sticker_delete",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "sticker_set",
"type": "state",
"common": {
"role": "media.sticker_set",
"name": "Stickers sticker_set",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "sticker_get",
"type": "state",
"common": {
"role": "media.sticker_get",
"name": "Stickers sticker_get",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listneighbors",
"type": "state",
"common": {
"role": "media.listneighbors",
"name": "Mounts and neighbors listneighbors",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listmounts",
"type": "state",
"common": {
"role": "media.listmounts",
"name": "Mounts and neighbors listmounts",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "unmount",
"type": "state",
"common": {
"role": "media.unmount",
"name": "Mounts and neighbors unmount",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "mount",
"type": "state",
"common": {
"role": "media.mount",
"name": "Mounts and neighbors mount",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "rescan",
"type": "state",
"common": {
"role": "media.rescan",
"name": "The music database rescan",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "update",
"type": "state",
"common": {
"role": "media.update",
"name": "The music database update",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "searchaddpl",
"type": "state",
"common": {
"role": "media.searchaddpl",
"name": "The music database searchaddpl",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "searchadd",
"type": "state",
"common": {
"role": "media.searchadd",
"name": "The music database searchadd",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "search",
"type": "state",
"common": {
"role": "media.search",
"name": "The music database search",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "readcomments",
"type": "state",
"common": {
"role": "media.readcomments",
"name": "The music database readcomments",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "lsinfo",
"type": "state",
"common": {
"role": "media.browser",
"name": "The music database browser",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listfiles",
"type": "state",
"common": {
"role": "media.listfiles",
"name": "The music database listfiles",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listallinfo",
"type": "state",
"common": {
"role": "media.listallinfo",
"name": "Themusicdatabaselistallinfo",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listall",
"type": "state",
"common": {
"role": "media.listall",
"name": "Themusicdatabaselistall",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "list",
"type": "state",
"common": {
"role": "media.list",
"name": "Themusicdatabaselist",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "findadd",
"type": "state",
"common": {
"role": "media.findadd",
"name": "The music database find add",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "find",
"type": "state",
"common": {
"role": "media.find",
"name": "The music data base find",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "count",
"type": "state",
"common": {
"role": "media.count",
"name": "Themusicdatabasecount",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "save",
"type": "state",
"common": {
"role": "media.save",
"name": "Stored playlists save",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "rm",
"type": "state",
"common": {
"role": "media.rm",
"name": "Stored playlists rm",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "rename",
"type": "state",
"common": {
"role": "media.rename",
"name": "Stored playlists rename",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistmove",
"type": "state",
"common": {
"role": "media.playlistmove",
"name": "Stored playlists playlistmove",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistdelete",
"type": "state",
"common": {
"role": "media.playlistdelete",
"name": "Stored playlists playlist delete",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistclear",
"type": "state",
"common": {
"role": "media.playlistclear",
"name": "Stored playlists playlistclear",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistadd",
"type": "state",
"common": {
"role": "media.playlistadd",
"name": "Stored playlistsp laylistadd",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "load",
"type": "state",
"common": {
"role": "media.load",
"name": "Stored playlists load",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listplaylists",
"type": "state",
"common": {
"role": "media.listplaylists",
"name": "Stored playlists listplaylists",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listplaylistinfo",
"type": "state",
"common": {
"role": "media.listplaylistinfo",
"name": "Stored playlistsl istplaylistinfo",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "listplaylist",
"type": "state",
"common": {
"role": "media.listplaylist",
"name": "Stored playlists listplaylist",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "cleartagid",
"type": "state",
"common": {
"role": "media.cleartagid",
"name": "The current playlist cleartagid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "addtagid",
"type": "state",
"common": {
"role": "media.addtagid",
"name": "The current playlist addtagid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "swapid",
"type": "state",
"common": {
"role": "media.swapid",
"name": "The current playlist swapid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "swap",
"type": "state",
"common": {
"role": "media.swap",
"name": "The current playlist swap",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "rangeid",
"type": "state",
"common": {
"role": "media.rangeid",
"name": "The current playlist rangeid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "prioid",
"type": "state",
"common": {
"role": "media.prioid",
"name": "The current playlist period",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "prio",
"type": "state",
"common": {
"role": "media.prio",
"name": "The current playlist prio",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "plchangesposid",
"type": "state",
"common": {
"role": "media.plchangesposid",
"name": "The current playlist plchangesposid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "plchanges",
"type": "state",
"common": {
"role": "media.plchanges",
"name": "The current playlist plchanges",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistsearch",
"type": "state",
"common": {
"role": "media.playlistsearch",
"name": "The current playlist playlistsearch",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistinfo",
"type": "state",
"common": {
"role": "media.playlistinfo",
"name": "The current playlist playlistinfo",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistid",
"type": "state",
"common": {
"role": "media.playlistid",
"name": "The current playlist playlistid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlistfind",
"type": "state",
"common": {
"role": "media.playlistfind",
"name": "The current playlist playlistfind",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlist",
"type": "state",
"common": {
"name": "playlist",
"type": "string",
"role": "indicator",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "playlist_list",
"type": "state",
"common": {
"name": "playlist",
"type": "string",
"role": "media.playlist",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "moveid",
"type": "state",
"common": {
"role": "media.moveid",
"name": "The current playlist moveid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "move",
"type": "state",
"common": {
"role": "media.move",
"name": "The current playlist move",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "deleteid",
"type": "state",
"common": {
"role": "media.deleteid",
"name": "The current playlist deleteid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "delete",
"type": "state",
"common": {
"role": "media.delete",
"name": "The current playlist delete",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "clear",
"type": "state",
"common": {
"role": "media.clear",
"name": "The current playlist clear",
"type": "boolean",
"read": false,
"write": true
},
"native": {}
},
{
"_id": "addid",
"type": "state",
"common": {
"role": "media.addid",
"name": "The current playlist addid",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "add",
"type": "state",
"common": {
"role": "media.add",
"name": "The current playlist add",
"type": "string",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "addplay",
"type": "state",
"common": {
"role": "media.addplay",
"name": "The current playlist addplay",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "replay_gain_status",
"type": "state",
"common": {
"role": "media.replay_gain_status",
"name": "Playback options replay_gain_status",
"type": "string",
"read": true,
"write": false,
"def": ""
},
"native": {}
},
{
"_id": "replay_gain_mode",
"type": "state",
"common": {
"role": "media.replay_gain_mode",
"name": "Playback options replay_gain_mode",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "single",
"type": "state",
"common": {
"name": "single",
"type": "string",
"role": "media"
},
"native": {}
},
{
"_id": "setvol",
"type": "state",
"common": {
"role": "media.setvol",
"name": "Playback options setvol",
"type": "number",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "repeat",
"type": "state",
"common": {
"name": "repeat",
"type": "boolean",
"role": "media.mode.repeat",