-
Notifications
You must be signed in to change notification settings - Fork 0
/
load_sample_data.json
2001 lines (2001 loc) · 237 KB
/
load_sample_data.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
POST /_bulk
{"index":{"_index":"nlp_pqa"}}
{"question":"does this work with cisco ip phone 7942","answer":"Use the Plantronics compatibility guide to see what is compatible with your phone. http://www.plantronics.com/us/compatibility-guide/"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with the cisco ip phone 7970 / 7961 models?","answer":"Don’t know. Call Plantronics"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i have a polycom vvx, what adapter cable will i need to plug in this headset to?","answer":"Hi Gabrielle, what is the model of VVX?"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this headset work with a samsung galaxy s6 edge cell phone? if so, which adapter does it require? is that adapter available on amazon? thanks.","answer":"no wont work"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work for a polycom vvx phone? also, is it necessary to purchase that extra adapter if i will use only with ploycom?","answer":"Yes, but you need a cable in between the headset and the Polycom. Plantronics Part Number: 27190-01"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When you use the mute button can the person on the other end hear you putting them on mute?","answer":"Hello, the answer is no, the other person cannot hear when you are putting them on mute. :) please call 1800-683-5715 for any further questions. Thanks"}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this work with cisco 7942 phone? what cable i need to buy??","answer":"I would call Headsets.com in San Francisco. They are will know. I buy my other supplies from them 800-432-3738"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there a connector that will work with a Blackberry and /or an iPhone?","answer":"I don't think so. It connects with a regular phone type plug."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it come with a 2.5mm jack ?","answer":"It does not. We had to purchase the DA40 USB Digital Adapter to work with our VVX-500 phones. Part # 71800-41"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Which cord do i need to connect this to a polycom vvx600?","answer":"Hi there, you would need the U10P 27190-01 direct connect cable. Another model to consider is the Discover D701 and you would need the D100 direct connect cable with that. Below is a link for your reference and give us a call at 1-800-683-5715 for any further questions. https://www.amazon.com/Discover-D701-Single-Office-Headset/dp/B01GGRAOYW/ref sr 1 1?ie UTF8&qid 1480543290&sr 8-1&keywords discover+d701"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Bought this for an iphone 6, what type of adapter do I need to plug into phone?","answer":"Hi Heather, you will need the QD-3.5mm adapter. Below is a link for you. Give us a call at 1-800-683-5715 for any further questions. http://www.amazon.com/Plantronics-Cable-Assy-Right-Angle/dp/B000COKYXM/ref sr 1 1?ie UTF8&qid 1463666726&sr 8-1&keywords plantronics+qd-3.5mm"}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it work with Lucent 6416D","answer":"I'm not sure. I used it to plug in to my computer for use with the Vonage soft phone. It worked great in my use case. I'm sorry I couldn't be of more assistance."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I use this with a Polycom phone?","answer":"Yes, you will also need the following interface cable below. Thank you. https://www.amazon.com/Plantronics-Polaris-Headset-Disconnect-2719001/dp/B00006B7RS/ref sr 1 1?s office-products&ie UTF8&qid 1542307398&sr 1-1&keywords 27190-01"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it work with a Cisco phone/system? thanks!","answer":"Hello, the HW251N has an open ended connection called a QD, which makes it compatible with different devices. In this case we would need your phone's specific model to check this. You can also find the compatibility guide directly on our official website under Support Tools. If you have any other questions, please don't hesitate to contact Plantronics Customer Care at 800-985-9815."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I have a vvx311 polycom phone and would like to buy the supra plus hw251n headset. do i need to purchase anything else to go along with it?","answer":"Hi! Yes. According to our Compatibility Guide, you will need to use the U10P quick disconnect cable in order to connect the headset to your desk phone. Please feel free to contact our Customer Care Team at 800-985-9815 if you require assistance."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with my comdial impact phone, and if so do i need to purchase anything else? i do not need wireless system.","answer":"You'll need an M22 amplifier too, and the quick-disconnect cord that goes with it. This HW251N won't plug directly into your comdial."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this work with avaya phone 9611g model?","answer":"Hello! Yes, it is compatible with your Avaya phone however, in order to be able to connect your headset you require either an M22 amplifier or you can use quick disconnect cable called HIS cord. The part number for this cable is: 72442-41. If you have any further questions, please don't hesitate to contact our Customer Care Team: 800-985-9815."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there a way to remove the headset that goes over the head and use an adapter to over the ear instead?","answer":"Hello! No, this version is not convertible. We recommend you to check out our Encore Pro 540. Feel free to contact our Customer Care Team at: 800-985-9815 if you have other questions!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What else do i need to make this compatible with the toshiba dp5032-sd digital telephone?","answer":"The Toshiba DP5032-SD has a built in headset port. So, all you will need is an A10 Modular Cable and you are all set."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I use AT&T 1070 phones in the office. Do I need an adapter or can this go directly into the headset port?","answer":"I believe you will need an adapter."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is it compatible with avaya 9508","answer":"Hi Jennifer, yes this headset is compatible but you will need to purchase the HIC adapter to go with the headset. Below is a link for you. Give us a call at 1-800-683-5715 for any further questions. https://www.amazon.com/Plantronics-Adapter-Cable-Avaya-phones/dp/B00NNPQHAQ/ref sr 1 3?ie UTF8&qid 1466011028&sr 8-3&keywords 49323-46"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What adapter do I need to connect this to a panasonic link to cell handset?","answer":"i do not know we purchase for use with landlines sorry"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what adapter do I need for an lg cell phone","answer":"wont work with cell phone"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with the cisco ip 7941 phone?","answer":"This headset is compatible with the Cisco 7941 phone with the additional QD Modular plug cord."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I have one sided hearing/hearing aid. The way it is oriented in the picture will not work with my hearing aid. Can it also go over the left ear?","answer":"Yes. The microphone piece can be turned, to the device can be worn on either ear."}
{"index":{"_index":"nlp_pqa"}}
{"question":"If I have this connected to the phone or not, can I hear a ringtone from the headset and not the phone.?","answer":"Unfortunately not. You'll need a wireless headset like at the link below if you want that feature. 1-800-683-5715 https://www.amazon.com/dp/B073V99416"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What adaptor do i need to use this headset with a panasonic kx-tga6860 cordless phone?","answer":"cant do it"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I have an nec dt-400. what adapter do i need?","answer":"Most NEC DT series phones have a headset " port and can use the A10 Direct Connect QD cord. If you want outbound voice volume control, a M22 Amplifier is used.""}
{"index":{"_index":"nlp_pqa"}}
{"question":"I have a 67tb caption call phone, will this work with that and do i need some sort of adapter?","answer":"Hello! Unfortunately we are unable to guarantee compatibility as your desk phone is not listed within our compatibility guide, nor we're able to recommend an accessory. If you have any other questions, please don't hesitate to contact our Customer Care Team at: 800-985-9815"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Not clear on the need for an adapter. I want to use for dictation connecting to my pc's usb port. do i need an adapter or any extras?","answer":"Hello, yes you will need to purchase a separate adapter in order to connect to your computer, which i will leave in the link below. Another great headset I recommend that does not require an adapter is the Discover D711u. Check it out below or please feel free to give us a call at 1800-683-5715 for any further questions you may have. :) https://www.amazon.com/Plantronics-DA80-USB-Audio-Processor/dp/B00W2N5D1Y/ref sr 1 3?ie UTF8&qid 1516289392&sr 8-3&keywords DA70 https://www.amazon.com/Discover-D711U-Monaural-Softphone-Warranty/dp/B076TG2QF3/ref sr 1 1?s electronics&ie UTF8&qid 1516289432&sr 1-1&keywords D711u"}
{"index":{"_index":"nlp_pqa"}}
{"question":"if I add a Plantronics 3.5 right angle QD cable will this head set connect directly to our IPhone 5 phones?","answer":"yes, with the Plantronics 3.5 QD cable, yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What connection is needed to use with Avaya phones?","answer":"Hi R, if you give me the model of Avaya phone you have I can help you better."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What type of plug-in end does this headset come with? Is it a regular phone cord end?","answer":"It has what we call in the industry qd cord at the end. Basically you need to purchase another cord/amp so you can use this headset with your telephone. What phone are you trying to connect the headset to?"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what adapter/accessories needed for new Mitel phones? is it the same for ShoreTel230?","answer":"Sorry guy! I don't know!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it work on Avaya 9608G","answer":"Yes, but it doesn not plug in directly to the headset jack on your phone, so you need the Plantronics HIS cable, Part Number: 72442-41. I do not have this part on Amazon but I'm sure you can find it. I can order a new one for you for $45 but I'm sure you can find a used one on Amazon. Thank you, Matt"}
{"index":{"_index":"nlp_pqa"}}
{"question":"is this product neor refurbished?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What cord do i need to purchase to use the headset with a comtel phone? (rj9 headset port)","answer":"I purchased a quick disconnect cord that connect to the phone and then headset. Works like a charm."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with the panasonic KX-DT343?","answer":"DON'T KNOW, HAVE A NEC PHONE SYSTEM"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I would like to use this headset with a cisco CP-6921 phone. which adapter do i need?","answer":"Hi there, you need the 26716-01 cable or an m22 amplifier. Give us a call with any further questions at 1-800-683-5715."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with the Cisco CP-8811 model & i would need to buy the adapter also, correct?","answer":"Yes, it works but you need the Quick Disconnect cord, Part Number: 26716-01"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I'd like to get this for our office, we need a good wired headset for the polycom vvx501 phones. will this plug in directly?","answer":"Hello! According to our Compatibility Guide you will need to use the Vista M22 amplifier or the DA80 adapter in order to connect the headset into your desk phone. You will need to use one of these options since the connector of the headset itself is a Quick Disconnect. Please don't hesitate to contact our Customer Care Team at 800-985-9815 if you require assistance."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I have a toshiba phone model dp5022-sdm. what cord do i need to buy to connect it to this phone?","answer":"Hi Kerry, you will need the M22 amplifier. Below is a link for you. Give us a call at 1-800-683-5715 for any further questions. https://www.amazon.com/gp/offer-listing/B000NX3OMA/ref sr 1 2 olp?ie UTF8&qid 1472241171&sr 8-2&keywords m22&condition used"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I need some sort of adapter to use this with a Cisco IP 7945 phone?","answer":"Hi Carter, yes you will need the U10 adapter, part number 26716-01. Give us a call at 1-800-683-5715 for any further questions."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What adapter will I need to use with my Samsung S4 cell?","answer":"GO TO www.plantronics.com and you will find answers to your questions."}
{"index":{"_index":"nlp_pqa"}}
{"question":"do I need an adapter for a Avaya model #700504844?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this headset work with broadview networks office suite phones?","answer":"It works with all systems but usually you need the M22 amp."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this fit into my Panasonic cordless phone?","answer":"Hi Janice, you would need to get the 2.5mm to QD headset adapter to go with this headset, then it would work with your cordless phone. Give us a call at 1-800-683-5715 for any further questions."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this headset work with IPhone 5,6, 6+ with or without an adapter?","answer":"No, you need to buy an adapter to go from the plantronics headset to an iphone or other phone. The end of the cable is the standard Plantronics quick disconnect. With the adapter cable it works perfectly! Use it all the time in my office when I disconnect from my Avaya phone and want to walk around talking on my iPhone. Fantastic headset well worth the money!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the headset come with the base and cord?","answer":"Hi Tina, this headset comes with the headset only. You'll need the headset amplifier or direct connect cable, depending on your telephone. Give us a call at 1-800-683-5715 for any further questions."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with a lg 5012d phone, assuming i have the 27190-01 cable","answer":"You will require a QD to headphone cable/adapter."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this the complete headset? As in top-cap, crown races, bearings, etc.","answer":"i ordered it, but i never got it. the only thing im not to sure that it comes with is the top cap. it should come with everything else"}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it work on xbxo one","answer":"No they only work on the 360 xbox . I have both and use both.."}
{"index":{"_index":"nlp_pqa"}}
{"question":"can i listen to music on my ipod and chat with friends on xbox at the same time if i use a headphone jack splitter?","answer":"You would need some kind of mixer to get it to work. Two audio signals going to one set of speakers will only play whichever is more powerful. You would also need to make sure the splitter will carry the microphone signal. Most splitters only account for stereo output, not for microphone input. If you set it up so the Xbox is only using the the microphone it could work. So the input would use you iPod to play music while the mic is going to the Xbox. The Slyr uses a USB for the mic input and an RCA red and white for stereo input. So you could plug the iPod into the RCAs with an adaptor and the USB into the Xbox. You would have to test it to verify though."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I use the mix amp that it comes with on my Xbox One?","answer":"I'm not sure but I used it with my PS4. I just did the 3.5 mm plug on my friend's Xbox One."}
{"index":{"_index":"nlp_pqa"}}
{"question":"No one can hear me on xbox one","answer":"it says on the box that the xbox one requires additional chat adapter ether then that I have no clue since I don't have a xbox one yet"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this have a usb connector?","answer":"yeah"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Dos it work for Xbox 360?","answer":"It should work"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I own a Vizio TV that only has a green audio out (no red/white slots) and I use an HDMI with my Xbox 360. Will this headset work with my setup?","answer":"You wouldn't be able to use the mixer that comes with the headset and the only way I can think of to use the headset is with an adapter. There's a tutorial on YouTube from Skullcandy that shows how to set up on the 360."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do they hook up to the game consoles like a pair of turtle beaches would essentially?","answer":"Yes. The cable has 2 different hookups on the end, One end plugs into the audio out and the other is the USB power. Just like turtle beaches"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this work for xbox one S?","answer":"It should work."}
{"index":{"_index":"nlp_pqa"}}
{"question":"dos the packige come with every thing to hook up to a xbox 360 ?","answer":"It comes with the USB connector and you can just plug that into the Xbox but you only need the cord (the one smaller than the 3.5mm jack) if your Xbox requires that"}
{"index":{"_index":"nlp_pqa"}}
{"question":"So, these are totally comparable with the Xbox One?. Any adapters needed?.","answer":"Per Skullcandy....yes it works directly with xbox. Al"}
{"index":{"_index":"nlp_pqa"}}
{"question":"how good are these for fps gaming?","answer":"Great...excellent sound and nice mic that you can tuck away."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What adapter do I need for Xbox one","answer":"Look up xbox one chat adapter"}
{"index":{"_index":"nlp_pqa"}}
{"question":"let me get this straight. cause im not 100% sure. i can plug in the included shorter cable for a phone? the hesh 2's are too bulky for school","answer":"yup"}
{"index":{"_index":"nlp_pqa"}}
{"question":"can you plug it in to a ps4 controller","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i use it on a ps4 without an adaptor?","answer":"i am not sure of the inputs on the ps4 but it has a usb port connector and the 3.5mm jack connector also so if the ps4 is able to use any of those connections, then you can use it"}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it do both chat and game audio on the xbox one when using the adapter","answer":"I don't have an XBox but on my PS3, I put it all the was to game then i give it one click to the voice side. For added volume on the PS3, you can adjust voice volume under accessory."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will it work with a Mac for Skype calls?","answer":"Absolutely, i own a mac and i use them all the time, also i can use them to take phone calls when im lazy. The mic is very good."}
{"index":{"_index":"nlp_pqa"}}
{"question":"this product works with Xbox ONE???????","answer":"Kinda, you need to buy the adaptor from Microsoft. Then buy a cable for the audio input, which is around $5. But you'll experience issues such as adjusting the mic and volume. I personally won't recommend this for the xbox one. Just get the Skullcandy SLYR for xbox one.."}
{"index":{"_index":"nlp_pqa"}}
{"question":"do I need an adapter to use these with xbox 360?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do they work with xbox one?","answer":"No they don't , but let's hope that Microsoft makes a wireless headset"}
{"index":{"_index":"nlp_pqa"}}
{"question":"can you listen to music and have game audio going though the headset at the same time ?","answer":"Yes. Any headset will do that."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I need the Xbox one adapter to use the headset for the Xbox one?","answer":"Yes you will need the adaptor for use with the Xbox one. However, I have heard that there is a SLYR headset coming out that is just for the Xbox One. I think the price will be ninety some dollars and be sporting the Halo game look in a white coat. So now you can buy this awesome headset and buy a 25 dollar adaptor or buy the entire thing together with a halo look, listeners preference. :-)"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it have mic monitoring, or the ability to hear yourself speak through the headset so you are not shouting?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this connect to PS4","answer":"I am not sure. I would call Game Stop and ask them or ur local video store."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can these be used for wii u?","answer":"Good Morning! Per Skullcandy, they should work. Thanks! Al"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what is the difference between these and the xb1 edition?","answer":"The only difference is sound quality, and quality of the mic"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are these cups large enough for big ears over long periods of time gaming?","answer":"They are very good for long periods of time because i play cs:Go for 3-4 hours straight and no pain or anything, very comfortable. Hope this helps."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are they wireless","answer":"No, they have a really long cord."}
{"index":{"_index":"nlp_pqa"}}
{"question":"how is it used with xbox 360 ?","answer":"Plug it in"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are these compatible with Windows 8.1?","answer":"Yes its compatible with windows 8.1 and windows 10."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do these compare to Uproars in terms of sound quality?","answer":"The sound quality is really really good, but after a few years it slowly declines, but overall stays pretty loud. I once had someone mistake the sound quality for a $200 dollar pair of beats..."}
{"index":{"_index":"nlp_pqa"}}
{"question":"what about the sounds for xplosions an that kind of sounds?","answer":"The sound quality for sound effects like explosions is exceptional. The quality of the low range of sounds is excellent so it really picks up rich sound effects."}
{"index":{"_index":"nlp_pqa"}}
{"question":"is it good for listening music?","answer":"It is great for listening to music. It has a bass booster and bass control. Hope this will help."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this work with PC? If it does how?","answer":"Yes it does work on pc. I personally just plug it into the headphone jack on my pc. If you want to use the extension cord that it come with it, you'll have to plug it into a usb port, then plug the headphones in. The headphones also come with a detailed instruction manual that shows you how to hook it up. I love my slyr headphones, and would recommend it to everyone."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How is the sound quality on a mobile phone? Do you get the same sorround sound?","answer":"It's not exactly the same because not all phones support surround sound but the quality of the sound itself is still top notch and the and it still gets pretty loud"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the in-line mixer work on PC? (Seperate chat & game audio)","answer":"Yes - it should work on Mac and PC."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What do i need to hook it up to a ps4?","answer":"Per Skullcandy, it will work directly with PS4 Thanks!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I can use these fully wireless right?","answer":"No. They are definitely corded. One cool feature: they disconnect from the earpiece as well as the other end. If you have any problems, check to make sure that they are connected well on both ends."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will it work on the ps3?","answer":"Yes, that's the only reason I own them!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you use it on playstation 4","answer":"As long as you have something that has audio components like I have, yes. I have an hdmi to component converter in order to use mine on my tv. I have an old tv. Without this, I doubt it would work. But I am not 100% sure. But doing it the way I did allowed me to use it on my ps4."}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it connect wirelessly to android and ios devices?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"are these compatible with the ps3?","answer":"Yes."}
{"index":{"_index":"nlp_pqa"}}
{"question":"works with ps4? how is it with call of duty and does it drain your battery on your controller?","answer":"Gotta connect slyr to ps4 directly to use it because of the mixer and no headphone cord make it work its better for the pc."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it work with the PS4?","answer":"Yes any console you just have to buy adapters like the turtle beach Dolby dss by ear force or mic adapters I had to buy those for my xbox one"}
{"index":{"_index":"nlp_pqa"}}
{"question":"does this come with any sort of case? or bag?","answer":"It just come in a box. No storage bags."}
{"index":{"_index":"nlp_pqa"}}
{"question":"It works with play station 4?","answer":"Yes. It should work with PS4. :D"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with Xbox one?","answer":"The Skullcandy SLYR is compatible with the XBox One. It has adapters specifically for it, in fact."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will it work with a polycom vvx 250?","answer":"Yes,it will work with a polycom vvx 250."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this work with iphone headphones?","answer":"No, this doesn't work."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with polycom vvx 400 and 410?","answer":"Yes,it work with polycom vvx 400 and 410."}
{"index":{"_index":"nlp_pqa"}}
{"question":"which company earphones would be compatible for this?","answer":"Depends on how you are going to use it. I used mine to connect RJ9 jack on plantronic wireless headset base to separate mic and speaker Jacks on computer. If you connect the RJ9 to a supported phone, any computer headset with separate mic and speaker plugs should work."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this headset wireless with Xbox one because I can’t figure it out","answer":"You need to connect the optical cable from the transmitter to the xbox, and then connect the USB cable to the transmitter and then into your xbox. If using with the Kinect, you must connect the headset to your controller."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this headset require a separate purchase of an adapter for use with Xbox One?","answer":"This comes with everything you will need to use with xbox one."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do these work with playstation 4","answer":"Well you won't be able to use the mic/sound control, but you can still use the headset by plugging the 2.5mm jack into your PS4 controller"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is is compatable with an Hp laptop ? My sons port is for headphones. Im trying to find a headset that will allow him to use that and the mic","answer":"Yes it indeed is. I've been switching between this headset and one from Razer. The cushioning is decent as well. Keep in mind, the cord is detachable for easy stowing."}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it work for an xbox 1?","answer":"As long as your controller has a 3.5 headset jack, which I know comes standard on the One S controllers, then yes it works with Xbox one."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do these headphones connect to the Xbox360 controller?","answer":"They connect directly to the system and your television. I use PlayStation. Hope this helps!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is the headphone jack 3.5mm or 2.5mm? Will it work with the XBOX ONE headset adapter?","answer":"Low audio, bad quality"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Okay, I want to get this for my gamer son, but what will I need to make sure it works with his Xbox One? Does it need that headset adapter? Thanks!!","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with the Xbox One?","answer":"I have a ps4 not a One so im not sure but i would think yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work without the adaptor on the second gen Xbox one controllers?","answer":"No the adapter is required"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it work with ps4","answer":"Yes this works with PS4"}
{"index":{"_index":"nlp_pqa"}}
{"question":"can i use on ps3","answer":"Yes. They work on ps3 and Xbox 360. I think it also works on ps4."}
{"index":{"_index":"nlp_pqa"}}
{"question":"does this work with a Mac? I need it for conference calls.","answer":"It plugs in using USB so it should work."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this worm","answer":"First off I need a proper question before I can give you an answer"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this double as a headset for iPhone? Will it work as speakers only no mic for iPhone?","answer":"yes it will. I currently use this for my day job."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this headset's game and chat audio work with both next gen consoles? (Xbox One and PS4)","answer":"Yes but you need purchase adapters to make the audio sound better and like with any console boy a sound processor to enhance audio, the processor makes my skullcandy slayers sound smooth and crisp as well as my turtle beach ear force tangos. I would recommend the Dolby dss sound processor from turtle beach"}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this work with the new xbox one controllers?","answer":"Yes but you need to buy the Xbox one mic adapter for it"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this a wired mic?","answer":"Yea it's wired but it's a nice pair of headphones I'd definitely recommend it cuz u get ur money's worth."}
{"index":{"_index":"nlp_pqa"}}
{"question":"does this have a head phone jack or usb?","answer":"Both. From the head set it connects via 3.5 to the controllet which connects via usb or rca."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I work in a call center and i’m looking to use these wirelessly to take calls at work? anybody use them in a similar way? it’d be nice because then i’","answer":"They are a wired headset."}
{"index":{"_index":"nlp_pqa"}}
{"question":"can these headphones be used with a PS4?","answer":"Yeah, you have to plug the headset to the controller. Just 1 wire that is about 6 feet long."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with the Xbox One?","answer":"Yes, but I would just save up and go for turtle beach or some other brand... these aren’t necessarily the greatest"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this a wireless headset","answer":"No it's not it does have a long wire for multiple connections"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with a newer virson Xbox One controller with the 3.5mm jack?","answer":"If it's the same jack with iPhone , then it should be fine."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this headset compatible with the xbox one?","answer":"Jes, Jes it is."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this work for PC","answer":"Absolutely. It has a USB jack on it, and if you are alright with stereo you can simply plug it into the headphones port. If you use the USB, the drivers may be a bit difficult, but that'll happen with any surround sound headset. The biggest problem I've encountered so far was solved simply by opening Devices and Printers " in the Start Menu.""}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are they wireless?","answer":"no"}
{"index":{"_index":"nlp_pqa"}}
{"question":"how long is the wire?","answer":"The wire is pretty decent. It stretches all the way across my room and it's about 13 feet or so."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How long will these headphones be on sale?","answer":"Till black Friday"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I use this by connecting it directly into my ps4 controller","answer":"Yes you can but you will experience feedback issues, its not worth it. Just go with the usb set up, plugging it into the controller is more of an xbox thing."}
{"index":{"_index":"nlp_pqa"}}
{"question":"work with xbox one???","answer":"with the stereo headset adapter with is not included"}
{"index":{"_index":"nlp_pqa"}}
{"question":"how long is the cable?","answer":"Around 6-7'"}
{"index":{"_index":"nlp_pqa"}}
{"question":"will the headset itself play audio","answer":"Yes I use it with my phone on trips"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this work with the nintendo switch?","answer":"If it has a 3.5mm output for the cable or a usb slot then it should be compatible"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this headset work with an Xbox One S controller ?","answer":"Yes, only if you have the Xbox Adapter or a new controller with a 3.5mm jack. So yes."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What size jack is the male end?","answer":"i use it on my ps4 an most electronics i tablets pc cell phone does come with an adaptor like for the size of an x box if need be smaller the maine connection is trough usb also so you can use it in various ways mine are still in good condition they are kind of big but don t brake easy or anything"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will these work with PS4","answer":"Yes they will"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Just want to confirm, both audio and voice are compatible on the PS4? I've seen conflicting info saying that it's only audio.","answer":"Definitely is. I have had 2 pair of these bad boys since Christmas 2013. The audio is played from the TV Audio out port with a GMX Mixer powered by a USB cable. If you want you can completely remove the GMX Mixer from play and plug it directly into your PS4 Controller. I don't recommend it unless you are in party though because you lose a lot of audio that way."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Works with an iPhone?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I need a mic filter for breathing and the pops and stuff your mouth makes","answer":"no I don't use one and haven't had any trouble."}
{"index":{"_index":"nlp_pqa"}}
{"question":"do these only work with the old style xbox one controller?","answer":"They will work on all Xbox one controllers."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can these switch between listening to music in stereo and talking on the phone (mono/both ears) on an iPhone via bluetooth?","answer":"umm i dont know try looking at the specs some more"}
{"index":{"_index":"nlp_pqa"}}
{"question":"do you recomend something else","answer":"Got mine in April and one side stopped working this week -- I've only had them for 4 months. Customer service has yet to respond. I'm not impressed."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can someone help me figure out how to get the mic working on the head set with a xbox one. we have the adapter cord also.","answer":"Hi J. Klenske, if your xbox one is the new version, you can just use with a normal 2 in 1 splitter cable. If your xbox one is the old version, then you have to buy a microsoft adapter to that it work."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can it work onxbox 360 wireless??","answer":"Sorry, it can not. it can work on ps4 with the attached cable line"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I just bought these. and can i get them to snap on anywhere i've been trying for 10 minutes now. don't want to break anything.","answer":"You have to put the individual clips on first. Then you can attach the outer ring by putting the begs into the holes on the clips."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this come with the adapter to get game sounds from the PS3?","answer":"If your controller has 3,5 mm porn no adapter will be needed"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i just connect both the usb and headphone jack of the headset to my xbox instead of just my controller or just the usb can do that?","answer":"Yeah both the usb and headphone jack"}
{"index":{"_index":"nlp_pqa"}}
{"question":"The cable that connects the headset to the ps4, is fraying and haven’t even had a year. can i buy just the cable and not purchase a new headset","answer":"Did you try electrical tape, or cord is completely severed?"}
{"index":{"_index":"nlp_pqa"}}
{"question":"can this set be used with only the usb port?","answer":"No, USB only powers up LED light"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are headphones only good to talk with other gamers or can they be used if you want to hear the game volumn alone like a walkman?","answer":"These tangle very bad, do yourself a favor and get a decent pair of headphones."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the xbox one adapter make the audio quality better? currently i plug directly into controller and audio isn’t very good.","answer":"Sorry I do not have a Xbox one so i can't say"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do these have mic monitoring? Meaning you can hear your own voice through the headset?","answer":"No, unfortunately they do not.. I too love that feature but its not available with these."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is it 2019 yet?","answer":"Yes."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this work for a switch ?","answer":"Don’t waste your money. I bought it and after 30 the mic stopped working and one side oh the headset stopped as well."}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it work with a nintendo switch?","answer":"Not sure don’t own 1 Sorry"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I need to buy anything extra to used in xbox one s controller?","answer":"One should not need any extra attachments to connect to an Xbox One S controller. As long as there is a 3.5 mm jack in the side of the controller facing one using it, you’re good."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this gaming headset come with an adapter?","answer":"This xbox one headset can be better compatible with PlayStation 4, PSP, Nintendo New 3DS LL/3DS (audio), Nintendo 3DS LL/3DS (audio),PC, Laptop, Tablet, Computer, Mobile Phone, Xbox one ( NOTE: the old version one need an extra Microsoft Adapter, not Included) and other devices that support a 3.5mm wired audio connection."}
{"index":{"_index":"nlp_pqa"}}
{"question":"We can not get the mic or headset to work with pc! What are we doing wrong?","answer":"If you have windows 10 you have to activate the mic for Cortana so you can talk to the PC. It was a little struggle but use the help section"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do these work on a laptop? With only one 3.5 port","answer":"Theres 2 ways use them theres 2 plugs put adapters u can use USB port or regular headphones port these are so awsome I love them"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can't get my Acer laptop to recognize that the mic even exists not appearing in any control panel dropdowns. Any ideas?","answer":"Try using a headset/earphones with a mic. On some laptops- the mic isnt recognized or you cannot see it in any drop dowms- but if you plug into it with headphones/earbuds with a mic- it works just fine. Found that out during the current teleworking situation."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the gaming headset have any warranty?","answer":"YES. Please contact the seller with any problems about the ps4 headset. The company will provide 12 months of free replacement, or even a full refund for your xbox one headset."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I'm very interested in this headphones, but the shipping for Serbia is very expens, 77$. Can you send me this headphones some other way to cost less?","answer":"This is a great product. It'll be worth the extra cost"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are the ear cups leather or leatherette?","answer":"They aren’t real leather, however, they are comfortable"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why doesn’t it light up when I’m using it for the Xbox?","answer":"The USB has to be plugged in for the lights to come on. They do make an adapter for your controller you can buy."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are these open back headphones? Doesn't look like it.","answer":"They are not"}
{"index":{"_index":"nlp_pqa"}}
{"question":"i cant hear sound on my xbox one with these how do i fix this?","answer":"I don’t. Didn’t have to do anything extra or special to hear out of ours, but we have a PS4."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I can't hear the sound of the headphones on both sides at the same time on ps4? how do i fix this?","answer":"Please check your ps4 settings. Steps: 1. Open Device Manager (Right Click on the Start Button and select Device Manager) 2. Click on Sound, Video and Game Controllers to drop down a list of audio software 3. Right click on the name of your audio driver and choose Update Driver Software 4. Select Browse my computer, then Let Me Pick from a list of device drivers 5. From the list of drivers, choose "High Definition Audio Device " " 6. Install the driver 7. Restart""}
{"index":{"_index":"nlp_pqa"}}
{"question":"Seen bunch of great reviews no bad ones seen someone say they have family members that prefer these over Astro 10’s that says a lot why So cheap ?","answer":"It is a great product so we bought another one. Cheap? Only in price...not every company needs to charge top dollar for a great product"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How long is the cable on this headset?","answer":"About 4-5 ft long. Longer than most other headsets, part of the reason for getting the 2 we have...and we love them"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I use them on the computer no for games?","answer":"Of course, he can use the computer"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this gaming headset come with an adapter?","answer":"No. Shouldn’t need one."}
{"index":{"_index":"nlp_pqa"}}
{"question":"The ad states it doesn't work on Xbox with old one ". Does that mean the older consoles 1st generation Xbox one or does that mean an older controller?"","answer":"It is probably referring to the old controllers since they don't have the 3.5 mm jacks- so you cannot use the headphones with them."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is it good for player unkown battlegrounds?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can it be cordless?","answer":"No. It is plug in only."}
{"index":{"_index":"nlp_pqa"}}
{"question":"are the headphones tight? Like does it get uncomfortable to wear after 2 or 3 hours.","answer":"No the Fit is nice but the cord is my major complaint just twist into a mangle mess."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will i need a adapter for my xbox one s?","answer":"No you can plug it right into the controller. The Xbox One S controller is compatible for 3.5mm plug so you're good."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work for Xbox 360?","answer":"NO, but it works for Xbox one slim/X and other version with 3.5mm 4 pin audio port"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i have a newer xbox one s controller (including 3.5 jack), how can i get the rgb lights and mic button to work? contoller has no usb port...","answer":"The lights will only come on if you connect the USB port into a computer. The mic works fine and is connected to the Xbox one controller"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do I know which version of the Xbox one that I have","answer":"There is Xbox one, Xbox one s, now Xbox one x. It will say on the box it came in. It doesn't matter which version this headset will work with it."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How good is the mic though?","answer":"It’s really good! It can pick up on a lot of little noises.. so when I’m playing online multiplayer I have to mute my mic so no one hears my kids screaming in the background. Also it’s super comfortable."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will they come with an in line control","answer":"No, the volume control and mute button are located on the nearcup."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you take off the mic and use the headset as headphones ?","answer":"You could use them as headphones, however there’s no need to remove the mic. If you would like to move it away from your face, simply told the mic upwards."}
{"index":{"_index":"nlp_pqa"}}
{"question":"My laptop has a combined mic/speaker jack, would I need an adapter?","answer":"it includes a combiner for this purpose."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are these childs size also? Or mainly adults.","answer":"Although the headset is a perfect fit for all head sizes, we sincerely do not recommend use by kids below 12 as it would damage kids' hearing """}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it work well for watching applications such as netflix, as well as movies on dvd or blu-ray?","answer":"Yes, I have had no problems with that application"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this come with the usb cable to connect to your computer?","answer":"Yes it does, and it's fantastic!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this headset noise cancelling?","answer":"Model C620 has noise cancelling built in (binaural design). Model C610 is the same thing but does not have noise cancelling built in (monaural design). My experience with noise cancelling headphones is that they work very effectively at blocking consistent noise like the sound of the jet engine on an airplane or the sound of the office air conditioner. However sounds that not consistent (like a conversation carried on by nearby co-workers) is not blocked and sometimes seems to be amplified because all the other consistent noise has been blocked. I learned this using my Bose noise cancelling headphones. When wearing them in the office, I could hear conversations on the other side of the office that I could not hear when taking the headphones off. This has never been much of an issue for me wearing the Plantronics C620 headset because the speakers are small enough they fit ON you ear not OVER your ear (completely covering) like the Bose. Because of this you can still hear some background noise even with the noise cancelling feature on."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is it possible to hear your own voice loud and clear (not blocked by earpiece)?","answer":"Based on the design, I would say yes. However, I do not know with certainty because I've never used them."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the suggested replacement for this, since c620 is getting phased out. The 720/500 pinches my ears (wearing glasses). Should I go with c320?","answer":"Hello, a great headset i'd recommend is the Discover D712u, i will include in the link below. It comes with a 3 year warranty, delivers crystal clear calls and audio, and it's very durable and built for all day comfort. Please feel free to call us at 1800-683-5715 for any further questions you may have! :) https://www.amazon.com/Discover-D712U-Softphone-Advanced-Replacement/dp/B076JHVLD1/ref sr 1 1?s wireless&ie UTF8&qid 1512573280&sr 8-1&keywords D712u"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can my 8 year old play it?","answer":"Yes, they will pick up on it quickly... but, they may need an adult to set it up, and get it online."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is it compatible with Indian power supply?","answer":"it uses a USB-C so anything that will take a USB-C should work, I would imagine you just need to purchase an indian USB-C plug and you will be good to go :D"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When will there be more stock?","answer":"Hang in there. Shipping dates are changing constantly and it's worth checking multiple sources frequently. There are many reports of units shipping faster than stated but if it says unavialble then I guess you can't even order it."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How fast does your internet connection need to be?","answer":"Many games do not need a good internet connection, or any internet connection at all to play. You will still need internet to download them though. The speed does not really matter in this case."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this work with xbox one?","answer":"sorry, Im not an xbox user."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What will be the frame rate for most games? I'm hoping for 60 fps","answer":"For oculus approved apps yes. If you are streaming from steamvr with virtual desktop then it depends on your connection"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you record gameplay?","answer":"Yes."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there a creative platform where you can design a room/game in VR?","answer":"None that I am aware of."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are there any multi-player games for this ?","answer":"Yes. Several as long as you know someone with another headset."}
{"index":{"_index":"nlp_pqa"}}
{"question":"can you hook this to your xbox 1 ?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"can i watch travel viedos on it?","answer":"Yes, you can! There a number of different video apps available for the Quest."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this game have any football games?","answer":"No they’re aren’t any football games for the Oculus Quest at the moment."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you play job simulator?","answer":"It is available on Quest"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with vrchat ?","answer":"There are certain restrictions but yes, it will work with vrchat."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will the experience be the same for someone with only one seeing eye?","answer":"Depth perception requires two eyes so it would not look the same as it would to someone who has both eyes. They may still enjoy.the experience however, I'm not sure."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Unit we rec'd didn't work so we're doing an exchange. How do we get the games we just purchased onto the new unit?","answer":"You purchase them from the app on your phone and then I believe they show up on your desktop with the 2 free ones"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How is this better or slightly different from the rift?","answer":"It requires no sensor. It requires no PC. You can play it anywhere as long as you avoid direct sunlight. It’s a lot more immersive and portable without being tethered to a wire."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How can I make it more comfortable! I try to knit hat for my forehead but it really ways on my cheeks. Any ideas","answer":"There are two solutions. Either add a battery pack or weight to the strap behind your head to balance it out so that the straps don't have to be too tight. There is a kickstarter going right now called VR Balancer. Second solution is kinda hard to explain. Add a velcro strap between your ear and temple that runs over the top of your head and attaches to the strap on the opposite side. It will relieve some of the weight."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Son 500 d lares con todo y envi ? Es que no me aparece ning n precio de importaci n ni de env o","answer":"No me han reenbolsado el monto y tampoco me entregaron el Oculus Quest me estafaron"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it come with audio headphone?","answer":"It does not come with a headset, but it has 3.5mm headphone jacks on both sides."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this be hook up to a PC?","answer":"Not directly, but you can use Virtual Desktop or similar to stream the content from you PC through the headset and control through the Touch controller or other game controller."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this support the melody VR app?","answer":"Yes, there is Quest version of the MelodyVR app! You can find the available apps for the Quest on our website here https://www.oculus.com/experiences/quest/"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it have to be connected to a phone or any other device after set up?","answer":"Only during the set up do you need a phone or a tablet, once it is set-up you do not need it any longer. Do keep in mind though I believe there are certain functions in the menus that can only be accessed by the phone or tablet, but outside of using this for development of games, you shouldn't need a phone, except setting it up."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do i need a smart phone i have a samsung tablet a gaming pc and a samsung 55 inch 4k tv but my my phone is one of those free insurance phones?","answer":"As long as you can install the Oculus app via the Google Play or Apple store I think you'll be fine."}
{"index":{"_index":"nlp_pqa"}}
{"question":"incluye el cable oculus link? includes the oculus link cable?","answer":"Si"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When will they be back in stock? were can i buy them for the retail price? i don’t wanna give scalpers money","answer":"You can buy it right now. we have some in stock"}
{"index":{"_index":"nlp_pqa"}}
{"question":"is 64gb good for quite a bit of games? And should I have gotten it through oculus instead of amazon?","answer":"not really"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do the games come with it? Or do I have to buy them?","answer":"You have to buy them, but there are many demos to try and alot of free or BETA apps as well."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this have fullbody tracking soon?","answer":"Full body tracking really needs external tracking sensors whereas Quest has internal tracking, so probably not, although anything is possible with the right add-on hardware."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Plex is my main media server (for remote access). since plex is not only quest, anyone know what will be the equivalent replacement? many thanks","answer":"You can actually use the Oculus Gallery app to connect to a Plex server and other media servers. More details are available here https://support.oculus.com/267684857518882/"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why does it keep asking for a softare update?","answer":"Never had that issue"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what is the weight of the headset?","answer":"The weight of the quiz is fine because I bought an additional had bad to handle the extra weight"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I plug this in to my pc and play steam vr games?","answer":"Oculus recently released a Beta that allows this to work. Since it is in Beta there are limits and issues. It requires very specific cables and hardware at the moment. Search the internet for Oculus Link for more information."}
{"index":{"_index":"nlp_pqa"}}
{"question":"1. Why do I need a smart phone? 2. Will an Android tablet work instead of a smart phone?","answer":"It’s needed for the setup mainly, you can also buy and install games from there or stream your VR view to the smartphone. I would think the tablet should work just fine as long as you can get the oculus app in there."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Two identical units except one has 64gb, the other 128gb--and a price of $100 that separates them. $100 for an extra 64gb??","answer":"And they pay $8.95 for a Starbuck's beverage. Sheeple beware!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Other than more memory, is there any difference between this and the 64MG headset?","answer":"Other than storage, there isn't a difference between 128 GB and 64 GB models of the Quest."}
{"index":{"_index":"nlp_pqa"}}
{"question":"new amazon email says this item has be upgraded at no additional cost. Upgraded how? I've already ordered and payed for 128 gb","answer":"The email means your shipping has been upgraded. You are getting release day shipping for free, meaning you are getting the headset on the day of its release."}
{"index":{"_index":"nlp_pqa"}}
{"question":"So i own the ps4 vr but looking at getting an occulus what is the difference between the quest and the rift?","answer":"The Quest is a standalone gaming system, meaning the headset itself is the gaming system and contains the official App Store. The rift is PC powered, meaning you need a gaming pc capable of PCVR that you plug your headset into. The Rift is supposed to have more detailed and longer games, but you’re connected to a cord. With the Quest, you are able to play cordless (or play while charging). I don’t have a rift, but I love my Quest. It is extremely immersive and I don’t have any issues with game quality whatsoever."}
{"index":{"_index":"nlp_pqa"}}
{"question":"can this VR be connected to a TV for another person to see and hear the game","answer":"Yes! You will need some additional equipment though. It can stream directly to google chromecast or through an iPhone to Apple TV. It may work directly with some smart TVs too."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this have a gallery feature to view 3d photos / videos like the oculus go? the person at best buy said no, but he didn't sound sure.","answer":"Yes it does."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can two people play inside the same game at the same time. And if so what is needed","answer":"It depends on the game but yes. All that would be needed is a second headset."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it have voice chat capability?","answer":"It absolutely does! Also has pass thru vision. Tap the headset and you can see outside the headset to view your surroundings."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are you sure about the January ship date?","answer":"Yes bro order it!! Mine came quick"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What are some good recommendations for games to play on this?","answer":"Oh MAN ! Let me tell you ! I haven’t played a bad game yet. My favorite is Arizona sunshine, especially if you love killing zombies Space pirate ( a simple space shooter but EXTREMELY cool) that’s usually the one I showcase. I expect you to die is an AWESOME like escape room type Game"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If you add water, will it make its own sauce?","answer":"Don't forget the oregano"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why does the 64 GB version has import fees and this one doesn't? Is it a bug?","answer":"No because they include the tax inside the purchase price. You still had to pay tax however it is not written."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Where can I demo first?","answer":"Bestbuy will most likely have demo units after release day."}
{"index":{"_index":"nlp_pqa"}}
{"question":"If I purchase two headsets for my family, can we play multi-player games with just one purchase of the game? Or do we have to purchase the game twice?","answer":"You'll need to purchase a copy for each headset."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I play steam VR games with this?","answer":"There will be a cable upgrade available in the near future that will enable you to connect to a computer. That will allow you to play steam VR games."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this item ship to Hong Kong?","answer":"you can call Amazon if they ship there."}
{"index":{"_index":"nlp_pqa"}}
{"question":"This has 6dof unlike oculus go, but at least oculus go works fine in total darkness whereas quest refuses to let me even watch movie. ideas?","answer":"This is going to sound dumb, but I bought several of those plug in night lights that stay in the electrical socket and that was enough to allow tracking at night. Those lights also have an ambient darkness sensor and only come on in the dark, which is nice."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this oculus rift come with everything needed for beginners including the cameras?","answer":"Yes, everything you need is included."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it play Marvel Powers United?","answer":"not yet"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i return this after i open it if it is not broken. i have a small face and i'm afraid it will be too heavy or not fit.","answer":"If you feel it’s too heavy or it is pressing against your face, you are not wearing it correctly. The back of your head is supposed to support most of the weight of the headset. The back strap needs to be lowered (but not too low). Some people attach a powerbank to the backstrap using a cellphone holster or a bunch of Velcro stripes. The powerbank both can be used to charge your headset while playing, and can also serve as a counterweight."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will i be able to have this work on my computer in an AR type view from this headset?","answer":"Oculus team is working to turn this into a similar headset as the Rift S (eventually). However, in their OC6 conference they never mentioned supporting AR."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is storage space the only benefit between 128gb and 64gb?","answer":"That is correct. As it is meant to save the games in memory. Everything is the same"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can the quest play rift S games and can Rift S play quest games with quest users?","answer":"IDK."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this also connect with the computer?","answer":"You can connect to the computer but it is not necessary"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How long is the wait for shipping?","answer":"In my case was the next day"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Am i able to steam real-time vr editing from my maxed out i9 macbook pro tethered with blackmagic pro and if how if not would you know what vr to use","answer":"The Oculus Quest does not support this at this time. The Quest is a standalone VR system that does not require a PC (or Mac) to drive it. The computer is contained in the headset itself. There are some unsupported apps that do allow VR streaming from a PC running SteamVR if you're tech savvy enough to install and configure them (see RiftCat/Vridge and ALVR - the better option is ALVR, it is free and works best), but they're not supported by Oculus and you may not be satisfied with the results."}
{"index":{"_index":"nlp_pqa"}}
{"question":"i only want this for Beat Saber. how limited is the Beat Saber catalog? and can k-pop tracks be added?","answer":"Maybe there a mod , I know there a website with a game similar to beat saver with many tracks . It's called moonrider vr"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why most quest games are $30 per uploadvr?","answer":"Because developer need money for beer."}
{"index":{"_index":"nlp_pqa"}}
{"question":"If I'm planning to mostly use my Quest linked to steam to play games, do I need the 128 gig?","answer":"I guess not. You can save 150 USD to get the steam link and other games or accessories. But there are some huge games like Vader immortal which is almost 3gb each. But if you record videos with the headset, it will be stored on your headset storage."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What games are included with the oculus quest and to redeem the included games?","answer":"The games included are Star Wars VR Series for FREE . Includes Episodes 1-3 and Lightsaber Dojos. And you do not have to redeem the games because they are already included"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the quest box come shrink wrapped?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this oculus quest fit a ten year old eyes? Is the view finder adjustable? ""","answer":"It fits my 12 year old and he wears glasses. The spacing is adjustable"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How long does a charge last?","answer":"Not sure exactly how long, but long enough to get your oculus fix before putting it back on the recharge."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this work with Yealink T46G phones?","answer":"The headsets will work., but the adapters will not. Here is what you should consider if you like this system : https://www.amazon.com/dp/B00NQC389Y?m A1PBDPFFCAVYZF&ref v sp detail page"}
{"index":{"_index":"nlp_pqa"}}
{"question":"After buying this can it just hook up to the pc and play, or do i have to spend another 600$ jist to get it to work?","answer":"So it all in one. You don't need a PC at all. You have to attach it to your phone to help setup(connect to wifi and other things). They have slim amount free game but you will have to buy some. Most are around 20 to 30 dollars. They are working to streaming PC games to your head set but that is not the charm of oculus quest."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do you get games for it?","answer":"oculus store....in console"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it have Amazon Prime and Netflix apps?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this I am affect your vision","answer":"I have had no problem with my vision after using the device"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When is it coming out","answer":"OUt for 2 months already. I got mine on Amazon"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you get the game virtual rickality on the quest?","answer":"No. Not at this time. This title is for the Oculus Rift which is a different VR headset and requires a PC."}
{"index":{"_index":"nlp_pqa"}}
{"question":"whats the import duty for india?","answer":"I'm not sure"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with a mac and a sonnet egfx breakaway puck radeon rx 570? for a online training program?","answer":"It does NOT work with a PC - it is a standalone VR Headset using apps built in the headset. Unsure what you are trying to train on - there are multiple apps I would suggest you look for your specific use and search for apps that can achieve that."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will my already purchased oculus rift games I bought work on quest or will I have to purchase them again","answer":"It depends on the gaming company . Some with games will play on the oculus quest for free. Check with the game you order on the roof to see if it crosses over to the course for free"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When will my credit card be charged? Once the item is shipped?","answer":"Yes, I believe that a lot of online retailers, like Amazon only process the charge at the same time the item is being shipped."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What day will it be delivered if it’s in stock on July 30th?","answer":"Bad question! In stock is a physical location. Delivery depends on variables like distance, carriers available, shipping standard, overnight etc. I"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this be a prime item? In case it is damaged or needs to be returned for any reason?","answer":"As of right now it is sold by Amazon and labeled as a prime item. Amazon will accept your return as usual regardless whether it is labeled as a prime item, as long as it’s sold by them."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why is this one cheaper then the one on the oculus website","answer":"same price everywhere"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you attach a hard drive to it ?","answer":"No. There is no current way to expand the memory."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there a protection plan for the oculus all in one vr?","answer":"Not that I am aware of"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I develop little apps for fun on this if I am so inclined? (Not to publish, just for learning)","answer":"No, unless you enable developer mode."}
{"index":{"_index":"nlp_pqa"}}
{"question":"if you connect it to a pc is it going to take storage from the pc instead?","answer":"Yea"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When does the 128 version be available ?","answer":"Know I don’t"}
{"index":{"_index":"nlp_pqa"}}
{"question":"van it be connected to a pc to play pc games?","answer":"You can connect it it to a PC to transfer files but not to play PC games. It's a standalone device."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I got the wrong type of plug in and can’t use it in my wall to charge.... can someone help? !","answer":"Hello. You'd need to get an adapter"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you move around?","answer":"Yes supports up to 25’ x 25’ I believe, way more space than I have."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do you have to have a Facebook account for using it or download content ?","answer":"No. You can use a Facebook account but an oculus account works too. You need to have an account to download content."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why is it selling for so much.?This is price gouging. wait till after Christmas","answer":"Oculus is spectacular,"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you watch the players play on a tv screen?","answer":"Yes, if you have a smart tv, it may already have capability, if not you buy Google chrome it plugs right into tv and you can cast it to tv. Otherwise they can play without you watching, speakers are in headset. This is truly a awesome adventure"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i use this abroad? Plan to travel with it.","answer":"Definitely."}
{"index":{"_index":"nlp_pqa"}}
{"question":"The controllers usually freeze and only way to fix then is taking out the battery, any fix 4 that?","answer":"Not that I’m aware of. Mine only froze a couple of times so it wasn’t that big of an issue. Perhaps you should contact the company for further information."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is Skyrim Elder scrolls avaliable on the app store?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What operating system does this run on since it does not require a desktop PC?","answer":"Android"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you attach a hard drive to it","answer":"There is no way to expand the memory."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can creed, for quest, play against rift/s when they're on steam or oculus?","answer":"On YouTube there are guys who seem to make some kind of a living out of reviewing products, the Oculus Quest included. Some names that come to mind are Eric for President, Tyco Tech, Ramarcus, Oasis, and probably a whole slew of others. If you put that question in the comments section of their reviews I’m sure you’ll get an answer. Just make a copy of that question and paste into as many reviews as you can. Good luck."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the price for this 128 GB Model?","answer":"$499.99 and if you buy it from some other Companies it’s $529 plus $49 in shipping costs but if you buy from Amazon is shipping is free"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will there be an hdmi port to plug into?","answer":"No, there is no HDMI port, but there does appear to be a way to stream the content to a chromecast device using the oculus app on your phone."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there going to be a fullbody tracking for this?","answer":"The quest tracks your hands And head movement"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What’s the age range for this game?","answer":"13 and up."}
{"index":{"_index":"nlp_pqa"}}
{"question":"does this unit heats up ?","answer":"I haven't found that to be the case."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are they multiple games that can be played by more than 1 VR headset at a time and interest with both headsets at once...I.e. more than 1 player?","answer":"There are multiplayer online games and co-op games"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you watch movies with this?","answer":"Yes absolutely and very cool. I love it a great product. Finally, VR that you don't get dizzy."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I play purchaced games for the rift that are playable on the Quest without re purchaceing them?","answer":"If you have a supported graphics card you can with the new System link feature. It requires a USB C cord to connect it until the official fiber optic cable is released"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Wander App works on this device?","answer":"Yes, the Wander app is available for the Quest! You can see what apps are available for the Quest on our website here https://www.oculus.com/experiences/quest"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I need to buy a usb c to micro sd adapter for watching videos and movies?","answer":"No it’s all on there. That’s why we went for this system."}
{"index":{"_index":"nlp_pqa"}}
{"question":"can this be synced to a steering wheel for driving games?","answer":"I don’t think so"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How many mAH is the battery","answer":"Fujian YU10850 18001A with capacity 3.85V / 3648 mAh (14.0 Wh), 2-3 hour life."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you play the new five nights at Freddy’s game on this?","answer":"No. This title has not been released for the Oculus Quest."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the one lithium battery for ?","answer":"“ The Oculus Quest all in one virtual reality headset covered by this document contains a 3648mAh rechargeable lithium ion battery pack with a 14 watt-hour rating that powers the product. It is a double cell battery with a nominal voltage of 3.6 volts and it weighs approximatively 70 grams.”"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i connect this to my pc in the same way as a standard oculus, in addition to standalone play?","answer":"Hey, it's now possible to set the Quest up with your PC. Setup information can be found at https://support.oculus.com/525406631321134/#setup, while information for compatibility can be found at https://support.oculus.com/444256562873335/."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Save 44%? How can I get this discount?","answer":"Subscribe"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I need a play station like a ps4 to connect this with in order for it to work?","answer":"No it is a stand alone unit and does not require a ps4 for it to work. You would just need to download to Oculus app onto your phone to set it up and that's all. Wifi is needed for it to work"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Como descarg los juegos en oculus","answer":"Los puedes descargar desde tu celular o desde Oculus (men de los lentes) Hay un store, donde f cilmente puedes comprar y descargar. En el caso del celular lo mismo. Es muy simple"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Now quest offers link to pc, pc i7-3770k, 16gb ram, gpu gtx980, especially the gpu, is that enough to run it smoothly, without lag? thnx in advance :)","answer":"Currently, the i7-3770k and GTX 980 don't meet the requirements for Oculus Link. Oculus Link is still currently in beta and we hope to add support for additional graphic cards by the end of the beta period. More information about Oculus Link compatibility is available here https://support.oculus.com/444256562873335/."}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i want to give my nephew a gift card to buy games for his new oculus quest should i get one for the apple app store?","answer":"No. The Oculus Quest uses its own app store, which can be accessed via the Oculus app."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I bought this for my son for christmas, How/where to I get games, and can they be purchased ahead of time for his device? do I set it up before?","answer":"I bought this for my son also. He purchases games from within the system after set up. You will download all the games from my understanding. The setup is done by pairing with his phone or tablet."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can it run Minecraft with shaders ?","answer":"You could maybe run Minecraft mobile by sideloading. it's not in the Oculus store"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there further payments for shipping or import fee if i want to receive this item in Egypt ?","answer":"That's a question for amazon, not for people reviewing the product itself."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is the quest compatible with a steering wheel for iracing?","answer":"Never tried it but the Quest gives the user VR hands, so its reasonable that they provide opportunity to use them..."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i play Minecraft on this?","answer":"Yes you can play the windows 10 version of Minecraft with the Oculus Link cable that plugs the Quest into your computer. They are also working on a version specifically for the Quest I believe"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i use Tilt Brush with this new oculus or do i still need a computer?","answer":"No you dont need a computer it has Tilt Brush in its Quest version of the Oculus store ."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How many games can we expect by the end of the year","answer":"It has been stated that the Oculus Quest is on track for 100+ games by the end of the year on the official stores. There are also a lot of unofficial games that can be sideloaded, webvr, videos and films, and developer apps. It has a lot of content in ecosystems that are not officially supported. Official games are very immersive and fun, the unofficial games are sometimes impressive, sometimes not."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will the device work over glasses?","answer":"It works well over glasses. Includes a spacer insert that goes between the facial interface and the headset to ensure enough room for glasses."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you buy more gigabytes for the quest if you got the 64 one?","answer":"You can't add additional storage to the 64GB version of the Quest."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you record gameplay with this?","answer":"It has a USB-C connection, but no other outlets to go to a recording station like a PC or capture card."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do you screen share to tv and does it cast audio as well?","answer":"You can screen cast through Chromecast but it doesn't work with TVs which have built-in chromecast."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are there any world war two flying games ??","answer":"I have not come across any I don’t think, but still a great purchase"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is the device work and adapter in 220v ? , is it ok to charge with other adapter and cable? (Like similar phone charger (usb usb-c cable)?","answer":"No, the product does not operate at 220 volts. Similiar chargers, etc void your warranty....."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this play no man sky ?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there any protection plan available for this? Best Buy offers one but I want to know if amazon does too.","answer":"Amazon has a warranty, i purchased a padded case for product protection..."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do i need a smart phone i have a samsung tablet a gaming pc and a samsung 55 inch 4k tv but my my phone is one of those free insurance phones?","answer":"You can use the Oculus app on any phone running Android 6.0 or higher or iOS 10 or higher. The phone also needs to be connected to Wi-Fi and have Bluetooth turned on to setup your Quest. You may be able to get it to work with your tablet but there is no guarantee."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How long does it take to arrive?","answer":"It depends on if it’s in stock or if you have prime"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the come with Oculus warranty?","answer":"yes, if you buy now."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are you able to play Tiny Town with the Quest?","answer":"You can play Steam VR games on your PC and use Virtual Desktop or similar sideloaded streaming app to view them through the Quest headset."}
{"index":{"_index":"nlp_pqa"}}
{"question":"is this headset compatible with xbox 1S or above?","answer":"No. It is a stand alone headset. Or, you also can play Steam games from a pc by using the Oculus Link Cable."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this product come with Bluetooth or headphone jack support?","answer":"It supports headphone jack but no Bluetooth. You don’t want that latency to cause you motion sickness anyway."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What gpu does it have?","answer":"For Gaming, it has to be very high or high enough but for virtual desktop or Bigscreen you can you basic GPU"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i order now, when can i get it? i need it before 15th jul (chicago)","answer":"This question is better directed at Oculus or FB, as they have the logistics..."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this oculus rift come with everything needed for beginners including the cameras?","answer":"This is NOT the Oculus Rift. This is the Oculus Quest. Completely different products."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Hi everyone, if i purchase this do i need to buy anything else to start playing as computer or wires, games? What is add cost.?","answer":"You need a compatible smartphone to do the initial setup. It comes with 5 demos pre-loaded and there are a number apps that you can purchase with varying prices."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i use the same controllers for the oculus gear?","answer":"These controllers only work with the Oculus Quest and or Oculus Rift S. They are designed for Inside Out Tracking ". Cameras built into the Quest and S track these controllers eliminating the need for external tracking hardware. The Oculus Gear doesn't have this capability to track. It is an older system.""}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with Space Engine?","answer":"What is the space engine ?"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are there any taxes?","answer":"It’s after January 1st not sure of law, but I don’t think we paid any"}
{"index":{"_index":"nlp_pqa"}}
{"question":"this is working in israel ?","answer":"Works anywhere"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will it fit apple iPhone xr","answer":"This is not a headset to insert a phone or device. It is a complete system and you download games and apps directly onto it."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why is it more expensive than the oculus website?","answer":"Because different businesses purchase it at regular price and attempt to turn a profit."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it connect with Bluetooth?","answer":"Yes it does. You will need to connect your Oculus Quest to your smartphone the first time you set it up. You can also stream what you see on the quest to your smartphone using wifi."}
{"index":{"_index":"nlp_pqa"}}
{"question":"So you dont need a pc to use this?","answer":"That's right, you don't need a PC to use it! You do need a smartphone to do the initial set up."}
{"index":{"_index":"nlp_pqa"}}
{"question":"128GB order with 1st minute, so free games ?","answer":"Just basic games to get started. You order more from menu inside the h"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If I wanted to use this in more than 1 room do I have to set the play area up each time or will it remember different play areas for different rooms?","answer":"HI, not sure, only using in one room. But setting up play area takes less than a minute and is very intuitive"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I play vr chat?","answer":"Yup"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are there any anatomy games","answer":"Yes there is one on the quest and one on the quest go you can download games on the quest go to your quest"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you connect wireless headphones/earbuds instead?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you plug in headphones","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the Shipping weight?","answer":"5.7 lbs via UPS"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If running game from moblie, so 64gb or 128gb for what?","answer":"Sir/ Madam: CAPACITY! You can store more games, etc. It would save you having to delete some, down the road. Your purchased apps are yours and you could reinstall them later, if so desired, “I love my 128gb Quest!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Would like to purchase this item from spain. the currency exchange will be done from actual $499 to euros? i mean, would i pay 499, or about 452?","answer":"I paid $540USD for this. Worth it"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why is the price so high compared to the actual website that sells this for 499.00? Let’s be reasonable","answer":"Memory, you can save$100 by finding one with less memory. The 128GB I couldnt find less than $500. Hot tip......get the 128GB, you will be glad you did."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this headset work on Steam?","answer":"Not directly, but you can use Virtual Desktop to stream Steam games to the headset. In this config, the Quest provides display and control (if required) but the heavy lifting for running the game is done by the PC."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is it possible to watch regular (non VR) videos in it? If yes, then how?","answer":"You can watch videos, but they’re not VR."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with a system that will allow audience, not using vr, to watch the action? If so, what gaming system works best?","answer":"Yes it is. I know that you have to get another piece of hardware which would then link up to a specified device via Bluetooth. I don’t remember what that hardware is but it’s easily available."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why there's free shipping on the 64 and not on 128????","answer":"When I bought it there was free shipping. You’d have to ask amazon"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I know it said on one of the amazon banners that the oculus quest 128gb version will cost $499. Is this true please respond quickly?","answer":"No, your eyes are lying to you. The Oculus only costs 4 cupcakes."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I trade in my rift towards this model?","answer":"It depends on the model"}
{"index":{"_index":"nlp_pqa"}}
{"question":"why is the tax 41.42 on amazon but only 31.44 on walmart? tax is tax. is this a scam?","answer":"Tax differs depending on your shipping location. Some local governments impose higher tax than others."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the charge life for headset?","answer":"2.5 hrs. I'd recommend an external battery if your worried."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i use this to play my steamvr games i have on steam?","answer":"If you download SyQuest there is some games you can play on your quest. But be careful some of the side roads mess up your gaming system"}
{"index":{"_index":"nlp_pqa"}}
{"question":"why double a batteries are included?","answer":"For the hand controllers. love this VR set"}
{"index":{"_index":"nlp_pqa"}}
{"question":"In what ways does this oculus quest compare and differ from the oculus rift?","answer":"With the new Oculus Link update which just came out, you are able to connect the Quest to a PC and play essentially all the same games the Rift can play, plus the Quest exclusives as well as having the ability to simply unplug and go to a friends house or wherever you want really, and have a fun VR experience. I'd say the biggest difference now is tracking the controllers, but it's never been a very big issue for me personally. In my opinion, the quest is an absolute must have even if you just like VR a little bit. On the technical side the Rift has a slightly faster refresh rate but it's almost impossible to notice, while the Quest has better resolution. But again the difference is there but I doubt most people would notice the difference that much."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How fast did you get it?","answer":"A few days"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does Amazon offer a warranty for this product?","answer":"Not that I believe"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i'm ordering to the russian federation, which shipping company is handling the package? can i deliver to the company's pickup point?","answer":"That would probably be UPS or FedX " If it is allowed you can do that.""}
{"index":{"_index":"nlp_pqa"}}
{"question":"will the quest play rift games?","answer":"The Quest doesn't play Rift games but there are Quest versions of Rift games and in many cases, the developers have made the Quest version free if you already purchased the Rift version."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Mine in december. expected ship date was the second week of january. why was my order canceled","answer":"Sold out, back in stock soon"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do l have to pay custom charges on this if sent to the uk?","answer":"Before final purchase via Amazon it should provide a breakdown of charges vat customers etc along with the retail price. Should give you a better indication before completing your purchase"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can Oculus quest be used on an I phone 6?","answer":"As long as you can install the Oculus app, yes."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it work for android?","answer":"It does work with Android"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What other extras do you need to purchase that are not included in the box for this VR to be operational other than games?","answer":"Everything you need to experience Virtual Reality comes in the box for the Quest. This is a stand alone system. It is software driven and will need to be connected to a WIFI system in your home in order to download software apps and having a smart phone for the initial setup too. That being said, it is an amazing experience to be able to watch Netflix on a 200 inch screen sitting in a ski lodge while sitting in your small apartment living room or bedroom. Or watching a movie on an Imax size movie screen sharing with a friend who also owns a Quest. Or fight Darth Vader with a light-saber while using the force. :-)"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is storage expandable through sd card or anything, or only 128gb?","answer":"No SD card slot"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How does the headstrap work?","answer":"Adjustable and easy to use. Works for all size heads."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you use a iphone xr to set it up","answer":"Yes, just download the Oculus app from the App Store."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this be used while charging/plugged in (like Samsung VR)?","answer":"Sure with a 3A output powerbank it will work perfect"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is the release date the shipping date?","answer":"No, release date is when the product is available, shipping is some time after your purchase...."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Could I buy more storage later","answer":"No."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do i redeem the vader immortal offer? i read (here) that there is supposed to be a code. where i do i find this code?","answer":"If you purchased and activated a new Quest headset between November 21, 2019 and January 21, 2020, the Vader Immortal bundle should be added automatically to your Oculus account. There isn't a separate code. If the Vader Immortal bundle hasn't been added to your account, please contact support at https://support.oculus.com."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this unit need a wifi internet signal to work?","answer":"To purchase and download games, not to play already purchased games."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will preordering it guarantee ill get it on the 21st?","answer":"No, unless it is qualified, during purchase, pre ordering only confirms your purchase"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How easy would it be to watch videos (YT, Netflix, etc) and navigating, while lying flat on a bed?","answer":"This works well in a lighted room. Each app has its own method to reorient the screen to be above you in your line of sight while lying down. Usually, you hold down the recessed Oculus button while looking in the direction that you want the screen to be placed. Some apps will have you reorient the screen by dragging it to the desired location. The method varies, but it works quite well."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Se puede conectar con Xbox?","answer":"No, el Oculus Quest est dise ado para trabajar de manera independiente. De forma est ndar no se conecta ni al pc ni al Xbox. Puede que haya alguna soluci n parche pero no es natural"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with Xbox one","answer":"I don’t know my grandson loves both of them."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i ride around with this on a atv?","answer":"Virtually, yes. Real world no!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I need a computer or phone to use this or can I use it just by wearing the headset?","answer":"When you set the game up I believe I needed the phone but after that you do not need your phone for set up"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the headset and/or browser have parental controls? Can you lock down or delete the web browser?","answer":"As far as I can tell the Quest currently does not have parental controls on the default apps. That being said, you can easily set up the Quest to stream to the phone it is connected to via the Oculus App, this allows you to see/hear everything the headset sees."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Hi Iordered this item. Can i get this one before sunday?","answer":"It depends if they have it in stock"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what us resolution (6K) and can you download VR material from online to play?","answer":"Resolution is very high quality. 6K does not relevant. Yes you download from on-line store"}
{"index":{"_index":"nlp_pqa"}}
{"question":"We have to charge the vr headset, right? how much time? how long will a fully charged vr headset last?","answer":"A full charge lasts around 2 - 3 hours of use. Takes around 2 hrs to fully charge from 0."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do you need a ps4 to use this product ?","answer":"No. You don’t need anything else."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Yes, why are you trying to sell this for $634 when the 128G is sold at the manufacturer for only $499?","answer":"From my understanding the oculus quest is offered from many different companies. And for many different prices. I paid a high price for mine because I wanted to get one as soon as I could . I bought four of the at one time. Many companies limit how many they will sell at one time."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i voice chat?","answer":"Yes! You absolutely can ! You can chat in the Gabe you are playing or you can do a party chat"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do you insert the phone in the headset?","answer":"No phone inside for a screen. It is just like the PC vr headsets and has everything you need in it. You only need a phone to pair and boot the headset with the oculus app."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Who can i contact about the vader free games offer? ordered on 12/30 but quest won't arrive until feb which is past 30 day activation window...","answer":"It goes by your purchase date. I believe either 31 Dec or 1 Jan 2020 was the cutoff for the free Vader game. I might be incorrect. Go to the Oculus website and send them a email."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I get next day delivery","answer":"Sure, but the shipping costs much"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do I have to change the batteries or I can recharge them?","answer":"The headset battery can not be changed, it's rechargeable. But the controllers require AA batteries. You can always buy AA rechargeable batteries."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are games that are purchased on the oculus go available on the oculus quest?","answer":"...there is some cross over but not much...if you bought certain apps and games on the Oculus Go there is a select option to Go or Quest titles and install on the Quest..."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I’m a trucker and the idea of being able to wear a TV on my face appeals to me as opposed to holding an iPad, would the Quest work well for this?","answer":"My son says it’s “cool” to watch YouTube videos that way."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will the headset fit kids ?","answer":"My grandkids heave no problems as early as 3 years old"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why is this unit priced at $499 while another from Oculus is listed at $666. Is there any difference?","answer":"My son said the $666 price might be for a bundle (including games) but you would need to check with Oculus to verify that. Otherwise there is not an upgraded model."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is the oculus quest a good Christmas present","answer":"Absolutely! My mother is 68 and had a lot of fun catching fish in the game Bait " and my 15byear old son loved the action games. It really is good for all ages, as well as being good for entry level VR users and more experienced VR users at the same time!""}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i pay for the extra money for shiping will it ship faster or the amount i pay for or the same amount of time?","answer":"Enterprises LLC has this item in stock and shipping out same day or next business day using USPS Priority shipping. Upgraded shipping may cut 1-2 days off delivery depending on what part of the country your in and carrier’s able to meet the expected deliver by date at the time of the order. This response is seller specific to us."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this come with the link cable?","answer":"The Quest comes with a charging cable. The link cable is used to connect the Quest your PC and must be purchased separately."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you watch Netflix? iTunes?","answer":"Yes, you can watch Netflix on the Quest! There is no iTunes app available for the Quest though."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does it come with a microphone?","answer":"Yes it comes with a built-in mic"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this work with google world vr?","answer":"It will work with any VR compatiple software but i am confident that the Google software, or some variation will work....."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Funciona app con motorola g6??","answer":"No entiendo mucho tu pregunta porque el Quest es un equipo independiente. Pero si te refieres al uso de internet compartido con el mobil: en teror a deber a funcionar. Yo lo he probado con mi mobil (que no es un g6) y a funcionado sin problemas. Si puedes compartir el internet a traves el g6 con una computadora usando wifi creo que no deber as tener problemas con el QUEST"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Our volume/sound quick working, is there a setting?","answer":"There is buttons on the bottom to turn sound up and down"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Multiple users?","answer":"Currently, the Quest supports the use of one account at a time."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can i use the headset as just a monitor?","answer":"You can play the games without plug in to console or PC. Is wireless.."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can it play games from steam be?","answer":"Yes, you can! While Quest is a standalone VR headset. With a compatible PC and appropriate USB 3.0 cable, you can also use the Oculus Link feature to connect it to a PC to play Rift PC games."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will it have a micro SD slot to add extra memory?","answer":"Nope!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"The audio on mine crackles occasionally on the left side. Is there a way to fix this?","answer":"Hey, does this persist regardless of the audio volume? Is there any change when you try using the headphone ports? Create a ticket at https://support.oculus.com, we're more than happy to identify the cause, and look to assist if possible."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Do you need headphones or a headset?","answer":"The headset has built in speakers so you don't have to use headphones and the sound actually comes through quite well (feels immersive to the player), but it also means that anyone around you can hear what you're hearing as well. The headset has headphone jacks so you can plug in your own if you want to be the only one hearing the sound."}
{"index":{"_index":"nlp_pqa"}}
{"question":"If it breaks where do I send it?","answer":"If you're having issues with your headset, please contact support at https://support.oculus.com."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What ports are on the headset?","answer":"L/R audio and a charging port."}
{"index":{"_index":"nlp_pqa"}}
{"question":"is this much better than the oculus go?","answer":"If you are looking for 360 degree game immersion, the Quest has it with dual controllers and the ability to map out a safe play area. So big upgrade for gaming."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you watch nba?","answer":"Yes, you can watch NBA games with League Pass. You can also watch certain games after they have been played for free. I believe it takes a couple days to post."}
{"index":{"_index":"nlp_pqa"}}
{"question":"So just what kind of games can i play? beatsaber or bioshock 2 level? if this could run last gen fps games i'm all over it.","answer":"Just beat saber"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I’m new to this please forget this question, do you have to buy a gaming console or anything else with these? How do you play the games?","answer":"This is a stand-alone product, and the first like this from the Oculus brand. I would encourage you to watch some youtube videos about its functionality. Games are downloaded via wifi and can be purchased or searched through the Oculus app on your smartphone."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do we buy more games for occulus all in one vr? Do we buy and store them on our space or do we stream them ? And where can see the pricing for it","answer":"You download their app on your phone and purchase them there or through the headset. The games download onto the units memory, but are held in your library to download again if needed"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I know it comes with a insert for people with glasses, how is the comfort while wearing glasses though?","answer":"The comfort level is okay, but what I did was order lenses with my prescription from WidmoVR. Rx lenses are so much better than wearing glasses. Also, if you’re use your Quest to exercise then I recommend getting Quick Spit from Amazon. The Quick Spit will keep your lenses from fogging. The way I use the Spit is, first I clean the lens , then spray Spit onto the lens, rub it into the lens and leave it for a few minutes, remove the Spit with a microfiber cloth and enjoy a fog-free workout."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I bought it at wanna bring it on a plane but it said on the amazon box that i couldnt bring on a plane is that true?","answer":"I'd say No, if that is what it said on the packaging"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this the new and original oculus quest 128 gb? Why does it says Vogek?","answer":"Probably sold by a 3rd party vendor"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this product have warranty through manufacturer?","answer":"Yes, there is a warranty through the manufacturer! Our warranty terms are available here https://www.oculus.com/legal/limited-warranty/"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this a good fit for a 11 year old boy?","answer":"My son has had the oculus rift since he was 8 and loves it. He’s 11 now and we plan to get this for him for Christmas. Fit never seemed to be an issue."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Y como puedo poner dinero en oculus","answer":"Amazon no me entrego el Oculus Quest, en su lugar llego un Lego"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you watch vudu or movies anywhere via the quest?","answer":"You can use the quest as a wirelessly connected computer monitor. This requires that the quest have wifi access to a network that your computer is exposed to. However, there are shows I watch on cable that I can't stream to my computer and hence can't watch on quest. It is a small list these days though as most programming is available to computer devices via one avenue or another. The real limitation is the wifi connectivity between computer and quest. If your computer is at home and you're at a Starbucks, you'll need additional setup ahead of time to access your home computer via Starbucks wifi connection - that setup is do-able but is independent of the Quest."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I play Minecraft on this","answer":"You will have to google it, I have older children 16 they play beat saber, boxing and another one, if it’s available for game it’s a in app purchase."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you use oculus go apps on the Quest?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How much memory does a game use?","answer":"Not very much, in the 10's of Mbs. Which is why most games are very basic with even more simple graphics. There was alot of hype around this system, in my opinion the games are fun but lose the wow factor very quickly"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How much on average are the games?","answer":"Anywhere from free to $30. Most of the good games are $15-$25. The Vader Immortal is $10 for each episode."}
{"index":{"_index":"nlp_pqa"}}
{"question":"with a 128 gb how many games can you download?","answer":"128 gb worth of games. Good question."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Hola quiero comprar Oculus Rift S, para cuando estaria disponible","answer":"Yo soy de chile y se demoro muy poco en llegar lo compre el 9 y lleguo el 17"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I bought this before 1/31. how do i redeem the 3 episodes of the star wars game?","answer":"If you purchased within the promotional period then the Vader Immortal content should be automatically added to first Oculus account used to setup your Oculus Quest. If you're not seeing in the Library, please contact support here https://support.oculus.com/885981024820727/ so we can look into this for you. Thanks!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"The sound is distorted on the right external speaker. works fine with buds but for $500 i'd prefer 100% working hardware. any ideas before i return?","answer":"Yeah, return it quickly so they aren't sold out. Ooops, you may have missed that window."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Where can you browse the games before dropping 400-500 on this thing?","answer":"In Oculus store"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this compatible with Samsung notebook 8","answer":"Hi! We sent an inquiry to the manufacturer but it will take 24-48 hours to get a response. However the description of this items says it can be use with (6.0 Marshmallow or higher) smartphone and can stand alone VR that no PC required. Hope this helps"}
{"index":{"_index":"nlp_pqa"}}
{"question":"I refuse to over pay, When will Amazon have more in stock at legit prices ??","answer":"Daily. Just keep checking back."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I’m in a wheelchair and can’t walk. will this affect my ability to realize the full potential of vr? will this be a good item for use if i can’t walk?","answer":"Very little walking required. I believe it would be wonderful to experience."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How can I get movies/games from website? Would you share some links that I can download? thanks.","answer":"Most content is obtained through the official store, no need for external eebditrs or software. You can, however, use a sideloader to downloaf other content."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work in abu dhabi, uae? a lot of things are blocked over here. tia","answer":"I don't know. I live in New Jersey but it should. Good luck"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Puedo ver peliculas 3d?","answer":"Hola Juan no tuve la chance de probar ese formato. En cuanto lo pruebe mi equipo de software te aviso, mail es info@accelone.com acordate asi me preguntas. M"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Why did my oculus come with a uk adapter when it shows the us adapter is included?","answer":"If you ordered in the United State, it should have come with us adapter."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does the headset and/or browser have parental controls? Can you lock down or delete the web browser?","answer":"The Quest currently doesn't have parental controls available and it isn't possible to delete the web browser."}
{"index":{"_index":"nlp_pqa"}}
{"question":"what happen to the oculus quest 128GB for 499.00 which is what i wanted purchase it went up 300.00 in a matter of a few minutes?","answer":"Just keep checking and make sure it’s from amazon not third party"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you play beat saber","answer":"Yes My Favorist game"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What's the storage for? My Vive saves things to my computer...","answer":"The storage is so you don't have to save things to a computer. So if you want to travel with the quest you can play your Media off line."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I know this does not require a computer to play. But can I use a computer or console if i wanted to?","answer":"The recent updates promised support for so called Oculus Link, which should enable you to connect it to PC with the supplied cable and play as if your were using Oculus Rift. Haven't tried it yet, so am not sure if it's implemented yet."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is there a virtual drum set game available on the Quest?","answer":"nope"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is storage expandable through sd card or anything, or only 128gb?","answer":"No"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Gaming is great but what other kind of apps can you use 6dof? Can you use travel apps like Wander or 360?","answer":"Checkout the Oculus store to see what's available. In addition, you can use YouTube VR and the like."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Cu nto tiempo dura la bateria","answer":"Eso depende mucho del uso que le des, procre que una hora estar a en promedio. De todas formas (aunque depende de cada quien) estos equipos VR no son para un uso constante porque producen fatiga y es bueno descartar de a ratos"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you transfer the visual of the vr to the TV?","answer":"I believe if you have a tv that supports chrome cast you can"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I use my wireless bluetotth head phones for sound with game?","answer":"My son doesn’t think you can. He uses his wired headset that he uses for his xbox"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How many games come with the headset when you purchase it? And how much do extra games cost?","answer":"Only a demo on how to use it, no games Some games are free, all others are about 3-40$, but there are a lot of sales and demos"}
{"index":{"_index":"nlp_pqa"}}
{"question":"When is release","answer":"It's out"}
{"index":{"_index":"nlp_pqa"}}
{"question":"If i want to stream a movie do both of us need a pc","answer":"You don't need a PC if you are using the Netflix or YouTube apps from the Oculus store. If you have a Google Play account you can syn it to your YouTube account and you can stream movies you bought on Google Play. Which is a nice bonus, and you can make it a curved screen making it like being at the movies."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Are you sure about the January stock date?","answer":"I ordered mine with a stock date nearly 4 weeks out, but within two days it had been stocked and I had it within a week. I don't think they are sure of any of the dates, but they seem to be trying to avoid angering people by estimating on the long side, which is good. I was very happy to get mine 3 weeks early."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is this the virtual system i can use to play half life alyx in march 2020?","answer":"The Oculus Quest can now be connected to a PC to play games such as Half Life, but I don’t think there are currently plans for a Quest native version."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Hello we have to exchange this because the screen resolution is blurry but we bought $75 worth of games already? Do we get them back?","answer":"Hey, games should be tied to the account that had purchased them. If you have trouble accessing them, reach out to our Support and we can work with you to resolve it."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What games can you get 128GB","answer":"Oculus has a store that divides games by device Go/Quest/Rift. Quest games are best, but if you already owned a Go game and didn’t want to re-buy it you could play on Quest. Beta feature could let you connect a Quest to a computer and play some Rift games. Frame rate and stability of those games is probably going to be lower, but a nice option to have. In general, 128GB seems to hold the majority of the Quest game catalog. I haven’t had to delete anything yet and have dozens of games/apps."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can it run app purchase from Rift","answer":"Yes, but not everything is available on the quest, for example if you bought robo recall you can use it on the quest"}
{"index":{"_index":"nlp_pqa"}}
{"question":"does it prevent you from storing games on external memory via its usb like the Oculus Go does?","answer":"No external saving yet"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What options are there to cast to tv? Most other answers are old. Have they added other capabilities in the last year?","answer":"It’s still not available."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you play Minecraft?","answer":"Officially, not yet unfortunately. There’s a way to sideload it but I haven’t tried that and can’t speak to how good it is or how difficult."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this item be returned if opened after I use it?","answer":"I think you have 30 days to return to Amazon, you just give reason, if you live near Kohl’s most are a drop off spot otherwise you can print off label, you can chat in app with a Amazon Rep"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Is the game included in the oculus? Or do we need to buy it seperatly with an app or sth?","answer":"It comes with a few free titles and some demos but you need to buy most of the real games. They mostly range from $9.99 to $29.99. Robo Recall, Beat Saber and Superhot are must-have titles."}
{"index":{"_index":"nlp_pqa"}}
{"question":"will this product work with a samsung s10+? i had the oculus go and the phone would not connect to the headset. yes, i did all the trouble shooting. c","answer":"You just download an app, oculus app you don’t really need your phone after set up it’s wireless and it’s own “console”"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will an iphone 7 work for this, or am i going to have to get a new phone? can i use a laptop instead of an iphone?","answer":"You just need a fairly modern iPhone or Android phone to configure the device. An iPhone 7 should be just fine. After the initial setup you don’t really need the phone as most things can be done on the Quest itself."}
{"index":{"_index":"nlp_pqa"}}
{"question":"what's means for 6640-906-105 "?"","answer":"It pertains to the model no. If The Headset and it's function with lynks by microsoft"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what comes in the box?","answer":"The headset, two additional ear pieces, computer USB adapter, a 1 ft. mini-USB cable for charging, which you can connect directly to the earpiece or the box itself for charging when the headset is in the cradle as pictured."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I answer skype calls from the headset with the answer call button?","answer":"Yes, I believe you can."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Hi!I see the customer announced that they had to have the problems 2-4 months after use! For for how the month we have the waranty or guaranteed pls?","answer":"There is a white paper that comes with the Jabra that says Limited One (1) year warranty. for the first end user purchasing the product from a distributor or reseller. that the product shall be free from defects in materials and workmanship subject to the terms set forth. Specifically exempt from warranty are limited-life consumable components and accessories subject to normal wear and tear. For a complete overview of which consumable components and accessories that are not covered by this Warranty, Please go to www.jabra.com you can see everything about the warranty there."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does closing the boom turn off the headset?","answer":"yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this pair with 2 bluetooth devices at once? I want to use w/laptop and cell phone together and easily switch between them.","answer":"I currently use it with 2 mobile phones and it works well. I haven't tried it with a PC yet."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can this headset be worn on either side ear?","answer":"Yes"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Hi!is there any warranty or guarantee for this Article?For how much time?","answer":"I sell it independently. Keep receipt Jabba offers 1 year on it"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can I answer skype calls from the headset with the answer call button?","answer":"Yes as long as your phone is paired. Also you can have your skype forwarded to your phone so it can be picked up by your paired device also."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How heavy/sturdy is the base station on a desk? Does it feel solid?","answer":"It is fine on the desk. The base also holds a USB cable if you'd prefer to attach it to your PC"}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the difference between uc and uc+","answer":"I didn't have a chance to find out, and my head set is dead, and not long my other set is not function anymore too. Very disappointed after spending high price for that junks."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you use this product while it is charging?","answer":"The base is the charger so no"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Jabra MOTION UC with Travel and Charge Kit come with the warranty from Jabra?","answer":"It works very well I was hoping the fit was better."}
{"index":{"_index":"nlp_pqa"}}
{"question":"mute button not work good when i pair it with my sony xperia z1 frequent message on mobile say not supported contact sony or change headset ?","answer":"Perhaps, Experia needs a software update?"}
{"index":{"_index":"nlp_pqa"}}
{"question":"Will this work with Cisco Jabber?","answer":"Yes, it works with Cisco UC Jabber"}
{"index":{"_index":"nlp_pqa"}}
{"question":"what's in the box","answer":"J.C.B. below is the package contents. Package Contents: MOTION UC Earset, Link 360 Bluetooth USB Adaptor, Travel & Charge Case, 3 x Sizes of Ear Gels, USB Cable, USB Wall Charger"}
{"index":{"_index":"nlp_pqa"}}
{"question":"How long does the battery last? At times I can be on the phone for 8 hours a day. I need both comfort and longevity.","answer":"I'd buy two.. You may get that long with a new headset, but after 6 months, I think you'd be lucky to get 2-3 hours call time."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What is the difference between the Motion UC and Jarbra Motion mono?","answer":"In my opinion, the UC is more versatile, due to the fact that it has the usb to connect to my PC."}
{"index":{"_index":"nlp_pqa"}}
{"question":"I am willing to order this article but I am afraid it is not compatible with my iphone or laptop hp, can you tell me please? otherwise, what does it m","answer":"I use it with my iPhone and it works great! I have a Mac, but as long as your laptop is bluetooth compatible it should work seemlessly as well."}
{"index":{"_index":"nlp_pqa"}}
{"question":"can it switch from right ear to left ear easily","answer":"Yes, the ear piece swivels for wearing in either ear. Mine has held up well to almost daily use. Currently on my second one in about 4 years only because I washed my first one. It still worked for a while even after going through both the washer and dryer! Great product!"}
{"index":{"_index":"nlp_pqa"}}
{"question":"how does it work/feel with eyeglasses and sunglasses ?","answer":"Of course will depend on your frames, but half our office wear glasses and nobody noticed any discomfort, there is a surprising amount of adjustability and the attachment around the ear is all very flexible."}
{"index":{"_index":"nlp_pqa"}}
{"question":"what is the pixal resolution per eye. Im guessing that because it is not stated its not very high.","answer":"Thanks for your questions,we suggest you take one have a try and test. We uses advanced Micro-OLED displays which has over 3000PPI (Pixels per inch), delivering dual 1920 1080 resolution, ultra-high contrast ratio, and blistering fast image response time. The display pairs the deep black and natural color of OLED for enhanced color contrast. Everything you watch comes to life with fine detail and vivid color."}
{"index":{"_index":"nlp_pqa"}}
{"question":"How do you listen?","answer":"There are two ways to listen: 1) Using the 3.5mm wired earphone to connect with the vr headset. 2)Using the bluetooth earphone to connect with the controller. Please note you need an extra earphone to enjoy this VR headset, not included in package."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Does this support VR?","answer":"Yes, it is VR compatible. You are able to watch 3D videos and play VR Games."}
{"index":{"_index":"nlp_pqa"}}
{"question":"What color is the actual headset? Its shows green here but in my orders page it shows blue","answer":"Mine came blue."}
{"index":{"_index":"nlp_pqa"}}
{"question":"Can you use this for ps vita?","answer":"Yes it has a stero headphone jack"}
{"index":{"_index":"nlp_pqa"}}