File size: 200,036 Bytes
0de7cc4 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 | text,reason,label
this is an amazing app for online classes!but,good app for conducting online classes,1.0
very practical and easy to use,app is user-friendly,1.0
this app is very good for video conferencing.,good for video conferencing,1.0
i can not download this zoom app,unable to download zoom app,1.0
i am not able to download this app,want to download the app,1.0
zoom is not working properly,app is not working,1.0
zoom is an excellent meeting app.,good app for conducting online meeting,1.0
i am not getting the virtual background option in the settings,unable to switch virtual background,1.0
video quality is very poor,video quality is poor,1.0
i am unable to sign-in,want to login,1.0
zoom does not update me anymore,want to update zoom app,1.0
the app does not install,unable to install,1.0
best app for video calling and office meeting and online classes,good app for conducting online classes and meetings,1.0
i can not connect to my meeting.,want to connect to meetings,1.0
my audio is not working please fix this problem,sound stopped working,1.0
use google meet instead.,google meet is better,1.0
i found a problem it sometimes would not work password,receiving incorrect password message,1.0
will not let me sign up.,want to sign up,1.0
zoom is a very very bad app because there are,poor quality of the application,1.0
i can not edit my profile picture,want to add profile picture,1.0
"because of this, i can not sign in to zoom.",unable to login,1.0
will not let me even install it,want to install,1.0
this app will help me to study in lockdown,good app for students,1.0
it is nice and good but am having some network issues with this app,facing network issues with app,1.0
i can not join my class right now.,want to connect to classes,1.0
zoom would not let me connect,want to connect to zoom,1.0
the sound is bad.,audio quality is bad,1.0
please add ukrainian language support.,want ukrainian language support,1.0
please fix the audio connect issue,want to connect to audio device,1.0
this app is not opening.,want to start application,1.0
my microphone is not working.,want to use microphone,1.0
I would like you to be able to set the background on android,want to put background on android phone,1.0
let us just admit that skype is better.,skype is better,1.0
best cloud meeting app,good app for cloud meetings,1.0
this is worst app this has a lot network issue does not work well,facing network connection issues,1.0
i can not join my zoom meeting please check my problem,unable to attend zoom meetings,1.0
i can not install the app in my phone,unable to download the app,1.0
i can not change my background when I am using my phone,unable to set virtual background on mobie,1.0
I am trying to register - an error.,want to register,1.0
it takes a long time to install,installing process is time consuming,1.0
it is great for making video calls,good app for conducting video calls,1.0
i can not open my zoom,want to use the app,1.0
"""you are not eligible to sign up for zoom at this time""",receiving not eligible for zoom message,1.0
the application crashes frequently.,app crashes frequently,1.0
it takes too long to get updated!,updating app is time consuming,1.0
very bad app i can not even sign in,unable to sign up,1.0
best app for meetings & webinar,good app for conducting webinars,1.0
then it does not let meetings in and it comes out that the password is incorrect,receiving incorrect meeting passcode message,1.0
worst app .. can not join a meeting .,want to enter meetings,1.0
why is there no background settings on android?,android version needs virtual background,1.0
you can not register on zoom,unable to register in zoom,1.0
very good working tool,good app for work,1.0
add background feature for some mobile,unable to change background on iphone,1.0
"i uninstalled it and tried to install it again, but i could not.",want to reinstall the app,1.0
"lately, my audio will not play through my headphones connected via bluetooth.",bluetooth headphones are not working,1.0
how can i update the zoom app?,want to update the app,1.0
easy to find and install,app is easy to install,1.0
i can not create meetings,want to create meetings,1.0
excellent app helps to connect people,good app for connecting with people,1.0
"the app is very bad, it is not convenient to use",app is not easy to use,1.0
it says passcode incorrect,receiving incorrect passcode message,1.0
i can not hear the voice,unable to hear sound,1.0
"the picture quality is good, and the sound is very good",good for visual and hearing quality,1.0
i can not open an account.,want to open account,1.0
very very good zoomapp,app is good,1.0
this app does not show background,unable to see virtual background,1.0
sometimes my connection drops and restarts the meeting,meeting gets disconnected,1.0
"but when i go back to zoom, there is sound",facing issues with audio,1.0
it was good before the last update but now has become worst everytime,recent update is bad,1.0
"just one issue, high data consumption",data consumption is high,1.0
i give it a star because there are times when the app will not let me send messages,messaging function is not working,1.0
great way to connect!,good for connectivity,1.0
"this application is fairly good, but it does not support the arabic language; so i gave it 2 out of 5",want arabic language support,1.0
i can not refresh the zoom,want to refresh app,1.0
it would be interesting to be able to open simultaneous rooms by cell phone.,want to open simultaneous rooms on phone,1.0
best app for conference calls,good app for conducting conference calls,1.0
help me install my zoom cloud meeting,want to install zoom cloud meetings,1.0
and i have tried to uninstall and reinstall,problem persists after reinstalling app,1.0
zoom has improved a lot recently.,app has improved,1.0
zoom will not tell me create an account.,want to create account,1.0
google sign-in does not work!,want to sign in using google,1.0
i do not know the reason why i can not install this app.,want to install app,1.0
can not use background image,want to change background image,1.0
no option to change background when using android phone,want to change virtual background,1.0
i am not able to set the background of my video,want to update backgrounds,1.0
worst app for online classes,not perfect for online classes,1.0
but i can not use background filters.,want to use background and filters,1.0
I am not able to download the app on my android.,want to download the on android,1.0
best app for meeting and study purposes,good app for studies,1.0
request for a setting to disable auto-rotate please.,want to disable auto rotate feature,1.0
the bad thing is that the app is very slow,app is slow,1.0
this app is good but it wastes a lot of battery.,battery consumption is high,1.0
but i can not edit my profile,want to edit profile,1.0
i can not turn on the camera,want to turn on camera,1.0
"they say ""you can not register for zoom at the moment""",want to register in zoom,1.0
the best platform to communicate in a pandemic,good for communication,1.0
it is very good the zoom service is quite interesting to me,customer service is good,1.0
i can not install zoom on my android.,unable to install app on android phone,1.0
sometimes the image freezes.,image freezes sometimes,1.0
how to change the language?,want to change the language,1.0
best app for online teaching,good for online studies,1.0
online meeting is nice,good app for conducting online meetings and connecting with people,1.0
it is the best app for chatting and meetings,app is good for meetings and chatting,1.0
learning is very effective,good for learning,1.0
it tells me i am not eligible to sign up at this time,receiving not eligible to sign up message,1.0
this app is not suitable for meeting,app is not good for online meetings,1.0
"when downloading the app, it takes too long",downloading the app is time consuming,1.0
"this new zoom app is so so annoying,always downloading emoji every time i launch it",app keeps downloading emoji package,1.0
how to put virtual background in mobile on zoom??,want to use virtual background,1.0
the app is very good and the call quality is extremely good.,good app for conducting calls,1.0
i can not share my screen!,want to share screen,1.0
speakers cannot be connected via bluetooth,want to hear audio with bluetooth speaker,1.0
love this app i can always get on zoom with my friends or family,good for community connections,1.0
please improve your performance zoom,app performance needs improvement,1.0
android tablets do not have virtual background feature in zoom!,want to set virtual background on mobie,1.0
will not let me change password,forget password feature is not working,1.0
"the screen is clear and the sound is heard very well, and i am using it very well.",audio and video quality is good,1.0
nice app audio quality is also nice,good quality of sound,1.0
but there is a problem with the screen.,facing issues with screen,1.0
the app is very good but it would be much better if the background comes to phone and tablet as well please come,want to add virtual background,1.0
i can not put my phone number,want to verify phone number,1.0
please insert vitual background in it,want to insert virtual background,1.0
"pretty excellent app, just wish it was not so big!",app is too large in size,1.0
you should make a lite version of zoom,want lite version of app,1.0
slow down the download,app downloading is too late,1.0
sound problems - why is it so hard?,facing sound related issues,1.0
its latest version is the best!,latest update is good,1.0
nice but unable to use background option in phone even have the lastest android version,unable to put background on android phone,1.0
"zoom does not seem to want to keep my account working, I am very mad",want to access account,1.0
but i have a problem of connecting it disconnect and again reconnect after 1 min,unable to connect meeting,1.0
why would i want to join a meeting without audio?,want to join meeting with audio by default,1.0
that we have the option to delete the chat,want to delete message in zoom chat,1.0
the application is constantly hanging,app freezes frequently,1.0
"and for ipad, you can not sign in with apple",want to login with apple id,1.0
the camera function is not displayed for me.,camera is not working,1.0
"the audio and video are very good for meetings, thank you",good for managing meetings,1.0
"it really takes up space on my phone, so bad",app takes too much memory space,1.0
when i have class it is automatically disconnected and connect and,class gets disconnected,1.0
an indispensable application for educators,good app for educators,1.0
my phone overheats with this app.,app heats up the device,1.0
not really able to use this app on my pc,desktop version is not working,1.0
can not share audio via bluetooth,want to share audio via bluetooth,1.0
not great to use zoom on ipad.,app is not working in ipad,1.0
how should i delete the image?,want to delete an image,1.0
too many error codes.,facing error codes frequently,1.0
i can not connect to this app,want to connect to app,1.0
"when i record my screen share on mac book pro, the video recording gets very poor quality.",video recording quality is poor,1.0
how to sign in to gmail account without password,want to sign in to gmail without password,1.0
zoom meeting password entered correctly but still says incorrect,displaying incorrect password after entering correct password,1.0
great application for training.,app is good for training,1.0
"after the last update, the app no longer works",app is not working after latest update,1.0
please add the mir card as a possible payment method.,want mir card payment option,1.0
and it is good for kids,app is good for kids,1.0
very helpful for our business,good for business,1.0
why can not i control the volume on my iphone with my headphones on?!,want to control the volume while using headphones,1.0
i can easily log in to my account but not on my tablet idk why i tried to login it,want to login on tablet,1.0
how to get zoom pro ?,want to update to zoom pro plan,1.0
the image quality is amazing!,image quality is good,1.0
great for chat room,chat room experience is good,1.0
you can provide subtitles,want to add subtitles option,1.0
"the application does not have the option of my language, the catalan.",want catalan language support,1.0
camera quality is good,camera quality is good,1.0
i am unable to log into my school account,want to login to school account,1.0
bad quality and connection,poor quality of connection,1.0
video quality could be better.,video quality needs improvement,1.0
the worst videoconferencing app I have ever used.,app is not good for video conferencing,1.0
please remove waiting room,want to remove waiting room,1.0
i am having trouble with bluetooth connection,facing issues with bluetooth connection,1.0
and i had trouble with zoom cloud meetings.,facing issues with zoom cloud meetings,1.0
network connection is not good and video quality is not good,video quality is bad and facing network connection issues,1.0
camera quality is not good .but,camera quality is bad,1.0
but it takes so much battery and net,battery and data consumption is high,1.0
new stickers are not downloading,want to download stickers,1.0
i can not download emoji's.,want to download emojis,1.0
my play store is not working,play store is not working,1.0
updating is too frequent.,updates are too frequent,1.0
"excellent, very good for conversation",good app for conversation,1.0
how can we cancel emoji package downloading?,want to stop downloading emoji package,1.0
mobile version is not good.,mobile version needs improvement,1.0
this app is good but it glitches a lot please improve,app has glitches,1.0
some features are missing,features are missing,1.0
it is a good app but it should give update notification in advance,want update notifications in advance,1.0
i can not log in to facebook,want to login with facebook,1.0
host video is not available,want to access host video,1.0
i am not able to get video,want to access video,1.0
i can not remove my profile picture please resolve this issue,want to remove profile picture,1.0
why this app is not installed in my phone (android),want to install app in mobile,1.0
i am not able to switch on my video,want to turn on self video,1.0
"this app is amazing for meeting, screen sharing and many other more things in this app.",good app for conducting online meetings and screen sharing,1.0
how to change video background?,want to put background image on video,1.0
it will say it is invalid email or password,receiving invalid email or password message,1.0
please allow me to change the wallpaper,want to change wallpaper,1.0
why is zoom unavailable in ukraine?,app is unavailable in ukraine,1.0
my zoom will not even load.,app is not loading,1.0
registration is long and tedious.,registration process is time consuming,1.0
you can not set the sound normally,want to adjust sound,1.0
"terrible gameplay, bad graphics, bad characters, this game is bad",quality of game is bad,1.0
a great way of communication and learning.,good app for communication and learning,1.0
excellent medium for conferences and classes.,good for conferencing,1.0
i will not let me put my date of birth,want to input date of birth,1.0
very good for meeting.,good for virtual meetings,1.0
this app quality is very poor,poor quality of product,1.0
unable to download updates,want to download update,1.0
best app for children,good for children,1.0
you can not change the name properly,want to change name,1.0
very good user interface and experience.,user interface is good,1.0
how to install a virtual background for ipad,want to get virtual background option for ipad,1.0
technical support does not respond.,want to contact technical support,1.0
plus i keep getting logged out of my account,getting logged out of account,1.0
"excellent app, but its licenses are very expensive!",license fees are expensive,1.0
google duo is a much easier app.,google duo is easier,1.0
i love this app because you can connect meetings and take care of other things,good for connecting to meetings,1.0
"sometimes, the video does not work either.",want to view video,1.0
i can not set background filters in my android device,want to use background and filters for android,1.0
please add blurred background on android devices,want to add blurred virtual background option for android,1.0
extremely bad service .,customer service is bad,1.0
it is just taking a lot of time to connect to meetings,joining the meeting is time consuming,1.0
can not set photos,want to add photo,1.0
good for meetings and bible study,good for spiritual meetings,1.0
zoom is now better and more stable,app is better and stable,1.0
how to turn on the sound?,want to activate audio,1.0
it is impossible to enter a conference,want to connect to the conference,1.0
the audio is cut off.,audio is choppy,1.0
the game lags a lot and the graphics are bad,graphics is low and gameplay is very bad,1.0
the application is nice but you need turkish language support,want turkish language support,1.0
difficulties with registration and login,want to register or login,1.0
i can not put a picture on the zoom profile,want to update profile picture,1.0
"it is cool and convenient, especially on distance learning",good app for distance learning,1.0
it is rather annoying because when you want to attend a meeting it just comes up that the app needs updating.,keeps asking for updating the app when joining a meeting,1.0
it is very easy to join,easy to connect,1.0
but do not connect and says error problem,want to connect,1.0
sign in to the correct email password and it just shows the wrong email or password,keeps receiving error message after entering correct email and password,1.0
i am downloading zoom from 2 days but it is not getting downloaded.,unable to download,1.0
zoom cloud meetings is easy for anyone to do,zoom cloud meetings is user friendly,1.0
unable to share link,want to share link,1.0
i am able to use green screen on samsung mobiles,want to add green screen effects,1.0
nice app but remove videos option,want to remove video option,1.0
older version was far better than this new.,previous version was better,1.0
it is simply impossible to study!,want to continue study,1.0
it is nice especially in an ipad,ipad version is good,1.0
i am wondering how i change my email address .,want to change email address,1.0
the ui can be improved,user interface needs improvement,1.0
please there is a recording feature in mobile users,want recording option in mobile,1.0
"whenever i switch to other apps , i automatically get logged out of the meeting",getting logged out of meetings,1.0
poorest service very disappointed,poor quality of service,1.0
i could not install this app on my phone!,unable to install app in mobile,1.0
it is very easy to login,easy to login,1.0
"great video quality, no lag",video quality is good,1.0
it has no recording option,want recording option,1.0
i faced this problem: there is no sound when sharing the screen.,want to hear sound when sharing screen,1.0
the pc version is very good.,desktop version is good,1.0
such a bad app for childrens,app is bad for children,1.0
bad app this only gives 40 minutes of meeting,want to conduct meeting for more than 40 minutes,1.0
this app is best for online class conducted by school .,good for connecting to classes,1.0
can anybody tell me how to make our id in zoom,want to make id in app,1.0
not having india's flag in emoji section,want indian flag in emoji section,1.0
can not connect to our service,want to connect to service,1.0
the audio quality should be better.,audio quality needs improvement,1.0
"the best app for video calls and online meetings, much better and easier than google meet, quite good for meetings at work and online classes",good app for conducting video calls and meetings,1.0
please improve audio and video quality.,want to improve audio and video quality,1.0
does not open a link to viber,want to access viber link,1.0
"very useful, and convenient for school meetings, etc.",good app for school,1.0
where is the sound button?,want to use sound button,1.0
i am unable to login to my zoom id even when i have logged into my gmail account,want to login with email,1.0
"it is unstable, the audio is being cut off and the image freezes.",image freezes and the sound is distorted,1.0
i am unable to blur my background..,want to blur the background,1.0
"it is only working on mobile data , it is not working on wifi",app is not working on wifi,1.0
one of the best app for online class.. but only 45 min we can do.,want to increase meeting time limit,1.0
how can i change the time limit?,want to extend meeting timelimit,1.0
i find it difficult to update my zoom cloud meeting,want to update zoom cloud meetings,1.0
this app is not installed in my playstore,want to find app on playstore,1.0
"it is really annoying that zoom still auto-rotates the meeting ui, even though my tablet's auto-rotate setting is turned off.",app auto rotates in meeting even after disabling auto rotate feature,1.0
it automatically gets sign out and i have to sign in again and again 3),getting logged out automatically,1.0
there should be a way we can cast zoom into a tv.,want to cast zoom into television,1.0
the updated app is not installing on my phone after the update.,want to update app on phone,1.0
after update zoom meeting not starting.,want to start a meeting,1.0
please help me issue a refund.,want a refund,1.0
it is way better than microsoft teams!,app is better than microsoft teams,1.0
i tried repeatedly pressing the join audio button and nothing worked.,join audio button is not working,1.0
this is a very nice app for interview & meeting.,good app for conducting online meeting and interviews,1.0
how to set dp on zoom meeting,want to add picture in picture mode,1.0
but i want to know how can i record the meeting??,want to record a meeting,1.0
"but there is no ""zoom"" the video in zoom app.",want to zoom in or zoom out,1.0
and i can not communicate with friends,want to connect with friends,1.0
zoom and the best solution for working remotely,good for remote management,1.0
can you give me indonesian language ?,want indonesian language support,1.0
"i see an approval error, but what is the problem?",receiving approval error,1.0
i can not register and unmute the conference,want to unmute the conference,1.0
there is no ukrainian flag in emoji,want ukraine flag in emoticons,1.0
"the app is terrible, do not download this discord mess a billion times better!",discord is better,1.0
so you can delete your posts,want to delete posts,1.0
the quality of the images is not good.,image quality needs improvement,1.0
does not work properly on windows 11,want support for windows 11,1.0
"but sometimes the screen flickers, the screen freezes, or i can not see any activity at all.",screen flickers sometimes,1.0
he will not let me put filters,want to apply filters,1.0
"this app is one of the most modern ""facetime"" apps.",good app for conducting facetime,1.0
do not pin videos when someone is sharing the screen (can not pin anyone while someone is sharing screen),want to pin video when sharing screen,1.0
love it keeping in touch with family,good communication with friends and family,1.0
zoom is comparatively good in terms of ui and features.,app has good features,1.0
please tell how to connect audio with bluetooth speaker in android.its not connecting,want to connect audio,1.0
but 1 - you can not delete zoom chat messages,unable to delete message in zoom chat,1.0
in my phone i am not getting background features,unable to put background image on phone,1.0
"when using this application, the device is very hot.",facing device heating issue,1.0
can not record audio .,want to record audio,1.0
i am not getting the blur option,want to get blur option,1.0
"i have online classes and since a few days, this app is not working properly.",want to attend online lessons,1.0
worst ping issue in this app,facing app ping issue,1.0
i forgot how to create a link,want to create a link,1.0
it take high speed network.very bad app,app requires high speed internet,1.0
your data is not safe on this app.,data is not safe,1.0
it makes remote meetings easier,good app for remote meetings,1.0
"he often does not let me into the confib because i allegedly write an incorrect config code, although everything is correct",want to open confib,1.0
it sucks with bad xd graphics,graphics quality needs improvement,1.0
so basically when i try to add contacts it does not work,want to add contacts,1.0
i can not find the background settings when i update it,want to find background settings,1.0
there is the ability to switch from computer to phone.,want to switch between computer and phone,1.0
"please update this, so that face filters work on things like ipad minis and such.",want to use face filters on ipad,1.0
"sign in with sso is not working, ios 15.4",want to login with sso,1.0
will not download from the appstore,want to download the app from google play store,1.0
the volume control is not working.,volume control is not working,1.0
the audio settings to connect should be automatic.,want to connect to audio automatically,1.0
i never know what is the zoom password?,want to know password,1.0
i too had problems after the update and could not fix it no matter what i tried!,facing issues after latest update,1.0
unable to connect audio over cellular/wifi,want to connect to wifi,1.0
for some reason i do not understand when the download reaches 100% i get a message that the application cannot be installed,facing issues after downloading percentage reaches 100,1.0
my zoom cloud meeting is not download,want to download zoom cloud meeting,1.0
just needs a little bit more security,security features are not high,1.0
please add an option to lock orientation of the screen or adjust it.,want to lock orientation of screen,1.0
"when i type my number in that zoom asks for, it tells me my number is incorrect.",receiving incorrect phone number message,1.0
"since the upgrade, i can not get into breakout room",facing issues with breakout rooms after latest update,1.0
no option for chating,want to get chat option,1.0
"this app is amazing,we can screen share also",good app for screen sharing,1.0
but whenever teacher screen share sometimes it is blackscreen,want to view shared screen,1.0
"there are other problems too like poor video quality, voice quality and connecting problems.",audio and video quality is bad and facing network connection issues,1.0
please note that share screen does not work in zoom with android.,want to share screen on mobile,1.0
"finding it very difficult to download it, takes a lot of mb.",want to download the app and takes up more memory space,1.0
when host removed me from the meeting i can not join please do something,want to join meeting after getting removed by the host,1.0
good add more features,want more features,1.0
how i set my profile pic at zoom,want to set profile,1.0
"poor connection of both video and audio, inconvenience of use, can not register normally, constant crashes and freezes.",app crashes frequently and facing network connection issues,1.0
you should like the option that you can put wallpaper on cell phone,want to set wallpaper on mobile,1.0
i do not know how to download this video,want to download video,1.0
but it would be best if we had the option of sharing only sound through android devices as well.,want share only sound option,1.0
it would be interesting to be able to create a scheduled meeting,want to schedule a meeting,1.0
i enter the identification code and give an error.,receiving error after entering correct identification code,1.0
"if the desktop version can still be used at the very least, then the application is generally useless",desktop version needs improvement,1.0
i try to log into a meeting the app says update,facing issues with update when joining a meeting,1.0
nice and easy to make a meetings.. hope everyone can know how to use this,app is good for meetings,1.0
audio on the headset does not work,want to hear audio on headset,1.0
there is no touch up appearance option for android devices,want to get touch up appearance option for android,1.0
it is tough to understand the app,app is difficult to understand,1.0
i do not know how to enable co-host and is a bit laggy.,want to enable co-host,1.0
i forget my password and tried to set new password via email,want to reset password,1.0
why does it rotate even if you turn it off?,want to turn off screen rotation,1.0
it does not have dark mode,want dark mode,1.0
the app is really good but the chat section is so bad.,chat feature needs improvement,1.0
"it is been 2 days, why is the zoom not working?",app is unresponsive,1.0
and pls add virtual background for tabs,want to get virtual background option for tabs,1.0
good app but no background why ?,want to view background,1.0
"my zoom app has refused to update even when there is data and network, and i have a very important zoom meeting to attend today, pls can you people help",unable to update zoom app,1.0
my zoom app has not install plz hlp me,unable to join,1.0
very nice and clean graphic app,graphics quality is good,1.0
excellent online means of communication.,good for virtual interaction,1.0
the video is regularly frozen,video freezes,1.0
why is the microphone turned on from the very beginning?,microphone turns on automatically,1.0
sometimes the screen freezes,screen freezes,1.0
"although i wrote the conference number and the code correctly (which was sent over hundreds of networks), but it writes the wrong code.",receiving incorrect conference code message even after entering the correct code,1.0
"with the app i can not share the sound at the time of screen sharing, they could help me.",want to send audio,1.0
unable to enter classes because of problem 104101,receiving 104101 error while joining class,1.0
"recently when I am running a macbook meeting, i can not share my ipad screen.",want to share screen on ipad,1.0
how do i increase the volume ?,want to adjust volume,1.0
i was thinking maybe you could add a profile picture option for group chats as well,want to add profile picture for groups,1.0
"i love zoom, but for the better, i think zoom should be for users to use on multiple devices.",want to use one account on multiple devices,1.0
and you can not share audio on the tablet?,want to share audio on tablet,1.0
i can not log in while updating!,want to login without updating,1.0
definitely recommend microsoft teams instead,microsoft teams is better,1.0
its not connecting to internet,want to connect to netwrk,1.0
how to save data or use less,want data saver option,1.0
but it has continued to charge me for subscription that i thought was canceled.,getting charged for cancelled subscription,1.0
"even if i set the speaker volume to low, it sounds too high",sound is too loud in the lowest setting,1.0
this app is very helpful to collaborate with friends welcome,app is good for collaborating,1.0
"i am having problems finding my recording after i recorded a zoom meeting on my samsung tablet, please help me",want to find recordings,1.0
the desktop version is terrible since the last update.,desktop version update is not good,1.0
when I am in an important meeting i recommend adding a notification that reminds you when the new update will come,want notifications for updates,1.0
it would be nice if more users can be seen on the screen at once.,want to view more participants on one screen,1.0
can not hear videos or see videos,want to view video and hear audio,1.0
great way for large groups to come together!!,good for group communication,1.0
shows error code very often,receiving error code,1.0
this app is very expensive to learn study online classes,app is expensive for online classes,1.0
it is the worst app for school students..,worst application for students,1.0
it helps me a lot with regards to my spiritual needs.,good for spiritual needs,1.0
"still does not allow choosing background filters from mobile devices, very inconvenient",want to get background and filters for mobile,1.0
bt i could not record my session via mobile,want to record on phone,1.0
it works fine but sometimes the zoom server crashed i leave it to be fixed please,zoom server crashes,1.0
i can not talk in class,want to speak,1.0
"the quality of the meetings, both sound and image, are good.",good quality of meetings,1.0
"many times the sound is not activated in the meeting, please correct it",want to hear audio during meeting,1.0
"when i write the correct access code, it writes what is wrong and try again.",receiving incorrect access code message,1.0
i have not been able to enter the room,want to access the room,1.0
i do not know how to enter a zoom meeting.,want to join meeting rooms,1.0
somehow it works better on cell phone than on my laptop,mobile app is better than desktop app,1.0
i can no longer pass classes,want to pass classes,1.0
there is a problem where i am not allowed to use zoom on mobile.,want to use mobile version,1.0
does not want to register and cannot join the conference,want to register and cannot join conference,1.0
will not connect on my new iphone 12,app is not working on iphone,1.0
not able to receive virtual call with physician office without connection issues!,want to receive virtual call,1.0
"zoom just withdraw money from my account without any notification, just an invoice of payment i did not make, they really need to stop that",amount getting deducted without any notification,1.0
"just when I am about to join an important meeting, i can not access zoom because of a mere update..",want to enter meeting room,1.0
love the video sharing experience,good for video sharing,1.0
"hope the developer optimizes the application better for this table line, and should update the language switch section in the application.",language switching section should be updated,1.0
pls teach me how to change pfp on zoom,want to change zoom pfp,1.0
before updating its nice but not now i have many connection issues after updating this app,facing network connecting issues after updating the app,1.0
very low quality meeting app.,poor quality of meeting,1.0
"not able to log in ,my account is locked",want to login as account is locked,1.0
but whenever i join the meeting and then if i want to go to other app then host voice is completely inaudible and after 2-3min it disconnected..,want to hear audio and meeting gets disconnected,1.0
so i keep tapping and the unmute button still does not appear,unmute button does not appear,1.0
there should be a option of co host in android.,want co host option in mobile,1.0
but in android phone there is not available record option.,want to get record option in mobile,1.0
"i keep bouncing that my session has expired, but i hit some bugs and fix them",sessions are getting expired,1.0
free fire can not be played in,want to play free fire,1.0
"if you use it through the mobile app, you do not receive files from other people in the chat",want to receive files in chat,1.0
"i can not turn the sound off, i can not turn it on.",want to turn off sound,1.0
i could not download it to my tablet even though i had previously used it without problems.,want to download the app on tablet,1.0
how do i get to a conference if i can not log in?,want to login with phone,1.0
better viber than zoom,viber is better,1.0
"the application is just disgusting, it constantly lags the sound despite the fact that i have a samsung galaxy s21 phone!",app is slow and facing issues with audio,1.0
but you can do so that you can put an animated gif picture and not just a photo.,want to put gif,1.0
the truth is that my zoom is very good what i would like is to be able to put the profile picture,unable to view profile picture,1.0
it is a very good application but it locks up and takes me out,app locks up,1.0
but i give it 4 stars because they should correct the problem that when they take you out of a meeting it will not let you back in,meeting gets disconnected and unable to rejoin,1.0
it is not possible to have calls by other applications at the same time when you are connected to the zoom,want to have calls while other apps at the same time,1.0
"the graphics are very bad, and it takes time to load the skins",want to load skins,1.0
"you either have sound, microphone, or camera will refuse to turn on.",want to turn on sound and camera,1.0
so this app is horrible because people hack into it,app security needs improvement,1.0
i hope that there is a pip mode.,want pip mode,1.0
the app is easy to use but sometimes my mic and camera does not work on zoom.,camera and microphone is not working,1.0
sound cuts in and out if more than one person speaks/makes noise at the same time.,want to mute background noise,1.0
i can not turn on video in the meeting.,want to turn on video in a meeting,1.0
i try to join & screen goes black with the 4 squares showing only.,screen is black,1.0
suggestion can you also add an option where we can change or blur background in all android phones?,want to add blur option,1.0
"instead of sending the audio to my headphones, what i assume is the bluetooth option sends the audio to my phonecall speaker (I would have to hold the phone to my ear).",want to hear audio through speaker,1.0
plans are very much expensive.,plans are expensive,1.0
wish i could customize my background,want to customize background,1.0
do not trust the privacy of this app.,app privacy needs improvement,1.0
provide screen recording features without permission of host,want screen recording feature for viewers,1.0
there is a problem on bluetooth audio and device audio.,facing issues with bluetooth audio devices,1.0
"terrible app, not optimized, works terrible",app is not optimized for devices,1.0
looking forward to adding the background to the zoom meeting,want to add background feature,1.0
this is a very helpful app for my online classes but it so lag and so much time taken for connection,joining classes is time consuming,1.0
not able to join any meeting smoothly after every minute my zoom disconnects and shows error,unable to join zoom rooms,1.0
and it keeps taking me out of my meeting,getting removed from meetings,1.0
the microphone itself makes strange noises.,facing issues with microphone,1.0
add virtual green screen on android please,want green screen option for android,1.0
this app will not let me register with facebook or my google account.,want to register with facebook or google,1.0
it gives an error 403 and does not allow you to enter.,receiving 403 error,1.0
it is no longer compatible with my tablet,app is not compatible on tablet,1.0
it is just that sometimes the transmission is interrupted.,facing transmission issues,1.0
"the missions are difficult and confusing, you level up very slowly and you are lost all the time and the one who delivers the missions does not stop talking, the game is very bad.",game needs improvement,1.0
it is impossible to write because the pen pressure is severely cut off and the lines are printed out sharply,want to write because the pen pressure is cutoff,1.0
"interactive handwriting was the biggest merit, but i could not write it because it was blocked.",getting blocked in interactive handwriting,1.0
please remove the left and right flipping function.,want to remove left and right flipping function,1.0
"i can not get panting because i use a supercomputer, but the zoom on my phone is a guggie computer",want to do painting,1.0
terrible quality of the transmission of the meetings.,transmission of meeting is bad,1.0
please loosen or lower the age limit for zoom,want to lower age limit,1.0
"the app is very good, but the decision to disable airplay and other screen mirroring devices was a terrible one.",want to activate airplay and screen mirroring devices,1.0
"overall, controls become more complex and difficult",controls become more complex,1.0
after several downloads and removals the language of the app is still russian!,want to remove russian language,1.0
"since then, i can not turn on the video well.",want to turn on video,1.0
audio problems are endless but what is really bothering you in the last week is that when i schedule a meeting through the mobile app it does not appear on the website's meeting list anymore!,want to schedule a meeting through mobile and facing audio issues,1.0
"everything was fine before but now after i re-installed, it is not supported on my ios",app is not supported on ios after reinstall,1.0
but i want my screen to be mirrored even when others see it.,want screen to be mirrored,1.0
i can not access any meeting links,want to connect using meeting url,1.0
"if you use zoom on mobile (usually used with an ipad), the zoom participant screen will continue to blink in recent years.",screen flickers on ipad,1.0
i could not cancel the payment as scheduled.,want to cancel payment,1.0
please cancel the requested transaction.,want to cancel transaction,1.0
i am not able to share whiteboard from iphone.,want to share whiteboard from iphone,1.0
cannot use zoom as a vip paid user.,want to use app as vip paid user,1.0
"horrible, you do not have an icon to transmit screen (mirror),, horrible the application for that",want to transmit mirror screen,1.0
"when i mirror in the video settings, the view i see is mirrored, but i can not mirror it to other participants; it is really uncomfortable!",want to mirror screen to participants,1.0
"they can put the option to exit the application and continue to appear the video, as well as on the screen, there are some annoying bugs.",want to exit the application,1.0
you should add more background and face stickers,want to add face stickers,1.0
"the pen does not work any more, can you tell me why ?",pen is not working,1.0
my invitees cannot join my meeting,invitees are unable to join meeting,1.0
"it is a good app and i am happy for this app but please give the virtual background option on this ipad mini , please i am pleasing you to give the option.",want to get virtual background option in ipad mini,1.0
the zoom is limited with time and it is very disruptive,zoom has a time limit,1.0
also if we join from the browser sometimes the mic does not works.,microphone is not working when joining from browser,1.0
also it did not even have passcode as an option,want to get passcode option,1.0
quick simple to set up and value for money,easy to set up,1.0
"this app has been helpful very much, but as a gamer i really need animated profile pictures up to 100mb size, this feature is helpful to people like me, and maybe some other people.",want animated profile picture,1.0
"and as always we need more features for ipad and iphone like ""save contact name and number""
and also new backgrounds and filters.",want better features for ipad and iphone,1.0
"when i checked the basic accessibility i found that there is no problem, but i could not find options for camera",want to find camera option,1.0
we can not find what the meeting password is.,want to find meeting password,1.0
in iphone it far better battery performance..!!,iphone has better battery performance,1.0
extremely good interface and clear quality conferencing,good interface and clear quality conferencing,1.0
bad connection and can not pin in phone,facing connectivity issues and unable to pin in phone,1.0
best wishes for more creativity to the team of developers.,good for creativity,1.0
web version is crap can not hear dicc ruined whole meeting so have to download this app,web version is bad,1.0
"functionally things are great but the ui could be better, chat button is under a hidden menu although there is space on main screen.",chat button is under hidden menu,1.0
monday's upgrade means i can no longer use zoom on my ipad and only through safari with limited features on my imac.,want to use zoom on ipad,1.0
"on ipad member video views are very limited, and got very limited features.",video views are limited,1.0
only problem. wish we could isolate each speaker in the break out room.,want to isolate speaker in break out room,1.0
i want to be able to change the position of the camera box when zooming with a tablet or phone.,want to change position of camera box when zooming,1.0
", you can at least add your own volume slider.",want to add volume slider,1.0
"the app is great and useful but could you add a feature where you can mute someone but for the other participants they can still hear that person, it would be very useful if it was added",want to mute participant,1.0
can not get it to pair with hearing aids.,want to pair hearing aids,1.0
can you please add background and video filter option to ipad air,want to add background and filter option to ipad,1.0
the sound is constantly glictching!,sound is constantly glitching,1.0
"to whom it may concern
is it possible to have the translation simultaneously by splitting the screen in two",want simultaneous translation by splitting screen,1.0
where to choose language,want to choose language,1.0
"split screen while conversing: if you change zoom from split screen to full screen, you might lose all audio control.",converting split screen to full screen will lose audio control,1.0
you can not change your mic setting while drawing on someone else's,want to change mic setting while drawing,1.0
and there is making it impossible i need my account to cancelled as soon as possible,want to cancel account,1.0
you need to have a better way to connect to people,want to connect to people,1.0
then the mic because sometimes when we want to open the mike we press camera and that is not fair at all so pls make the camera further then the mic.,want camera and microphone option to be further,1.0
"would be even better if zoom could silence the computer notification sounds, like incoming emails.",want to mute computer notification sounds,1.0
how can you add a comment or well wishes?,want to add comment or well wishes,1.0
my keyboard and speaker lags.,keyboard and speaker is lagging,1.0
unable to upload file attachments in chat.,want to upload file attachments,1.0
"i cannot enter ""zoom"" from the web page from my network tv (samsung), it does not support.",want to access zoom from webpage,1.0
:can you just add some more of backgrounds like:,want to add more backgrounds,1.0
why no video backgrounds yet?,unable to see background video,1.0
"it really annoys me, because in my account I am using i cannot change my name, or profile picture, and my name is completely different then my real one, and half my school does not know.",want to change name and profile picture,1.0
i can not open my voice disabled my image is enough either,want to open voice,1.0
unable to enter the year of birth.,want to enter the year of birth,1.0
how do i get quality recordings?,want to get quality recordings,1.0
"well after i set my account i was trying to joint my zoom meeting they kept on telling me ""switch account"" and they will not let me change my name and photo . not impressed",want to join meeting and change name and photo,1.0
"when there is a problem, support is non-existent.",customer service needs improvement,1.0
I am going into zoom you background to open my exam and my camera switches off automatically.,camera switches off automatically,1.0
"but every time your phone number could not be saved, please try again",want to save phone number,1.0
"first off, the preveiws they put in the app store are so cringe.",app store previews are bad,1.0
"screen share quality is horrible, 40p at the very most.",screen share quality is poor,1.0
"-files are being sent very slowly, even sometimes canceled.",files are being sent slowly,1.0
when i click on the effects section i can not go back.,want to go back after clicking on effects section,1.0
everyone says there is no support for turkish language translate from settings to turkish so simple or how did you not understand?,want to translate turkish language,1.0
"unfortunately, no sound on tv when i plug my ipad or iphone into an hdmi adapter.",want to hear audio on tv after plugging in ios devices into hdmi adapter,1.0
weblink does not work on ipad browser(google),weblink does not work on ipad browser,1.0
we also have to take notes on our ipads and can not take notes while splitting the screen because the space is too small for both writing and meeting to see anything!,want to take notes while splitting screen,1.0
all of a sudden it does not take the password which is working on mobile but not on ipad,password is not working,1.0
why are account settings so inaccessible?,account settings are inaccessible,1.0
i want to change my 2fa settings and authenticator app,want to change two factor authentication settings and authenticator app,1.0
"unfortunately, no breakout rooms can be created from the iphone.",want to create breakout rooms,1.0
no participants can focus in breakout.,want to focus on breakout,1.0
as far as top but breakout rooms are missing.,breakout rooms are missing,1.0
i can not chat with my friends because i can not find the contact request button!,want to chat with friends,1.0
may i ask how to send pictures in messenges?,want to send pictures in messages,1.0
"lots of features, but chat boxes keep blocking the presentation",chat boxes are blocking the presentation,1.0
disable mic in the settings but still feel switched on without pressing the mic,want to turn off mic,1.0
still have not got a refund.,want to get a refund,1.0
"also, for the life of me, can not seem to find a way to add different backgrounds.",want to use backgrounds,1.0
fix password error and invalid id,want to fix password error and invalid id issues,1.0
please provide pip on ipad,want pip on ipad,1.0
it would be perfect to have more message recall function!! ',want message recall function,1.0
"video, sometimes audio as well, turns black intermittently when switching split view on ipad.",video turns black intermittently when switching split view,1.0
unpleasant reverse camera vcl,reverse camera needs improvement,1.0
it is in german - how can i switch to dutch or english please ?,want dutch or english language support,1.0
waste of time it does not even let you scan the code when you have code!,want to scan code,1.0
"hi, i have black screen when i switch to see active speaker.",receiving black screen to view active speaker,1.0
expect the releasers to add settings hit wallpapers on ipad,want to add settings hit wallpapers on ipad,1.0
but the app sometime have a litle bit lag when my teacher share the screen and the video.,app screen sharing feature is slow,1.0
multiple code passes can not be entered.,want to enter code,1.0
"network or network, video does not match the voice and screen.",want to sync audio with video,1.0
ipad 5 does not have the background.,ipad 5 does not have background,1.0
but iphone 5 must have virtual background on the filter,iphone 5 needs virtual background,1.0
i can not take part in any class on my iphone and my ipad too.,want to take part in class on iphone,1.0
i do not know how to cancel the service and the payment becomes automatic,want to cancel subscription,1.0
"every time you go to the meeting or every time you learn online, you need to enter your password again.",user has to enter password multiple times,1.0
"but the bad thing about this application is that the free version has a bad interface, in addition to the fact that you have to pay to have a pro version to be able to have a meeting of more than 40 minutes and better features.",free version has bad interface,1.0
how can i open a group?,want to open a group,1.0
"i do not know how to put the filters, nor do i know how to put the photos in the entrance when you turn off your camera.",want to apply filters and put the photos in entrance,1.0
"they have just set up a very annoying update with a terrible sound every time i tap on mute/unmute micro, and there is no way to disable that.",latest update is bad with audio issues,1.0
"after the last update, the interface completely changed and displayed in russian, in the settings there is no such option as ""language selection""",want to choose another language,1.0
can someone tell my how to start a call?,want to start a call,1.0
"I am so sad, and light disappoint because this app on iphone do not have feature allows user to change background in meeting.",want to change background on iphone,1.0
"app was easier than others, but i recommend you make an interface easier and have more time in meeting for the free version.",user interface needs improvement and need to extend time limit for meeting,1.0
mirror mode is horrible,mirror mode is horrible,1.0
"i can not register, plus the lack of ukrainian language, please correct it and put a good assessment",want to register and want ukrainian language support,1.0
"when a link is sent, it does not let you click and follow it.",want to click on link,1.0
the appt shuts down twice,app shuts down twice,1.0
it would be awesome if you implemented native picture in picture mode for video calls so we can minimize the app while keeping a call on the screen,want native picture mode for video calls,1.0
it is a good app but it does not let me enter what it says in the app store that it is for 4 years and older,want to enter the app,1.0
the application crashes a lot and i can not understand my meetings and also it takes a long time to let the meeting in please fix it,app crashes during meetings,1.0
it does not connect me with people to play minecraft does not work!,want to contact people,1.0
zoom will not let me create sections and also will not let me start or subscribe,want to create sections,1.0
* and it is the one i use for everything but the sharing function is very limited and difficult i cannot share videos or the sound of the ipad among other things like on computers,want to share videos,1.0
it would help many students if when zooming out while in meeting the meeting is minimized in one part of the screen.,want to minimize the screen while zooming out,1.0
i need to reduce the size of the app because the current 15 gb device contains 16gb erase all unnecessary apps then many memories can not be deleted,want to reduce the size of app,1.0
but. it will not let me put funds and filter,want to put money and filter,1.0
"ask zoom for 3-4 people, but we can not exchange cards",want to exchange cards,1.0
"when you try to log in through an institutional account, you enter a loop that ends 6 hours later without actually signing you in.",want to login using institutional account,1.0
"i mainly use it for yoga lessons, but i can no longer turn off the center camera in the control center, and i can not capture the entire pose.",want to turn off center camera in the control center,1.0
there is a bug that the zoom screen hardens on iphone xs (ios15.2.1).,screen freezes on iphone,1.0
I would like zoom to be able to work in background with picture in picture video like facetime does.,want the app to run in background with picture in picture video,1.0
"now, camera is instantly turned off when you put zoom on background.",camera turns off when the app is kept on background,1.0
I would also love to be able to control remote screen from the ipad.,want to remote control screen from ipad,1.0
"the question is why i can not save a list of meetings i can connect to on the main screen, with the ability to name this meeting.",want to save meeting lists,1.0
"resolve the issue of maintaining a list of conferences, prepared templates",want to create a list of conferences and prepared templates,1.0
should not there be an upgrade to pro button hanging around somewhere?,want to upgrade to pro,1.0
i do not understand why guys write bad reviews!,poor reviews,1.0
switching between devices with a single account is very convenient.,switching between devices with single account is good,1.0
why can not i make use of a whiteboard.,want to use whiteboard,1.0
"the notification bell keeps going on during the meeting, it rings when a person joins or leaves which disturbs the meeting.",notification bell keeps ringing during the meeting,1.0
"the bell is not necessary, it is okay to leave a banner on the screen but not a bell every time someone joins.",want to remove the bell feature,1.0
add pip picture-in-picture support for iphones,want picture in picture mode for iphone,1.0
"support does not work, there is no way to fix it in the settings.",support option does not work,1.0
"dear zoom developers, make it possible to change icons on 7 iphones",want to change icons on iphone,1.0
it has connectivity issues on iphone.,iphone has connectivity issues,1.0
i would just like to finalize that ipad and iphone can connect a second pair of headphones via bluetooth.,want to connect a second pair of headphones via bluetooth,1.0
"the zoom has always worked very well, it is very convenient, but recently it has become hanging,",app hangs sometimes,1.0
"ask to drop data (name, surname, email) and send incomprehensible links to some conferences.",want to drop data and send links to some conferences,1.0
a large delay when demonstrating a computer window from a 4k display to an ipad.,facing delay when demonstrating computer window from 4k display to ipad,1.0
there is no way to organize session rooms on the ipad.,want to organize session rooms on ipad,1.0
"when i went to a distance learning lesson, conferences always crashed and did not work",conference did not work,1.0
why can not i register with iphone 7,want to register with iphone,1.0
"- can not easily change name once in a meeting
- chat does not save to beginning of call -- so if things are typed into chat a few minutes into the call, it has to be retyped when late attendees arrive.",want to change name in a meeting,1.0
- you can not control audio from the app if you dial in on the phone,want to control audio from app,1.0
- chat function is difficult to switch between group reply and personal chats -- i have seen many accidental chats,want to switch between group and personal chats,1.0
- backgrounds do not have great interface --,interface of background needs improvement,1.0
really wish the mobile client allowed you to save recordings locally.,want to save recordings locally,1.0
(iphone 8) is utterly incapable of connecting to any calls.,want to connect from phone,1.0
i can not assign a picture to my profile for when i have my camera off.,want to add profile picture when the camera is off,1.0
"and no where to upgrade the plan, please assigned a button for upgrade to others plan also.",want to upgrade plan,1.0
please put the controls at the bottom of the screen.,want to put controls at bottom of screen,1.0
an option to touch the space bar to toggle mute/unmute would be wonderful.,want to toggle mute/unmute using spacebar,1.0
every time i update my profile picture and join a meeting the profile picture looks blurred.,profile picture is blurred,1.0
i do not understand why i can not get it to work on my apple laptop,want to work on apple laptop,1.0
"also, without me selecting that feature the app automatically blurs my background which creates a halo around me making my outline look very unnatural.",app blurs background,1.0
please allow me to unblur my background and utilize the full quality of my camera.,want to unblur the background,1.0
"zoom & my airpods pro work great on my iphones but, the zoom app on my macbook air and the bluetooth glitches out like crazy and cuts in and out.",facing issues with bluetooth connection on macbook,1.0
"really great app using just ""basic"" (or free.) version.",basic version is good,1.0
the interface (especially with regards to user controls) is hard to navigate.,interface is hard to navigate,1.0
i only used it a cpl times yet my saved passcodes do not work.,saved passcodes are not working,1.0
"the ability to lock a breakout room from the inside, similar to the way we can lock a meeting, preventing others from joining.",want to lock a breakout room from inside,1.0
"if we could lock the breakout room and have the room display ""locked"" rather than listing the participants names, that would be great for facilitating private conversations.",want to lock the breakout room,1.0
the ability to limit who can hear the audible alert when a participant enters the waiting room.,want to limit the audible alert when participant enters the waiting room,1.0
my biggest complaint is the inability to turn off the intergeated calling features.,want to turn off intergrated calls,1.0
not able to mirror screen onto smart tv,want to mirror screen onto tv,1.0
we need add close caption for deaf who can not hear please you can put add for close captions on zoom by wednesday morning,want to add close captions,1.0
there is not even a way to contact in any settings on the app.,want to contact in settings,1.0
and it said sign in failed in chinese,want to sign in in chinese,1.0
this app would distract me a lot and it would glitch all the time and took all of the space on my laptop and it would always start and then the wi-fi would just shut down,app glitches frequently and takes up large memory space,1.0
"i love zoom for having meetings, but a problem that occurs occasionally is trying to mute someone or lower someone is hand but the list changing due to someone unmuting or raising/lowering their hand, causing me to mute the incorrect person.",facing issues when trying to mute or lowering hand,1.0
logging onto a meeting is very easy,logging onto a meeting is easy,1.0
great experience using zoom all i wanted was more new features like video background editing option in ipad,want video background editing option,1.0
zoom app is not opening in iphone 7 plus.,zoom app is not opening in iphone,1.0
it is so good to have facial recognition when discussing personal or professional work.,facial recognition is good,1.0
sometimes i want to be anonymous in a meeting -every time i go to edit my name and put a new name in next time i go into zoom,want to be anonymous in a meeting,1.0
difficult to get started to host a meeting,want to host meeting,1.0
"what is that all about in other words, i cannot get into my own zoom room.",want to enter zoom room,1.0
"i love the zoom app, i just wish they would address a way to center view when you have an off-center camera on your device.",want to have a center view for off center camera on device,1.0
they are still sucking money out of my account with no means to cancel at this time.,want to stop amount deduction,1.0
it is really helpful to be able to mute other people on zoom if they are accidentally unmuted or saying wrong things.,want to mute other people,1.0
it is frustrating and maddening to be unable to connect with the others through zoom!,want to connect with others through zoom,1.0
i cannot connect to zoom meetings on my ipad.,want to connect to meetings on ipad,1.0
screen goes black except for a little man icon in center --,screen becomes black except for the little man icon in center,1.0
"no buttons, no way to drag down meeting controls from top, absolutely nothing i can do.",want to drag and drop meeting controls,1.0
i do not understand why the simple function of allowing us to change our status on the mobile app is not an option.,want to change status on mobile,1.0
using zoom for online classes is super convenient and will not get stuck.,using zoom for online classes is good,1.0
host functionality is very glitchy on tablet or phone.,host functionality has glitches on tablet or phone,1.0
"no integration with the password manager, so you must remember your password, and you will re-use the simple one you use for all the crap websites.",want integration with password manager,1.0
almost no configurability of how participants are displayed.,no configurability of how participants are displayed,1.0
"for some inadequate reason, it always wants to launch through a web link, opening another useless tab, and adding a couple of useless clicks.",app launches using web link,1.0
there is no option to use breakout rooms.,want to enter breakout room,1.0
it seems certain features have not appeared in the mobile version of zoom.,mobile version of zoom does not have features,1.0
please add the feature to where we can close the zoom app & still watch a video/movie on the small screen.,want to close the app and watch video on the small screen,1.0
2.- ability to know how many people are listening the foreign language.,want to know how many people are listening the foreign language,1.0
i love to see smiling faces and continue building relationships through zoom!,good for building relations through zoom,1.0
"it is good except you canot record on the ipad version, and you cannot have the chat up and see the screen.",want to record on ipad,1.0
why is that music is not translated well on zoom?,music is not translated on zoom,1.0
i am going nuts trying to figure out a way to have a picture up while on a zoom (and i do not want to be seen live).,want to upload a picture without being seen live,1.0
"this app does most things i could do on a laptop, however, the ability to do breakout rooms is not on the app.",ability to breakout rooms is not present on app,1.0
I would like to be able to minis the screen while i scroll thru other apps,want to minimize the screen while scrolling through other apps,1.0
this app is very glitchy especially on a green screen background the ads are kind of false advertising because they look so high quality when in reality,app is glitchy on green screen background,1.0
you should also add a section where you can put in notes.,want to add a section to add notes,1.0
but when you try to screen share it is always lagging and you can not see what is going on.,screen sharing is lagging,1.0
once me and my friend where trying to watch a movie but when she tried i could not see it and when i tried she could not see.,want to view video together,1.0
I would like to be able to still see the meeting room info even when I have turned off the video.,want to see meeting room information after turning off the video,1.0
i some how lost the audio and video.,lost audio and video,1.0
please send some advice on how to get back to the zoom meetings once I have lost the audio and visual.,want to get back to meetings after losing audio and visual,1.0
on iphone and ipad i cannot put a picture up as my portal-face-screen.,want to put picture up as portal-face-screen on ios devices,1.0
and you know how you can put an emoji on the corner of your screen.,want to put emoji on the corner of screen,1.0
video sending pauses when i do multitasking.,video sending pauses during multitasking,1.0
this helps stay together as a family,good for families,1.0
does not have some obvious features like auto switch between devices.,want to auto switch between devices,1.0
the only thing i feel could be improved is to have the passcode imported/populate automatically if the meeting is joined via a link.,passcode needs to be imported automatically if meeting is joined via link,1.0
please add a floating window picture in picture mode when you minimize the app like webex (add mute buttons).,want floating window picture in picture mode,1.0
i look forward to zoom to have the same filter on instagram,want filters from instagram,1.0
hope creative manufacturers can add block function to not mind the matching trg is not worth having,want block function,1.0
how to sign out acc just crazy chinese,want to sign out from chinese language,1.0
app freezes when signing in with google,app freezes when signing in with google,1.0
please contact the japanese developer to remove the message mode;,want to remove the message mode,1.0
should add nx features with wallpaper such as wallpaper replacement,want wallpaper replacement feature,1.0
"call quality is outstanding, a big thank you to the developers",call quality is good,1.0
"after spending months using it, it gives me error code 1142 saying that i can not connect from spain.",receiving error code 1142,1.0
unable to fix error 1132 on ipad,want to fix error 1132 on ipad,1.0
zoom is amazing i can zoom anywhere and anytime but sometimes my internet goes down,zoom is amazing,1.0
unfortunately the new update does not improve the screen sharing or the big gap between computer zoom and ipad.,facing issues with screen share after latest update,1.0
when you share screen in ipad your camera will shut down,camera shuts down during screen share,1.0
please provide a feature to be able to install a background on iphone 6,want to install background on iphone,1.0
"it is a shame that once the meeting has started, you can not reach the settings anymore.",want to access settings after joining meeting,1.0
"hey guys, no choice menu for virtual background iphone 7",want to get menu for virtual background on iphone,1.0
i need to wait a long time to login,takes time to login,1.0
why only 10people can acces room?,want to know why only 10 people can access room,1.0
"on my ipad, i can not see the host's screenshare when i minimise my meeting.",want to view screen share when minimized,1.0
i always drop out from the waiting room although my network is stable.,getting disconnected from waiting room,1.0
it keeps loading although my network is stable.,app keeps loading while having stable network,1.0
"app takes lots of resources, it is slow and mute button is unresponsive.",app is slow and mute button is unresponsive,1.0
is it possible to translate the menu into dutch.,want dutch language support,1.0
would be nice if expression icons return in zoom.,want expression icons on app,1.0
the links do not open me and it tells me error 1132 all the time i deleted it,want to access link,1.0
"it will not even let me put in my age it stays on the day it is opened and will not let me change the date, i can not even use the app",want to input date and age,1.0
wish it worked better on ipads,ipad version needs improvement,1.0
my zoom lags and lags i try to join my class,want to join class,1.0
it is really hard to get into meetings on laptop because it is having you go back in fourth to google and the app.,want to connect to meetings on laptop,1.0
the sound went out and the video froze.,sound went out and the video froze,1.0
"i can not use google drive, pages, notes, etc while using zoom.",want to use google drive while using zoom,1.0
i do not understand what the point of this app is when you can not even click the sign in button smh,want to click sign in button,1.0
no options exist to change subscriptions in the mobile app.,want to change subscriptions,1.0
1star only for removing background blur on my ia 2.,want blurred background feature,1.0
the ipad app is terrible!,ipad app is bad,1.0
"even with a high speed internet, the app always lag.",app is slow with high speed internet,1.0
how do i post my profile picture with my ipad 9th gen,want to upload profile picture on ipad,1.0
speaker view not working on ipad,speaker view not working on ipad,1.0
is there a way to watch the recording?,want to watch the recording,1.0
"no option to save all recurring meetings for participants, hassle to click the link and input the passcode every time.",want to save recurring meetings,1.0
please make an option to allow the co-host/host to assign participants when using an ipad.,want option for host/co-host to assign participants when using ipad,1.0
"everytime i transfer from breakout room to another breakout room, it automatically unmutes me.",app unmutes automatically when switching between breakout rooms,1.0
"if you pass the edge authentication, you will not be able to open zoom.",want to use zoom,1.0
can not change settings like background picture until I am already in a meeting,want to change settings like background picture,1.0
everything is good but in the emoji thing symbols is misspelled.,emoji symbols are misspelled,1.0
"the removal of the names and mute status makes the app appear more streamline, but we need the names and mute status back (function over appearance)!",remove names and mute status,1.0
why can not i stream my meeting to my apple tv.,want to stream meeting to apple tv,1.0
birthdate information will not load.,birthdate information will not load,1.0
re: mobile.really terrible design that launches you into meetings without giving you a preview of yourself which has caused me to suddenly enter a meeting with video and audio on in the past.,want to get preview before joining meeting,1.0
great all around app except it does not give microphone access with the version 1 of ipad pro.,ipad pro version needs microphone access,1.0
poor performance in weak signal areas,poor performance in weak signal areas,1.0
can not turn off two step authentication.,want to turn off two step authentication,1.0
not a smooth sign up either.,sign up experience is bad,1.0
"they do not take my birthdays ( I am
adult) and does not let me sign up",want to sign up for birthday account,1.0
phone calls drop all the time,phone calls drop all the time,1.0
my zoom conferencing stopped after 15 minutes.,zoom conferencing stopped after 15 minutes,1.0
I am trying to film my youtube video and it will not let me go on there,want to record youtube video,1.0
bad interface and the code you guys sent me does not even work,interface is not good,1.0
add arabic to the application,add arabic to the application,1.0
arabic language does not exist,arabic language does not exist,1.0
but it does not support arabic language..,want to use arabic language,1.0
excellent tool for personal development.,good for personal development,1.0
quality portuguese subtitles are missing!,portuguese subtitles are missing,1.0
you need to make it possible to manage the simultaneous rooms through the application.,want to manage multiple rooms,1.0
"the application is missing backgrounds, this is very bad.",app is missing backgrounds,1.0
i can not leave the class finish,want to leave class,1.0
the new icon menu does not let me access the text box.,want to access text box,1.0
you do not have the possibility to add a wallpaper to the free version,want to add wallpaper to free version,1.0
"it is unacceptable that it is not possible to mirror the image and audio natively in the application, if you want to use an android device and mirror the video to the tv on google chrome cast you can only be able to use the google home app but the audio does not mirror, it is muted and ridiculous!",want to mirror audio and video,1.0
super easy to connect with youtube to make live!,good for connecting with youtube,1.0
i can not hold any meetings!!,want to hold meetings,1.0
the new mobile update was horrible!,mobile update was bad,1.0
i could not open my nephew's baby shower.,want to open the baby shower,1.0
a different price comes every month.,different prices come every month,1.0
i am not going to 5 stars yet because what is most lacking is the option to open simultaneous rooms and place participants in them.,want to open multiple rooms simultaneously,1.0
many limited features in the tablet version,tablet version has limited features,1.0
it does not work properly on multilaser tablet!,want to use multilaser tablet,1.0
"on the smartphone there is no way to configure it to brighten the camera, the video is very dark, the settings on the phone are very limited, in the end i only use it, because there is still no other feature, but when it does not improve, i will uninstall it",want to change settings,1.0
"it is reasonable, i have an account problem, zoom does not recognize my email password, so i can not create my meeting room",app does not recognize email and password,1.0
excellent app saves our mental and emotional faculties beyond the professional,good for mental and emotional management,1.0
worst app ever seen chinese products are just made for show but not of use,poor quality of chinese products,1.0
why can not i edit meeting settings from mobile app ?,want to edit meeting settings,1.0
"and that too the pop up will not close even after tapping on the ""x"" button.","pop up will not close even after tapping on ""x"" button",1.0
it uses very much data and you can not lower the video quality,data consumption is high and unable to adjust video quality,1.0
"it have been a good app,it help me get along with family and friends",good for family and friends,1.0
it always needs an update the sound system is terrible,sound system needs an update,1.0
good apps for study and conference,good apps for study and conference,1.0
"i use to use zoom on both my tablet and mobile with same account in same time, so it very easy to switch between device and its very useful.",ability to use zoom on mobile and tablet,1.0
"linking does not always work for some reason, and you can not easily copy and send the meeting invite information.",want to copy and paste meeting invite information,1.0
i uninstalled this app and yet it is still appeared on the update list?,uninstalled the app and yet it is still on the update list,1.0
while connecting 10 or more people connection frequency is to slow.,connecting 10 or more people is to slow,1.0
very easy to create meeting links,easy to create meeting links,1.0
easy to connect with members.,good for connecting with members,1.0
i hate this app becouse this app do not have background & filters,app does not have background & filters,1.0
i missed a very important meeting because zoom does not work on my new samsung galaxy phone,want to use zoom on cell phone,1.0
bluetooth headset optimization is poorly done.,bluetooth headset optimization is poorly done,1.0
but ui is a bit too laggy,ui/ux is slow,1.0
the new zoom feature which enables us to shift to other pages while still keeping the video on is awesome.,new zoom feature is good,1.0
"it never stops, icons are not handy, it joins by video as default.",icons are not useful,1.0
"could have given 5 star but for few minor glitches - some devices are unable to use background blurring and sometimes, quite difficult to join some meetings.",want to blur background and join meetings,1.0
i feel zoom is excellent' still the same' has not let me down.,zoom performance is good,1.0
very annoying not being able to get a full screen view.,want to get full screen view,1.0
zoom does not cater for android users.,zoom does not cater for android users,1.0
I am not able to customize my vertual background request you to kindly look into this.,want to customize vertual background,1.0
it also can not keep tabs on recurrent meetings,want to keep tabs on recurrent meetings,1.0
the person who logged in zoom using mobile can not see files in chat.,want to see files in chat,1.0
zoom is so slow please tune it up please!,zoom is slow,1.0
sync is another feature that does not work.,sync is not working,1.0
overheats while on videocall you need to add the option to control quality of video for smartphones as well.,want to add video quality control,1.0
no support for standard 16x9 resolution,no support for standard 16x9 resolution,1.0
needs more options and drop the pass boxes,want to drop pass boxes,1.0
network stability is still poor,network stability is poor,1.0
not very much good always asks to switch account and sign in,want to switch account and sign in,1.0
"easy to use.better for students,for classes",good for students,1.0
please remove the watermarks across everyone is video.,want to remove watermarks,1.0
amar down load high na,loads are high,1.0
"I am trying to find zoom meetings to join, ridiculous, can not find any.",want to find zoom meetup,1.0
app is crashing in android 12 version,app is crashing in android 12 version,1.0
it takes too much time too open and screen quality is very bad,screen quality is poor,1.0
", i can not use video blur , what is the process",want to use video blur,1.0
highly recommend very good for when you want to watch tinker bell with someone all the way in australia when you are very far away from australia also very very very good for watching old people fall down stairs with said person fron australia.,good for watching old people fall down stairs,1.0
very creative app for organisations,good for organising,1.0
too long why.my updat is taking me too long please chich it,update is taking too long,1.0
please add a meeting volume adjust,want to adjust meeting volume,1.0
hard to store can not do it,want to store items,1.0
but sound compression is still suboptimal.,sound compression is suboptimal,1.0
put zoom on home screen.,want to put zoom on home screen,1.0
great platform but also give virtual background to snapdragon 720 processors,good for virtual background,1.0
after the last update i can not join zoom rooms :(,want to join zoom rooms,1.0
turn camera and microphone off as a default.,turn camera and microphone off as a default,1.0
"sometimes the host voice gets a little fuzzy, and come off the screen.",host voice gets fuzzy,1.0
so it is really hard because i have some ugly noisey background please add a filters and a background for a phone and a tablet,want to add filters and backgrounds,1.0
for now two stars especially the issue where you cannot pin a video when there is sharing in the screen i hope you will fix it,want to pin video,1.0
there need to be an option to disable chat popups,want to disable chat popups,1.0
multiple windows are opened when you go into the breakout and audio stops working..,multiple windows are opened when you go into the breakout and audio stops working,1.0
zoom is completely unusable while driving a car.,zoom is unusable while driving a car,1.0
greater for virtual gatherings,good for virtual gatherings,1.0
what is up with our not being compatible with a blue tooth speaker?,want to use blue tooth speaker,1.0
uninstall and reinstall normally did not work,uninstall and reinstall normally did not work,1.0
sometimes i can not rename my name in zoom settings.,want to rename name in zoom settings,1.0
perfect for multi tasking,good for multi tasking,1.0
all good but not showing control(sharing device screen control) option in phone and also no pip mode!,want to get sharing device screen control option and pip mode,1.0
update: got pip mode but still controlling/remote control of shared device not available for android.,pip mode is not available for android,1.0
call gets disconnected and app restarts,call gets disconnected and app restarts,1.0
recent changes no longer allow you to use two device simultaneously.,want to use two devices simultaneously,1.0
can not free space,want to access free space,1.0
only concern which i observed is that one cannot login on multiple devices with the same paid account which should be fixed.,want to login on multiple devices,1.0
"i am not able to join audio on pc with my phone , india is not showing in drop down pathetic and even the zoom support is not helping",want to record audio on pc,1.0
lag in audio or distortion while someone is myself or someone is speaking.,audio is distorted while someone is speaking,1.0
downloaded emojis which are useless.,downloaded emojis which are useless,1.0
"zoom app suck on phone, automatically opens cam when joining even i toggle off cam, presentation becomes black",zoom app sucks on phone,1.0
why can one not paste the 2fa code in while logging in?,want to paste code in while logging in,1.0
required upgrade to version 5.10 is not working and does not work as of yesterday,want to upgrade to version 5.10,1.0
vary nice app for android,android version is good,1.0
there is not touchup option available as yet,want to use touchup feature,1.0
it is not allowing to coppy paste nor is it allowing to enter alphabets.,want to enter alphabets,1.0
"the app update takes forever, meeting ongoing and unable to join",app update takes forever,1.0
simply i have lost my data for this,data is lost,1.0
easy to navigate through,easy to navigate,1.0
how can i put my picture there is no options for change picture?,want to change user image,1.0
worst app showing my wrong name i do not know why i tried many times but still same problem,app shows wrong name,1.0
"i can not see the slides properly, when i rotate my mobile.",want to rotate slides properly,1.0
it sucks that android users can not upload backgrounds,want to upload backgrounds,1.0
not able to use virtual background filter in my meetings.,want to use virtual background filter,1.0
"good option, ths used to help me contacting my relatives",good option for contacting relatives,1.0
android app does not allow direct screen sharing of video from phone.,android app does not allow direct screen sharing of video,1.0
devices used have to be rebooted due to app randomly turning the screen white while making a static noise before turning device off completely while in use.,devices used to be rebooted due to app randomly turning the screen white,1.0
i need background photos too.,want to keep background pictures,1.0
works great - large groups or small .,good for large groups,1.0
how to delete personal chat images stored,want to delete personal chat images,1.0
very nice for online presentation s,good for online presentation,1.0
for me i could't find video filter,want to find video filter,1.0
and why we can not take or host a meeting without sign in ?,want to host a meeting without signing in,1.0
so i can not go to outside meetings with my house ladys.,want to attend outside meetings,1.0
"does not let me add anyone, apparently it does not work well with high end phones trash.",want to add users,1.0
can not reverse the camera,want to reverse camera,1.0
we can not hear anything whenever we click on a video.,want to hear video,1.0
this language is not under stand you,language is not understandable,1.0
"the payment portal is excruciating slow, confusing, and unintuitive.",payment is slow,1.0
it does not let me relax during class.,want to relax during class,1.0
there is no virtual background in more options and even in the settings!,no virtual background features,1.0
biometric recognition fails to function after enabling it in settings.,biometric recognition fails after enabling it in settings,1.0
mobile data will become slow even in background running and not used.,mobile data is slow even in background running,1.0
i can not meet my friends,want to meet friends,1.0
i use it with friends and family it great,use it with friends and family,1.0
"wonderful app, really usefull for all age groups",good for all age groups,1.0
i can not join a new meettings.,want to join new meettings,1.0
"you need to have more options on your phone, such as creating and managing simultaneous rooms.",want to have more options on phone,1.0
"it does not work with a bluetooth box, i believe that not with a headset and on the tv/monitor, the sound does not come out on the tv in mirror mode/",want to hear audio in mirror mode,1.0
great way to meet long distance people,good for meeting long distance people,1.0
would like to be able to block incoming phone calls while in a zoom meeting or at least make them not take over the audio because there is such a delay switching back to the meeting audio even if you ignore the call!,want to block calls while in zoom meeting,1.0
file transfer should be more convenient,file transfer should be more convenient,1.0
dropping the rating down a bit more.,ratings are getting down,1.0
excellent for digital gathering,good for digital management,1.0
the app sucks to many #s and passcode,app is bad for passcode,1.0
literal trash on the android platform,literal trash on android platform,1.0
"poorly made, bad quality, i hate school",poor quality of education,1.0
no virtual images coming after updating the app,want to view virtual images after updating the app,1.0
i want to rate this one star because there is no option to switch audio to stereo therefore all audio comes through the phone speaker instead of the tv speaker when casting.,want to switch audio to stereo,1.0
"this needs to be changed so many other apps have largely the same settings computer to android (with some differences because of device limitations), not being able to use stereo audio is not a device limitation, so tell me why is not stereo audio an option on android if it is not a device",want to use stereo audio on android,1.0
otherwise there is good flexibility with sharing pictures and sound along with breakout rooms for small groups.,good for groups,1.0
cannotget in a meeting miss school,want to go to school,1.0
no virtual background or blur funtion for samsung galaxy tablet s6,want to use virtual background for samsung galaxy tablet s6,1.0
this is awesome apps for student and teacher and any another people..,good for student and teacher,1.0
my only problem is sometimes i get kicked off during peak hours of use when using the hotspot with my laptop,hotspot is not working during peak hours,1.0
makes the app unusable.,app is not useful,1.0
great for getting together without physical contact.,good for getting together without physical contact,1.0
"as of the time i posted this, options to speed up the recordings, were the only available options; none to slow down the recording.",want to slow down recording,1.0
does not allow me to see more than 4 screens despite having enough screen space for more (tablet).,want to see more than 4 screens,1.0
also raised hands are not brought to the front of the screen order,raised hands are not brought to the front of the screen,1.0
i can not enter my card details.,want to enter card information,1.0
can not find closed captions.,want to find closed captions,1.0
great app for a business chat,good for business chat,1.0
i hate how the screen goes black or flickers.,screen turns black or flickers,1.0
payment method is too difficult.with only one option credit card,payment method is difficult,1.0
app always has issues with login and also the video caller picture is not always clear and glitches alot.,app always has issues with login,1.0
helpful to connect with classmates and co-workers,good for connecting with team members,1.0
cannot turn on the fingerprint.,want to turn on fingerprint,1.0
how can people who can not own a laptop.,want to own a laptop,1.0
students are removed by host because the video get stopped and zoom take lots of internet and speed gets low due to that,students are removed by host,1.0
please add playback sessions watching please,want to add playback sessions,1.0
easy to use reliable service,easy to use service,1.0
i do not know why my zoom can not use the backgroud[?],want to use zoom function,1.0
disappointed with the mobile version.,mobile app is bad,1.0
web browser audio not working,web browser audio not working,1.0
sometimes we need to have a different picture setting for privacy sake!,want a different picture setting for privacy,1.0
its supporting but poor networking system,poor networking system,1.0
not being able to join meetings on time because of the glitches,want to join meetings on time,1.0
it does not allow to enter the meeting .,unable to enter meetings,1.0
bluetooth support is horrible.,bluetooth support is bad,1.0
"all are less intuitive, not user friendly, poor user interface.",app is not user friendly and interface needs improvement,1.0
can not add background photo on oppo 95,want to add background photo,1.0
verstile app for learning and for social meetings,good for learning and for social meetings,1.0
but i have a request to large the size of the wating room notification.,want to increase notification size,1.0
zoom works best for interactive large groups.,zoom is good for interactive large groups,1.0
unable to update/install for last 2 days.,want to update/install,1.0
the video is faulty and it is difficult to use.,hard to use video,1.0
"happy, tablet not able to have all settings.",want to have all settings,1.0
can not even link properly to my email.,want to link to email,1.0
i am missing a class,missing a class,1.0
it will not change screens & no control panel.,want to change screens,1.0
can not delete messages pls do this issue otherwise good,unable to delete messages,1.0
frustrating unable to connect 2nd group meeting missed!!,want to connect groups,1.0
"also if the closed captions feature is activated , the font is very small and impossible to modify.",want to modify font,1.0
the app in my laptop keeps muting itself and it becomes so irritating in daily meetings.,app keeps muting itself,1.0
the presenting is very much delayed,presentation is slow,1.0
because i can not skip class,want to skip class,1.0
"poor performance, and always updating even in online class meetings,",poor performance in online class meetings,1.0
"images uploaded for polls do not pop up in certain devices, and can not find help anywhere",want to find polls in certain devices,1.0
but can not get the tune of the anthem..,want to hear the anthem,1.0
excellent supervision of app,good for app management,1.0
i love that i can use zoom to watch my kids school activities/functions that otherwise i would not be able to do,use zoom to watch school activities,1.0
how to sign in zoom hotmail id,want to sign in with zoom hotmail id,1.0
top tool for conference,top tool for conferences,1.0
useles app i cannot remove my host/teacher,want to remove host/teacher,1.0
i can not record audio and video on this plateform for the future use.,want to record audio and video,1.0
will not let me connect to silversneakers.,want to connect to silversneakers,1.0
new update is consuming my data more,new update is consuming data more,1.0
it is easy to use for adults or kids .,easy to use for adults or kids,1.0
sign up is very hard?,signup is hard,1.0
i did not get a chance to pass my dm to my teacher because of this.,want to pass dm to teacher,1.0
no using phone always get me discobnected,want to use phone,1.0
the lines of print come across the screen and are annoying to those in a meeting that do not need them.,lines of print come across the screen,1.0
fix the blur feature.,want to fix the blur feature,1.0
mic does not turn off after call is done.,mic does not turn off after call is done,1.0
app no longer supports bluetooth devices.,app no longer supports bluetooth devices,1.0
bluetooth option plays through phone speaker option playstation speaker on phone will not connect to multiple devices.,bluetooth speaker is not connected to multiple devices,1.0
can you update the app and add an option for playing,want to update the app and add an option for playing,1.0
unable to change the background during video call in android tablet,want to change background during video call,1.0
please remove this app from google store as early as possible.,want to remove app from google store,1.0
app.but when i open this app emojis are downloaded.,emojis are downloaded,1.0
the meeting will start but in zoom you install the app of zoom its not start properly without app,want to start zoom without app,1.0
good background effects and good quality video.,good background effects and good quality video,1.0
i do not have the option of selecting background during meetings .,want to select background during meetings,1.0
but i have one problem only i can not send messages to my friends,want to send messages to friends,1.0
the software of this app is low even one star,app has bad software,1.0
i can not share my virtual background in my any one of them.,want to share virtual background,1.0
i am very angry to this app because it consumes 1.50 gb data in 20 minutes when i use,app uses too much data in 20 minutes,1.0
"nice, but there was no background in mobile",mobile app has no background,1.0
video and audio are loud and clear,video and audio are loud and clear,1.0
blurred background not a option though.,blurred background not a option,1.0
but it is saying ensure that no other apps are using camera and the update makes the app worst there is no option of enable original sound,want to enable original sound,1.0
break room feature is not available on mobile version.,break room feature is not available on mobile version,1.0
very bad because it can not stop incoming calls,want to stop calls,1.0
"the zoom meeting app is good, but for my oppo a53 device android virtual background option is not working, when i checked in zoom support,but when i read, and i have been trying so many times but the virtual background is not working so please give the option to android mobiles",android virtual background is not working,1.0
please improve the quality of the uploaded profile photo.,want to improve quality of profile image,1.0
and i cannot enable the original voice,want to enable original voice,1.0
love the break out rooms it allows all members to share.,breakout rooms are good,1.0
and audio was breaking,audio is breaking,1.0
very lag not able to do classes or meetings,want to do classes or meetings,1.0
please add free resources for teachers,want to add free resources for teachers,1.0
perfect app for the students and office workers .,good for students and office workers,1.0
unable to add my mobile phone.,want to add mobile phone,1.0
my classes go in this app but graphics are bad,graphics are bad,1.0
I have never gain access to zoom cloud before before.,want to access zoom cloud,1.0
i can not sit and listen to meetings with my car speakers anymore.,want to listen to meetings in car,1.0
"the ""share"" function for ""files"" is broken.","share function for ""files"" is broken",1.0
"4/ support page will not load profile page from hamburger menu (needed to find the ""host key"".",want to load profile page from hamburger menu,1.0
"like , i was not able to join few class and it used to show ""connecting"" the whole time, and recently, even if i used to unmute and say something, no one was able to hear my voice and because of this problem i was irritated as hel as i was not able to answer a lot of questions from the teacher even if i knew!",want to communicate with teacher,1.0
"since a recent update, i can no longer see people in breakout rooms.",want to see people in breakout rooms,1.0
also there is no access to any controls.,want to access controls,1.0
but i can not insert the display picture,want to insert display picture,1.0
"unfortunately, zoom simply does not work with android auto, and hence is complete rubbish.",auto zoom does not work with android auto,1.0
the background does not change,background does not change,1.0
this app is my favourite but there is a problem that is in most of the time i can not enter the meeting although my speed of the net is fast and one more problem is there i.e. we can not use virtual background in smartphone .,want to get virtual background option and unable to join meetings,1.0
this app keeps sending error codes and requiring constant updates,app keeps sending error codes and requiring constant updates,1.0
the upper and lower taskbar can not be removed.,want to remove taskbar,1.0
good app of my experience but server problems,app has server problem,1.0
i not like because my phone battery heat very much and my 1 phones battery is dead and my phone is not starting,phone battery is not starting,1.0
not getting connected to an important meeting,not getting connected to an important meeting,1.0
why its not compatible in samsung j7 pro?,want to use samsung j7 pro,1.0
"this app is creating trouble after the update as one cannot control the features such as mic on or off , video on or off after screen sharing starts.",want to control features after update,1.0
we should be able to toggle the small video box on/off.,want to toggle small video box on/off,1.0
this is app do not work in lcd tv with mobile cannection.,want to use app on lcd tv,1.0
zoom android version can help me to discus with my friends and my partner.,zoom android version is good for discus,1.0
very bad not starting camera,want to open camera,1.0
"from 1 week i am not able to take full class , and properly conclusion-",want to take the class,1.0
sucks - unable to preview video or sound,want to preview video,1.0
upcoming meetings are not in sync.,upcoming meetings are not in sync,1.0
but i can not add the background of in cemara.,unable to use background camera,1.0
this how my class meeting is ended up and i can not connect for a single nano second in the class and with the new update this app has fallen down.,want to connect for a single nano second,1.0
please add more features for teachers,want to add features for teachers,1.0
waste app i can not connect to my school,want to connect to school,1.0
it is a good app but background and flitters are not working for 2gb smart phones,app is not working for 2gb smart phones,1.0
this app is very bad do not intall because this app takes lost of data in meeting rooms,data is lost in meeting rooms,1.0
can not even read / write messages simultaneously.,want to write messages,1.0
i think the settings of this app is not good.,settings of app are bad,1.0
"but in this app i can not put any background like flowers , cute pictures, so i gave 4 stars .",want to put background on the app,1.0
but i gave 4 star reason we can not add profile photo without sign in or sign up,want to add profile photo without signing in,1.0
video resolution is low .,video resolution is low,1.0
good for my small business,good for small business,1.0
and i love the fact that ads do not pop up while it is in use,want to see ads while in use,1.0
but i do hope that the free zoom can be lengthened to 1 hour or 1 and a half hour .,free zoom can be longer than 1 hour,1.0
"i wish i kne w how to keep comments off my screen so i can read charts, etc.",want to keep comments off screen,1.0
i can not watch my online classes .,want to watch online classes,1.0
"from yesterday, can not connect on mobile or tablet.",want to connect to mobile or tablet,1.0
how are there no controls or menus?!,want to find controls,1.0
but when my mother is teaching her children so i cannot get the laptop's charger.,want to get laptop charger,1.0
network speed is sharp but zoom app is slower.,zoom app is slow,1.0
bullsh!t having trouble trying to sign to class but saying idk,want to register for classes,1.0
app requires too much processing and high end phones!,app requires too much processing,1.0
i can not play video while having zoom meeting fix this today is this what you call security enhancement,want to play video while zooming,1.0
"on android mobile, zoom meeting can not record with video & audio.",want to record video,1.0
i can never participate in our church's conference call bible study or morning service.,want to participate in morning service,1.0
i cannot copy paste chat.,want to copy paste chat,1.0
always glitching many bugs volume i can not control status bar is getting stuck many problems,want to control status bar,1.0
you can not go multitasking without switching your video,want to multitask without switching video,1.0
nice aap but no vertual background for mobiles and unable to login,want to login and unable to get virtual background option,1.0
but i can not pick profile.,want to select profile,1.0
there are no virtual backgrounds or studio effects in android devices.,no virtual background in android,1.0
bad experience does not connect if gets connected no voice,want to connect to voice,1.0
have to restart my device everytime,want to restart device,1.0
you cannot interact with the app after exiting split screen mode.,want to interact with the app after exiting split screen mode,1.0
sometimes it says can not connect to the server ..,want to connect to server,1.0
i can not joining the meeting using phone.,want to join meeting using phone,1.0
i enjoy using zoom for my recovery based meetings and individual meetings with other family members that i have not seen for a long time,use zoom for recovery based meetings,1.0
but there is no option of making quality good or bad,no option of making quality good or bad,1.0
the zoom app always dissapear when ever i run it in background.,zoom app is not working in background,1.0
it does not support much 3g network,want to use 3g network,1.0
it is very useful to children's in lock down time,good for children in lockdown time,1.0
it is perfect but the in-app auto rotation sucks!,auto rotation is bad,1.0
your service is very bad because zoom app is not installed,zoom application is not installed,1.0
great way to video chat family and friends when you do not have facebook messenger or an iphone for facetime.,good for video conversations,1.0
very reliable means of face to face communication,good for face to face communication,1.0
i love zoom and for real zoom help you every time when you are home school,good for zoom,1.0
their is no option to change the id,want to change id,1.0
I am always pushed out of a meeting and this app always needs constant upgrade which eats my data way too much,getting pushed out of meeting and updates are too frequent,1.0
i can not join my big webinar.because more issues.i hate this app,want to join webinar,1.0
very bad we can not change background view,want to change background view,1.0
zoom is the best app for chating with friends and zoom is very good during corana it rlly helps to connect and chat with the people who you can not vist or they can not vist,zoom is good for chating with friends,1.0
wonderful to still connect to our love ones despite the covid 19,good for meeting loved ones,1.0
always emoji package is downloading and emoji package is consuming a lot of data.,emoji package is costing a lot of data,1.0
can not use video filter and studio effects,want to use studio effects,1.0
internet connection is not working when i open this app for a meeting .,internet connection is not working,1.0
but i problem is the video cannot be paused betwwn the clases,want to pause video,1.0
but i could not find the profile photo to be clicked.,want to find profile picture,1.0
you also try this please add some new features background wallpaper features like,want to add background wallpaper features,1.0
please enable virtual background in redmi note 9 as a host and participant and then i am giving 5 star for this app,enable virtual background in redmi note 9,1.0
"great app for remote conferences and meetings, never any glitches or issues!",good for remote conferences,1.0
please auto connect a vpn while using this app.,auto connect vpn while using app,1.0
in my mobile zoom meeting not working in jio sim,mobile zoom meeting is not working in jio sim,1.0
no backgrounds for tabs waste but good for classes,no backgrounds for tabs,1.0
very very trash app do not install it.,unable to install trash app,1.0
i can not join my meetings with my vodafoneidea sim mobile data why??,want to join meeting while using mobile data,1.0
can not go in waiting room..,want to enter waiting room,1.0
does not support android tablet nor iphone tablet,android version is not supported,1.0
very good app and easy to use kids cloud meating,easy to use for kids,1.0
i can not open background,want to open virtual background,1.0
"my volume button do not able to silent my phone, what a bad app",want to mute phone,1.0
"evening not able to join,device.",want to join,1.0
the app automatically stops updating after getting to a 93%,app stops updating after getting to a 93%,1.0
the mobile app is good but windows is totally bad.,windows app is bad,1.0
i am not able to join with my data.,want to login with data,1.0
but when i open zoom speed becomes 20kb ps.,zoom speed becomes 20kb ps,1.0
please enable photo effects options for android mobiles too,want photo effects for android mobiles,1.0
could not figure out how to start a session,want to start a session,1.0
your english translation (live transcripts) when enabled are not accurate at all.,english translation is not correct,1.0
"it is speaker is also not working properly, even though my mobile is perfectly fine.",speaker is not working properly,1.0
because virtual baground is not working properly,virtual baground is not working,1.0
you need to improve in connectivity in gmails,want to improve connectivity in gmails,1.0
plss zoom community fix the bug i can not even attend my lectures,want to attend lectures,1.0
i cannot attend zoom meetings by 10 days,want to attend zoom meetings,1.0
and i can not get to open the team game meeting in my tablet.,want to open team meeting,1.0
"i can not get full screen view for video meetings on android , what??",want to view video meetings on android,1.0
3rd class app no option of update is there,want to update,1.0
but now it dosnt login to a meeting even after 5mins beacause of that,want to login to meeting,1.0
i have missed two meetings and it has onemore problem that there is no option to increase the volume of the audio.,want to increase audio,1.0
i figured out how to replace my avatar with a picture when my video is off,want to replace avatar with picture when video is off,1.0
worst app. can not take email,want to use email,1.0
very baad quality of voice,good quality of voice,1.0
i tried more than 10 times to download but it is not getting downloaded and it is showing that can not download zoom .,want to download zoom app,1.0
it can not connect even with high speed net,want to connect to high speed net,1.0
"the worst video calling app, lags badly everytime share screening, even with a powerful machine, any other application opened in the background that app starrs lagging badly.",video calling app is bad,1.0
i can not change the background in my model class,want to change background in model class,1.0
it is good but only for pcs and laptops,good for pcs and laptop,1.0
"worst app ever used for meeting and online classes, whenever i join class or go on other app while zoom class zoom class gets disconnected and shows error",zoom class is disconnected and shows error,1.0
consistently & pleasantly surprised by the consistent improvement of zoom for users.,improve zoom for users,1.0
unfortunately you can not download files shared in chat room.,want to download files,1.0
"please my play store is not updating app any longer, please help",unable to update playstore,1.0
my app server goes down when i try to join my class.,app server goes down when trying to join class,1.0
video quality has improved significantly.,video quality has improved significantly,1.0
can not pin any vdo on my top screen .,want to pin vdo on top screen,1.0
it is very much helpful but i cannot record the meeting from smart phone .,want to record meeting from smart phone,1.0
the app gets crashed again and again whenever i am taking an online class..,app crashes while taking online class,1.0
crashes 50 times in a minute,crashes 50 times in a minute,1.0
"glitches, polls freeze or do not work.",polls freeze or do not work,1.0
can not sign in to company domain anymore after update,want to login to company domain,1.0
i think this app must be modified the camera quality because it is camera quality is literally worse in my opinion,want to modify camera quality,1.0
good for business promotional,good for business promotions,1.0
this is not a best because i can not sign up in the zoom app isliye main ise 2,want to sign up for zoom,1.0
could be a little clearer voice control,want better voice control,1.0
very hard to get in touch with customer support.,want to communicate with customer support,1.0
layout for android tablet is very bad.,layout for android tablet is bad,1.0
this is amazing but try to keep the mic off when we log on to the meeting,keep the mic off when logging in,1.0
good platform to connects the world.,good for global communication,1.0
good one for online business.,good for online business,1.0
"please add filters, background and effects as google meet did in android","want to add filters, background and effects",1.0
i even could not add my phone number.,want to add phone number,1.0
why nowadays there is background voice issue ?,background voice issue,1.0
please zoom developers give the option of filters to all android and ios mobiles .,want to add filters to all android and ios mobiles,1.0
today's my meeting but unfortunately my audio missing,audio missing from meeting,1.0
i do not know why video sy going but voice is totally mute why thi happened with me,voice is mute,1.0
unable to enjoy a conversation without a second line to hear other people.,want to have a conversation without a second line,1.0
"tablet support: i use a lenovo xiaoxin pad pro with sd730g proc, the virtual background option is unavailable, and the app just treats the 11"" screen as an oversized phone screen which does not make efficient use of the screen real estate to allow chat to be displayed alongside the video feeds.",want to get virtual background option and unable to view chat with video feeds,1.0
file/attachment sharing in chat unavailable under android,want to share files in chat,1.0
"mediocre app, dumbed down video meetings for the masses with clumsy interface, significant lack of features and expensive for anything above the really crude basic entry level.",app has bad interface,1.0
because of this you can not hear the voice.,want to hear voice,1.0
yes pls put backgrounds in android devices like mobiles and phones it would be a great help beacuse most of the people do not have laptops and,want to put backgrounds in android devices,1.0
this app does not have service support,app does not have service,1.0
switch from laptop to phone without logging out,switch from laptop to phone without logging out,1.0
but need a little bit improv like adding moveable background and other.,want to add moveable background,1.0
very bad highly data usage,data usage is bad,1.0
my hair was very thick with the skin peeling my skin and the hair and the skin,hair is very thick,1.0
disappointing even makes me unable to go to college!,want to go to college,1.0
"please add options in recorded videos like playback speed, forward and backward, preview etc.",want to add options in recorded videos,1.0
screen sharing quality is the best in the industry,screen sharing quality is good,1.0
"nice app,but voice satting problem in this aap .",voice is not working,1.0
zoom emoji package starts downloading during meeting suddenly and voice quality suffers,zoom emoji package starts downloading during meeting,1.0
we can not share/play the video in the app otherwise it would be the best,want to play video in app,1.0
"can not use zoom app in android tv, please devlope it for android tv",want to use zoom app on android tv,1.0
can not control the iris with a samsung tablet,want to control iris with samsung tablet,1.0
can not use the artificial background feature!,want to use artificial background feature,1.0
"please fix the audio ,not working during classes unable to unmute",want to unmute audio,1.0
this app is not working properly in vertual background in some android phone.,app is not working properly in virtual background,1.0
very bad quality of system and i gave only one star because to improve the quality of this aap..,poor quality of system,1.0
i did not find face filters,want to find face filters,1.0
"that one prevents me from using headphones in meetings, or render she app unusable at all, forcing me to use my laptop instead.",want to use headphones in meetings,1.0
brilliant group meating app.,good for group meeting,1.0
i can not launch zoom directly by taping to a link on my device.,want to launch zoom without taping to a link,1.0
net work quality is very bad,net work quality is bad,1.0
it is good but you need to improve it and add some more options like photo sharing,want to improve photo sharing,1.0
can not we delete our charts in meeting,want to delete charts,1.0
why am i not able to receive videos shared to me?,want to receive video,1.0
my phone kept crashing!!,phone keeps crashing,1.0
in all mobile not support vertual effects,want to use vertual effects,1.0
but i can not join my imported class,want to join imported class,1.0
unable to use the chat background in both my tab and mobile and its really bugging me as i have changed the device 2 times.. need an immediate solution,want to use chat background,1.0
how do i setup a new group for a meeting?,want to setup a new group,1.0
the best app in live streaming!,good for live streaming,1.0
when connecting through bluetooth it takes time for the conversation to travel,connecting through bluetooth is time consuming,1.0
sign in and sign process is very delay,sign in and signout process is time consuming,1.0
please add new feauters in this app.,want to add feauters,1.0
my zoom dp can not change so anything folt in this aap,zoom dp is not changing,1.0
but we cannot add a people on chat list using phone number,want to add people on chat list using phone number,1.0
needs more personalization options.,want personalization options,1.0
"a good application for a private study group, important meeting with people at a far distance",good for private study,1.0
this app is very easy to log in for kids my daughter like this app,easy to login for kids,1.0
online classes are very bad.,online classes are bad,1.0
updating app gone wrong.,updating app gone wrong,1.0
can not join anyone elses chats,want to chat,1.0
immense for the interactions,good for interactions,1.0
this app is not able to get me a new card,want to get card,1.0
but today zoom cloud is nothing support properly so i am rating 2 ..,zoom cloud is not supported properly,1.0
my about 180mb and virtual background is not available in octacore processor.,virtual background is not available in octacore processor,1.0
good but has complex interface.,user interface is complex,1.0
this app is only worst my time class automatic disconnect,app is bad for time management,1.0
toh bad app is disconnecting mic calls and chat my network and all thing is correct but disconnecting why please improve it,disconnecting mic calls is not working,1.0
easy to open and start my class quickly.,easy to open and start,1.0
a have to delete all my apps to install this,want to delete apps,1.0
can not restore the information,want to recover data,1.0
and i can not make individual participant boxes large.,want to make individual participant boxes large,1.0
[?]this problem is okay now but can not record audio while screen recording,want to record audio while screen recording,1.0
perfect for educational purposes only. .,educational uses only,1.0
apple phones have some options (like the background option) that android does not have.,apple phone has background option,1.0
will not connect to my outlook contact addresses which is a pain.,want to connect to outlook email,1.0
browser access does not work with chrome on android,browser access does not work with chrome on android,1.0
"i do not know why, but the sound is disabled by default, you have to go to the settings to activate it for the first time",sound is disabled by default,1.0
the app starts downloading again plus it is too heavy,app starts downloading again,1.0
does not work with android auto.,android auto does not work,1.0
"very good app, but after the last update it shows a white line on the left of the screen",app shows a white line on the left of the screen,1.0
can not join a meeting from a tablet even after today's update,want to join a meeting from tablet,1.0
it progress at the service of our professional and personal projects,good for personal and professional projects,1.0
very practical for seeing your loved ones,good for visiting loved ones,1.0
unfortunately there is no possibility to share a video with sound!,want to share video with sound,1.0
a real mess impossible to delete this account,want to delete account,1.0
no button to possibly adjust it.,want to adjust button,1.0
i hear that my zoom has closed unexpectedly.,zoom is closed unexpectedly,1.0
"thanks for this good application, however i suggest integrating voice calls and chat",want to integrate voice calls and chat,1.0
very good application and very practical for monitoring remote meetings,good for monitoring remote meetings,1.0
unable to unlock the little camera icon at the bottom of the screen.,want to unlock camera icon,1.0
it is been 2 weeks since i can not reinstall my zoom.,want to reinstall zoom,1.0
registration was very complicated for me,registration process is complicated,1.0
you can not set the volume to 0.,want to set volume to 0,1.0
"when i want to change the volume, the system bar changes without affecting zoom.",system bar changes without affecting zoom,1.0
file transfer in chat is unfortunately not possible.,file transfer in chat is not possible,1.0
"mega nice app, unfortunately there is a malfunction from time to time because the network is completely overloaded.",network is overloaded,1.0
the constant download of emoji packages interrupts the connection.,downloading emoji packages interrupts the connection,1.0
i have not found a setting where these can be turned off and therefore uninstalled the app,uninstalled the app,1.0
the handling for the various screen presets is not optimal,screen presets are not optimal,1.0
good reception and good image quality,good reception and good image quality,1.0
"very good connection, very good linguistic quality.",good language quality,1.0
"in addition, the chat behaves differently than in the desktop app. :-/",chat behaves differently than desktop app,1.0
no sound is possible without switching on the microphone.,want to hear audio without switching on microphone,1.0
the most unliked app for teachers,app is bad for teachers,1.0
"1.why is it not possible to record a zoom without seeing the participants, but in live you can see them (it also interferes with the presentation)",want to record zoom without seeing the participants,1.0
quite help me in tasks and other,good for task management,1.0
please the storage capacity is not too large,storage capacity is not too large,1.0
"it quickly falls into idle, the greek language is absent.",greek language is absent,1.0
it helps only improve the quality lgii.,improve quality of lgii,1.0
cloud zoom apps are very helpful when it comes to youdating to follow remote programs.,cloud zoom apps are good when it comes to following remote programs,1.0
files are too big,files are too big,1.0
i got an unavailable version of its background replacement feature,want to use background replacement feature,1.0
can not change change the image,want to change image,1.0
though the storage space is not full?,storage space is not full,1.0
create a dodol zoom,create dodol zoom,1.0
very good for remote virtual activities,good for remote virtual activities,1.0
"can not install, whereas sy again need bgt for school instead can not install",want to install bgt,1.0
difficult can not get old download,difficult to download,1.0
"for the following updates please add feature to create breakroom, and baground video dg using photo and video on all hp android, without using high specifications.",want to create breakroom video using photo and video,1.0
very helpful in conveying material,good for conveying material,1.0
this app is great for playing with friends *#),app is good for playing with friends,1.0
why now activate the original sound without being filtered can not be loud yes party zoom?,want to hear audio without filtering,1.0
"exits the update, and it does not install.",want to install update,1.0
the many tasks allow you to manage the rooms in an orderly manner.,good for organising rooms,1.0
on lenovo p11 pro android tablet it is impossible to start the web cam.,want to start web cam,1.0
"game impossible to complete, lagga everything and after finishing all the missions (impossible)",want to complete all the missions,1.0
"bad sound despite ""fiber"" connection",sound quality is poor despite fiber connection,1.0
since then i can not get the computer to work anymore.,want to use computer,1.0
great visual and audio connection,good audio and video connection,1.0
"since the quality cannot be selected according to the line, it is not possible to fully participate in the meeting when the radio wave is bad.",want to participate in meeting when radio wave is bad,1.0
i do not know why i can not choose image quality or something.,want to choose image quality,1.0
i could not uninstall the headphones and i had to see it so bad on wozap,want to uninstall headphones,1.0
"also, the sound of recording in progress is loud, and it suddenly makes a sound when recording starts, so it is very noisy and frustrating.",sound of recording is loud,1.0
the mobile version does not allow me to receive document format files.,mobile version does not allow document format files,1.0
i am having trouble viewing multiple screens after the upgrade.,want to view multiple screens after upgrade,1.0
"i can not delete a virtual background photo, how do i do it?",want to delete virtual background,1.0
"when the host is watching a screen-shared video, when entering the gallery view from the mobile version, it is inconvenient to hear the sound of the shared video.",want to hear audio of shared video,1.0
passwords are hard for kids to hit,passwords are hard for kids to hit,1.0
"I am using it for a fee, but it is not worth the money, but the sound is too loud",sound is too loud,1.0
"other video conferencing breaks too well ~, but the zoom has good image quality and does not break",video conferencing breaks too well,1.0
"it is good, but I am taking lessons well, but i can not log in and sign up for membership.",want to log in and sign up for membership,1.0
it is easy to use without having to memorize how to use kuji.,easy to use without having to memorize kuji,1.0
"the app version is the latest version, but the virtual background tab is missing.",virtual background tab is missing,1.0
"sharing videos sometimes hangs up, but it is easier and easier to use than you think",sharing videos is easy to use,1.0
it is a conference room without a password.,conference room without password,1.0
I am sorry i can not make zumbang.,want to make zumbang,1.0
i can not make a room even though I have done my birth month and year.,want to create a room,1.0
and i do not know how to navigate the app.,want to navigate the app,1.0
tragic impossible to enter the meeting all the time crashes and the miccophone is not functioning despite buying a new,miccophone is not functioning despite buying a new one,1.0
very useful when dealing with people.,good for managing people,1.0
why can not you hear me without headphones during a conference,want to hear audio without headphones,1.0
"forever crashes, the phone runs out of battery quickly, there are always some problems with the sound and picture quality, it also does not always send messages in the chat",phone runs out of battery,1.0
great for meetings and online yoga classes.,good for yoga,1.0
i think i need to specialize in computer science and parallel to english.,want to specialize in computer science,1.0
"absolutely slurred application, in the interface of which the devil will break a leg",app has slurred interface,1.0
the application does not support the ukrainian language.,want to use ukrainian language,1.0
apps are disgusting to spend bagasse charging on the phone,app is bad for charging,1.0
the link could not be written.,want to write link,1.0
"add the function please lock the microphone, not just mute.",want to lock the microphone,1.0
"in this situation, it is not possible to pay for a subscription in russia!",want to get subscription in russia,1.0
"now i have a zoom lesson, and it will not load",want to load zoom video,1.0
dear developers please add masks to phones,want to add masks to phones,1.0
you can not open a meeting without updating the app.,want to open a meeting without update the app,1.0
"you can not completely remove the conference sound, sometimes it is very disturbing,",want to remove conference sound,1.0
"conferences crash every minute, sound does not work (checked all settings).",sound does not work when connecting to a conference,1.0
"every time the app is updated, the account is deleted!",account is deleted,1.0
"after the outbreak of the war, you can not connect from any gadget.",want to connect to device,1.0
"in general, the application is normal only it is very difficult to enter the system and sometimes lags",app is difficult to enter,1.0
"it hangs terribly, the phone discharges very quickly and overheats in a couple of minutes!",battery cosnumption is high and app freezes,1.0
"it is a pity, i do not understand why western ukraine was blocked.",want to access western ukraine,1.0
"trying to create a conference, the function is not available you just have to join.",want to create conferences,1.0
"no toolbar on screen, no default sound, dumb prog, ran wild",want to use default sound,1.0
"the new window cannot be removed when the application is minimized, it always knocks back to the conference",want to remove window when the application is minimized,1.0
"""login error"" and as i understand it, no one is going to fix the error.",login error is not fixed,1.0
you can not turn on the phone,want to turn on the phone,1.0
no settings and reinstallations did not help.,resetting did not work,1.0
constant crashes and problems,accidents and problems,1.0
"when notifications are received on the phone, the conference is interrupted.",notifications are received on the phone,1.0
"i can not change the avatar, I have already reinstalled it and went in another way, i can not change the avatar in any way, i chose the photo and clicked save and not what.",want to change avatar,1.0
why can not i sign up for the program!,want to sign up for the program,1.0
"the application fu, we learn from it and the emoticons are not beautiful there",emoticons are not beautiful,1.0
there are not easy way to unsubscribe from zoom.,want to unsubscribe from zoom,1.0
"when entering a conference or moving to the session hall, 24mb zoom emojis are downloaded all the time.",24mb zoom emojis are downloaded all the time,1.0
the phone runs out quickly even when it was 100% charge.,phone runs out quickly even after 100% charge,1.0
"stupid, the interface is not clear!!",interface is not clear,1.0
"good quality of conferences, and a pleasant experience from the application",good quality of conferences,1.0
i could not find any options to test my audio.,want to test audio,1.0
the sound connection is poorly done (you need to use headphones and then on the inscription,sound connection is poor,1.0
"and today, students from the donetsk region could not connect.",want to connect students,1.0
the application does not work i copy the link and paste connect to the lesson and an error will appear,want to copy link and paste link,1.0
a wonderful application that helps you out when communicating with friends from different countries.,good for communication with people in other countries,1.0
"when you do screen sharing, it constantly throws out of zoom.",screen sharing is not zoom friendly,1.0
sound does not work at all.,sound does not work at all,1.0
a terrible application with disgusting controls.,app has bad controls,1.0
communication was constantly interrupted,communication was constantly interrupted,1.0
"i appeal to the guys, the testers, tell me, well, is it really impossible to mark the sound on in the settings.",want to mark sound on settings,1.0
the application is as incomprehensible as possible and not comfortable for work.,app is bad for work,1.0
i can not put a photo on my avatar,want to put photo on avatar,1.0
nihuevo transfer all user data to the tsar?,want to transfer user data to tsar,1.0
"a terrible application, every time you go through your phone you have to puzzle over how to turn on the sound, and the video quality is terrible, it is very difficult to register in general, there are a lot of disadvantages",want to register and facing audio and video quality issues,1.0
"everything hangs up, i can not go to the conference, but this conference itself is crashing.",conference is crashing,1.0
zoom is not convenient to do lessons in the distance vatsap better than zoom there,zoom is not convenient,1.0
does not accept access code!,want to access code,1.0
you could not have standard settings install?,want to install standard settings,1.0
very good application developers please turn on the sound when you log in from the phone,app developers need to turn on sound when logging in,1.0
"zoom lags terribly, there are frequent crashes, not only for me, but also for my classmates.",zoom lags terribly,1.0
we have a good remote control app and i use it for school.,good remote control app,1.0
"3 stars, because the camera cannot be turned on separately from the microphone",camera cannot be turned on separately from microphone,1.0
password cannot be recovered,password cannot be recovered,1.0
"""wrong conference code"", although everything goes well for everyone",getting wrong conference code,1.0
this is how i pass exams if this app distorts the sound and picture so much.,app distorts sound and picture,1.0
the sound of the rules can not be,sound of the rules cannot be heard,1.0
it is impossible to work from the computer due to sound problems.,want to work from computer,1.0
translation from english to russian is zero.,translation from russian to english is zero,1.0
the application is unstable on tablets.,app is unstable on tablets,1.0
specific problems: - the transition from the vertical axis to the horizontal axis disables the application,transition from vertical axis to horizontal axis disables the application,1.0
"(it goes off the air or completely throws it out of the application) - the screen splitting does not work correctly, so it is impossible to connect sound operation with the application is carried out on a samsung tab s7 tablet with keyboard connection support.",screen splitting does not work correctly,1.0
can not register for 3 devices,want to register for 3 devices,1.0
i have not even tried the application but the regestration just freezes out why do so many items,regestration freezes out,1.0
"moreover, since november, i can not confirm my account because i do not receive messages.",want to confirm account,1.0
", now i can not let people in, they log in without permission.",want to login without consent,1.0
"internet loads badly, for a long time",internet loads badly,1.0
"for example, the ability to include background music/sounds to create a conference atmosphere.",ability to add background music,1.0
"*the card automatically withdraws money, do not connect to a professional plan or business",card is not connected to professional plan,1.0
why could not i do a device check??,want to do device check,1.0
i can not even hold a fight,want to hold a fight,1.0
does not swing even if there is 1gb of space,does not swing even if there is 1gb of space,1.0
"the app for school is good, only the quality of the video conference is bad and+there",video conference is bad,1.0
it does not download memory crawled internet 4g,want to download memory,1.0
internet lags when there is a conference,internet lags when there is a conference,1.0
"i can not get through the registry, what is the glitch?",want to access registry,1.0
please correct when you turn on orientation lock the function does not work:please fix when you turn on orientation lock the function,want to turn on orientation lock,1.0
"it is impossible to remove the background on the phone, but on the pc what is possible!?",want to remove background,1.0
"after the conference, the phone restarts automatically and lags very much, even though i have a very good phone.",phone restarts automatically,1.0
why can not i check in with my daughter will be remote and will be held in zoom correct,want to check in with daughter,1.0
the test mode does not work.,test mode does not work,1.0
the communication quality is poor 3.,poor quality of communication,1.0
the app crashes every 10 minutes.,app crashes every 10 minutes,1.0
"several times i tried to enter the conference link, does not give, gives an error, i had to turn on the pc to go in.",want to enter conference link,1.0
"the sound is rattling, and echo sometimes happens.",sound is rattling,1.0
the app is normal but i often crash remotely,app crashes remotely,1.0
the names of the group members change places.,group members change places,1.0
not suitable for distance learning,not suitable for distance learning,1.0
"because of this app, i can not communicate with people properly",want to communicate with people,1.0
", i do not like watching the black screen""",do not like the black screen,1.0
i can not register tomorrow online lessons what to do?,want to register for online lessons,1.0
i can not talk to my team while I am working.,want to communicate with team members,1.0
the app scores are getting lower and lower.,app scores are getting lower,1.0
the settings are not displayed on the screen.,settings are not displayed on the screen,1.0
"the android version is not the same, it requires an update when the latest one is downloaded!",android version is not the same,1.0
the default settings are terrible.,default settings are bad,1.0
why is it impossible to split the screen into two parts when working in zoom?,want to split screen into two parts when working in zoom,1.0
how do i switch to paid content?,want to switch to paid content,1.0
", i entered it, the code did not pass and it is not correct.",code did not pass,1.0
it is a pity that you can not change and delete your sms in the chat,want to delete sms,1.0
"it is inconvenient that it is impossible to share the scheduled zoom conference in messengers telegram, whatsapp, etc.",want to share zoom conferences,1.0
terrible application management can not go to the lesson,app management is bad,1.0
"writes the code is wrong, it is impossible to register",code is wrong,1.0
very bad image quality is very dull.,poor image quality,1.0
"everything lags, it is impossible to enter the system",want to enter the system,1.0
"uploading similar nothing shows just a black screen, and it is gross.",uploading video shows black screen,1.0
"i was leaving it and when i entered the chat again, the text i wrote 5 seconds ago was completely deleted and it repeated 3 times, it is very annoying.",text is deleted,1.0
hangs and crashes when trying to start a conference,want to start a conference,1.0
can not suck can not create regestration they say at the moment registration is not available,want to create regestration,1.0
"a connection error crashes, throws it out of the application.",connection error crashes,1.0
"another ""brilliant"" development of russian programmers so that both students and teachers break their brains as if everything worked for everyone",russian programmers are good,1.0
specified the real age writes that you can not enter the zoom game some kind of come up with and not a peeling,want to enter a game,1.0
the quality is just terrible cliffs permanent!,poor quality of cliffs,1.0
- android does not have the ability to create and open session rooms - on android (even with a large tablet screen) there is no way to open the participants window in parallel.,android does not have the ability to create and open session rooms,1.0
"please help, horizontal and vertical stripes appeared on the computer, they remain after the reboot, i do not know how to remove, there is nothing in the settings",want to remove horizontal and vertical stripes,1.0
i can not activate the system,want to activate system,1.0
sound does not work on xiomi 10.,sound does not work on xiomi 10,1.0
a poor application is not able to update the status after purchasing on a laptop.,want to update status after purchasing a laptop,1.0
"it is also convenient to organize meetings over long distances, no one needs to go anywhere, and this in turn saves a lot of time and effort on the way and preparation.",good for organising long distance meetings,1.0
"through the phone, the application is silent (uninstalling the application and downloading and a new installation did not fix anything).",uninstalling the application did not fix anything,1.0
but i never found the microphone button.,want to find microphone button,1.0
the program constantly crashes when the internet is stable.,app crashes when the internet is stable,1.0
"i lost access to my organizer account, the pro plan.",lost access to organizer account,1.0
accidentally disabled email authentication in the settings.,accidentally disabled email authentication in the settings,1.0
it is impossible to synchronize.,want to synchronize,1.0
the sound in the wireless headphones falls off intermittently for 1-2 minutes.,sound in wireless headphones is off intermittently,1.0
i can not find my saved broadcasts.,want to find saved broadcasts,1.0
i just did not let me connect from the android.,want to connect from android,1.0
"so far, we have not added the ability to log in using qr code, as a result, one laptop and five different accounts, there is no quick change of account",want to login using qr code,1.0
"unclear encryption systems, etc.",unclear encryption system,1.0
i can not go through facebook and everything was fine before,want to connect to facebook,1.0
i can not install the russian version,want to install russian version,1.0
but i can not register as a student,want to register as a student,1.0
the mail does not work for them.,want to receive mail,1.0
you can not log in to your google account without a browser,want to login without browser,1.0
i can not get into the chat room many times,want to access chat room,1.0
"bad software, bad web service.",web app is bad,1.0
he needs to improve on high-end equipment,want to improve on high-end equipment,1.0
i do not know how to meet google if you can.,unable to meet google,1.0
"since i updated, i can not enter some links.",want to enter links,1.0
"i can not put emojis from my cell, that is the only detail",want to put emojis on cell,1.0
"hello, i would like you to put wallpaper for cell phone because mett already did it xd",want to put wallpaper for cell phone,1.0
it is a good app for korean lessons,good for korean lessons,1.0
i need it to be faster to download the application x procedures that i have to do,want the app to be faster,1.0
will not let me connect my tablet's camera,want to connect to camera,1.0
"until today the app has worked very well, the image quality is very good.",app has good image quality,1.0
10/10 can i have my classes with my teacher and good quality,good quality of education,1.0
"passwords are saved on the device, i do not need to be putting the password every time and much less updating.",passwords are saved on the device,1.0
band does anyone know why when i share screen it tells me that i can not share video while I am on call?,want to share video while on call,1.0
zoom freezes the image and sounds that cannot be seen and heard at unexpected times.,zoom freezes the image and sounds,1.0
but i would like it to lower its memory at least up to 50% of memory since it is time to uninstall apps that may be needed,want to reduce memory,1.0
no to animal abuse stop putting tasks,want to stop animal abuse,1.0
missing information is unfriendly,missing information is bad,1.0
I am not allowed to edit the video of the fraction,want to edit video,1.0
i can not log in from direct link,want to login from direct link,1.0
"on android cell phone, apparently you can not make rooms for small groups, the option does not appear",want to make rooms for small groups,1.0
it has significantly improved the quality of transmission and communication,improve the quality of communication,1.0
"i can not connect the audio to the smart tv when i sync my phone with it, i wish they could do something about it",want to connect audio to smart tv,1.0
i do not recommend the application can not download takes up a lot of space and a lot of data,data and memory consumption is high,1.0
i do not like that i do not have the option to hide my camera just for myself not for other users on call,want to hide camera,1.0
very poor organization of functions.,poor organization of functions,1.0
i have a problem could not enter with my email already go into help and services zoom,want to enter email,1.0
i could not get in and register for a eucharist at,want to register for eucharist,1.0
i can not listen to the conference i can not listen to the conference,want to listen to the conference,1.0
what a disgusting application makes us pass classes,app makes us pass classes,1.0
the connection is permanently cut off.,connection is permanently cut off,1.0
a great tool to connect and share with groups,good for sharing with groups,1.0
"very bad the characters are very idiotic, their story mode is the worst",story mode is bad,1.0
i need to listen in the spanish language thanks,want spanish language support,1.0
the page does not open,want to open page,1.0
excellent on my table.,good for table management,1.0
bad graphics from mrd,bad graphics from mrd,1.0
"i can not use the exclusive skins because of how expensive it is, i prefer the pou",want to use exclusive skins,1.0
very good only that it does not connect sound to the bugles via bluetooth,want to connect sound to bugles via bluetooth,1.0
"i do not like that you can not copy and paste the password from text, on the computer; it does not allow you to paste it",want to copy and paste password,1.0
he will not let me put funds on my cell phone,want to put money on cell phone,1.0
how can i install whatsapp,want to install whatsapp,1.0
the truth is this application has very bad graphics i expected more from this brand,app has bad graphics,1.0
but it does not what a disappointing app which version has virtual backgrounds?,app has virtual backgrounds,1.0
"everything ok, out of ten, this app is necessary, for online tasks.",good for online tasks,1.0
x please menurge this application and the installation does not work for me,installation error occurs,1.0
screen rotation should not be automatic,screen rotation should not be automatic,1.0
the desktop version is lousy!,desktop version is bad,1.0
what i did not like is the mobile audio was not heard in my meeting,mobile audio was not heard in meeting,1.0
"very good, contains emoji filters and backgrounds",good for emoji filters,1.0
it is great how i create a page for a meeting room,good for creating a meeting room,1.0
"okay, but i wish you could put a button that lowers all the participants' hands at once when you host on the computer.",want to make a button that lowers all the participants' hands at once,1.0
but they have to improve the mobile and tablet app a lot.,mobile and tablet app needs improvement,1.0
it does not allow creating groups section among other actions.,want to create groups,1.0
"i like it is great and very easy to handle, both for adults and children.",easy to handle,1.0
what kind of stupid app does not let you record the audio when you are not the host?,want to record audio when not the host,1.0
"i really like the function of switching the session between devices, sometimes i enter from my cell phone and change it to the laptop or vice versa.",switching the session between devices,1.0
i can not access it from my tablet,want to access tablet,1.0
and how are the camera features set up?,want to setup camera,1.0
"terrible application, contains audio and sound errors, installation errors, hides the functions.",app has audio and sound errors,1.0
the application throws me out of my class every now and then,app throws me out of class,1.0
"the mobile version is a bit limited, or maybe i did not find where to set up the virtual background.",mobile version is limited,1.0
ta good the app to talk to friends long distance,good for long distance communication,1.0
and i can not download from google because it can be risky.,want to download from google,1.0
"what ridiculousness, not being able to enter a meeting because of a pack of emojis.",want to enter a meeting with emojis,1.0
"just to mention, that the sounds of the voices are delayed.",sound quality is delayed,1.0
you can not put filters only on computers something that seems unfair to me :(,want to put filters on computers,1.0
"it does not allow me to put a background image on my cell phone, even though i have looked for an option that allows me to do so it does not appear.",want to put background image on phone,1.0
very good quality only that the quality depends on your network but very good service 10/10,good quality of service,1.0
suitable for family and class gatherings,good for family and class gatherings,1.0
excellent app the connection is very stable,app has good connection,1.0
i give it 1 star i do not like graphics and you can not change characters i do not need it on my phone,graphics is bad and unable to change characters,1.0
but i consider it a loss that there is no longer safe driving mode,want to use safe driving mode,1.0
wonderful as it can connect me to distant places and globally,good for connecting to distances,1.0
it is necessary to open live videos,want to open live videos,1.0
there is a problem with when you share screen it does not let switch to another device when it is active a clear example,want to switch to another device,1.0
i can not pornerle profile picture,want to view profile picture,1.0
very useful for remote classes,good for remote classes,1.0
it is a great help for multiple events.,good for multiple events,1.0
very good app to keep interacting at school and work,good for school and work,1.0
it has been very useful for my family reunions,good for family reunions,1.0
"terrible application does not let me play in cooperative mode and the cards in my deck do not appear entirely correct or in the order in which i added them, the only good thing is that i will not have without problems although sometimes it takes my account, the ded has arrived",want to play in cooperative mode,1.0
i can not play because my cell is locked,want to play because cell is locked,1.0
"the graphics and fps are bad, very low, i do not see the option to increase the quality, besides the classes of those teachers are boring, except that of eca and physical education",graphics and fps are bad,1.0
"bad graphics and terrible gameplay, nor can i customize my character",gameplay and graphics are bad and unable to customise characters,1.0
unfortunately the voice and signal are cut off.,voice and signal are cut off,1.0
"servers do not work, constantly locks up, records automatically, does not connect to user account",want to connect to user account,1.0
"very bad app the truth is when i enter i can not activate the microphone, and the weapon skins are ugly ree, the character is rebugged and the maps are uglier than the president of my country and it is full of jakers",want to hear audio and gameplay is bad,1.0
i can not enter maximum 100 people,want to enter maximum number of people,1.0
it is a very good help to create good friendships,good for creating good relationships,1.0
but they should add more sharing options,want to add sharing options,1.0
the version for android can be improved.,android version needs improvement,1.0
considering that you cannot recover objects without coming to the surface and if there is a surface contact serca in 2 seconds it will sunk you.,want to recover objects without coming to the surface,1.0
you can not put backgrounds or filters on phones and tablets.,want to put filters on phones and tablets,1.0
excellent application for conferences and group exhibitions.,good for group exhibitions,1.0
good communication but very expensive,customer service is expensive,1.0
"the app is very good, the only thing i do not know is why they do not allow you to put virtual funds on android phones",want to put virtual funds on android,1.0
very bad the graphics are terrible and it is very difficult to get the currency of the game and its matchmaking is very bad apart from it,graphics is bad and is difficult to get currency of the game and matchmaking is bad,1.0
the game is very bad when you reach the end it bugs and the boss kills you and the graphics suck,game has bugs,1.0
it is a gameplay mui bad controls and very bad graphics very deplorable and a bad online also has a very bad story that does not make sense birds very bad game,gameplay and controls are bad,1.0
i can not see the participant menu at the same time as the main menu.,want to view participant menu,1.0
i use the app to learn chinese is very good.,chinese language support is good,1.0
cannot share ppt on my phone.,want to share ppt on phone,1.0
different mobile so something difference,mobile version is different,1.0
please stop detecting phone model and jus enable vbg for all devices.,want to enable vbg for all devices,1.0
anyway it helps a lot when schools shut down or quarantine back from classes,good for schools,1.0
excellent but there is only one minus that we can not delete when we post public messages is the only one that is troublesome,unable to delete public messages,1.0
"you can not put a profile, and it is too ridiculous that the meeting time is 40 minutes.",want to set up profile and increase meeting time limit,1.0
of course you need to connect to google,want to connect to google,1.0
when i switch to another page with zoom meeting open on phone no longer meeting interrupts i can not hear sounds from behind how can i fix this,want to hear sounds from behind,1.0
a very helpful and tasteful application in business and private life,good for personal and business management,1.0
nice application never freezes,app never freezes,1.0
i can not register this how work 0 points is disgusting,want to record points,1.0
i can not write where i want,want to write where i want,1.0
for example the taskbar goes black,taskbar goes black,1.0
a very useful application for distance learning became better when it comes to turkish support,good for distance learning,1.0
wonderful possibility to conduct group lessons,good for group learning,1.0
it is not possible to connect headphones,want to connect headphones,1.0
i can not change my language to russian or ukrainian!,want to change russian language,1.0
"as for now, zoom app is not able to connect to car bluetooth.",zoom app is not connected to car bluetooth,1.0
i can not load memory is writes failed to load,want to load memory,1.0
i can not properly configure the application to work.,want to set up app,1.0
how to translate a language?,want to translate a language,1.0
"good afternoon, zoom is a normal app, but i put four stars because you can not change the language and before that a bad connection if you are reading this then please so that it is not.",want to change language and facing network connection issues,1.0
unable to configure anything.,want to configure anything,1.0
very good noise cancellation,sound cancellation is good,1.0
"every first time it catches the upgrade, but the upgrade does not work.",upgrade does not work,1.0
phone screen sharing is slow,phone screen sharing is slow,1.0
i can not zoom back to my phone,want to zoom back to phone,1.0
i do not know how to get a picture,want to get a picture,1.0
should have a filter for the face,want a filter for the face,1.0
app is splashed out while the network is so strong i rated 3,app is splashed out while the network is good,1.0
"smooth app, easy to update",app is easy to update,1.0
do not use background in video,do not use background in video,1.0
installing a backdrop is difficult,installing a backdrop is difficult,1.0
quite lag application for weak machines,poor performance for weak machines,1.0
should add a feature to delete messages and the room owner can set a sign for each member,want to delete messages,1.0
this app keeps learning a little bit of splashed out and clear my network is full of lines and it still splashed out.,app keeps getting splashed out,1.0
"can not zoom out to use other apps, quite inconvenient, although the camera still has a miniature mode",want to zoom out to use other apps,1.0
login is not recommended for 1 star,login is not recommended for 1 star,1.0
i think it is not a good idea to use the android phone and the android filter,android phone and android filter are bad,1.0
the application does not open.,unable to use app,1.0
the app is too slow.,app is slow compared to other platforms,1.0
app is great.but too many ads.,too many ads in app,1.0
this app is not working on android devices,unable to load the android app,1.0
I have uninstalled and reinstalled twice to no avail.,reinstalling did not work,1.0
too many ads even if you have paid subscription.,getting ads despite paying for subscription,1.0
why hotstar is not working?,unable to watch on hotstar,1.0
i am not able to download the app.,unable to download app,1.0
best streaming service ever.,good for streaming,1.0
videos do not play.,unable to play videos,1.0
it will not open on my phone!,unable to use on phone,1.0
"since the last update, the app no longer works.",unable to open app since the last update,1.0
video quality is very poor,video and picture quality is bad,1.0
just add a playback speed option,want playback speed control option,1.0
i need to uninstall it and reinstall it,want to reinstall,1.0
the app crashes frequently.,app is crashing,1.0
episodes do not load.,unable to load the episodes list,1.0
every time i open the app it freezes,app freezes automatically,1.0
i can not update this app,unable to update app,1.0
it takes a long time to open the app,app is slow to load,1.0
wifi does not work either,unable to use the app on wifi,1.0
"the app is good because i can watch a lot of movies, series, whenever i want",good for watching movies and serials,1.0
this app does not work well on tv,unable to use app on the tv,1.0
"the content is great, but the app sucks.",app is not good,1.0
worst ott platform ever.,poor ott platform,1.0
best ott app in the world,best ott platform,1.0
subtitles for movies that are cast on chromecast are so small that they can not be adjusted!,unable to adjust subtitles,1.0
why is this app not responding on my device,app is not working consistently,1.0
i can not watch ipl,unable to view ipl matches,1.0
"video quality is poor, and continuously interrupted with buffers.",video keeps buffering,1.0
for some reason lately the app has not loaded.,facing connection problems with the app,1.0
"in addition, the subtitles are too small, and the size of the subtitles cannot be changed when running on a mobile device, which is very difficult to use.",subtitles are small on tv,1.0
whether on my tv or phone the app frequently stops playing in the middle of a show.,app is crashing while watching videos,1.0
best app for watching cricket,good for watching cricket and movies,1.0
android tv also does not work properly.,app is not working on android tv,1.0
subtitles do not work well.,unable to view subtitles clearly,1.0
streaming to chromecast just plain does not work.,unable to stream on chromecast,1.0
i can not connect to the tv.,unable to watch on smart tv,1.0
"fantastic app, moderate prices and suitable for everyone!",app is good with reasonable price,1.0
i will not say this app is boring but ads are annoying,ads are annoying,1.0
i have an espn+ subscription and it does not let me watch certain programs.,unable to watch espn+,1.0
"it does not load all the episodes like its supposed to .it was working perfectly a week ago, but after the update it messed it up badly.",unable to see past episodes after update,1.0
"best entertainment app for video, movie, cartoon","good for watching movies, series and cartoons",1.0
but it is not my connection because no other app on my phone fails,unable to connect to internet,1.0
would be amazing if the app worked on the television.,want an app on smart tv,1.0
i cannot boot into the disney plus app.,unable to connect to disney+,1.0
lots of great shows and movies to stream.,good app for watching shows,1.0
i canceled my subscription at least 2 months ago and they kept taking the money out of my account.,unauthorised charges after cancelling subscription,1.0
for multiple months now viewing progress is not saved when watching tv shows or movies via chromecast.,unable to sync watched episodes on chromecast,1.0
please give us an update because the app is completely frozen as soon as it is opened.,app locks up frequently,1.0
downloaded movies cannot be watched without the internet.,unable to play offline videos,1.0
having to watch a 30 to 40 second ad for a 45 second highlight is just unacceptable.,getting ads frequently,1.0
"the app is terrible, although it has most of the things that i like to watch, but it does not matter if it does not work properly.",app is bad to watch videos,1.0
sound will not play on ipad after ios update.,unable to hear sound on ios after update,1.0
ads are too lengthy.,getting long duration ads,1.0
the app crashes when you try to open it,app crashes when entering the app,1.0
i can not get past the loading screen.,unable to load screen,1.0
downloaded the app .and it will not let me sign up.,unable to create account with the app,1.0
will not let me update my payment info.,unable to update payment information,1.0
this really is a good app to use when you want to watch disney+,app is good to watch disney content,1.0
download speeds are slow.,videos download time is slow,1.0
does not work on a samsung s7plus tablet.,unable to use on tablet,1.0
but soon the screen turns black and,app shows black screen,1.0
this app does not work on the samsung tablet anymore.,app does not work on samsung devices,1.0
very nice app i recommend to everyone cheaper and better than netflix,app service is better than netflix,1.0
the app hangs up every time you start it.,app hangs up automatically,1.0
"please add some 144, 240 video quality options in the app",want 240p video quality,1.0
this app is good for playing all sports and movies .,good for watching sports and movies,1.0
there is still no audio on my ipad!,unable to hear audio on ios,1.0
there are no spider-man movies,want spiderman movies,1.0
i tried re-installing the app and did not fix the issue.,reinstalling app does not solve the issues,1.0
best streaming channel ever,best streaming service,1.0
i can not watch the games live,unable to view live matches,1.0
streaming functionality is awful.,worst app for streaming,1.0
it takes time to load it,loading time is slow,1.0
always buffering while watching ipl even on good internet speed this is ridiculous,app has buffering issue while watching ipl,1.0
why should subscribers pay their money and get disappointed all the time?,app subscription is not worthy,1.0
it is cheaper than cable or satellite.,better than cable,1.0
you have to uninstall it all the time because it just does not connect.,have to reinstall the app to make the app work,1.0
the app is a great problem because there are not some movies that were supposed to be featured,service does not offer many movies,1.0
"it is very slow, it takes a long time to load the images from the gallery and start the videos,",app is lagging,1.0
but i try to create an account,want to create an account,1.0
i could not watch the movie i wanted to watch for god's sake,unable to view all movies,1.0
i can not install it on my aoc smart tv,unable to install on tv,1.0
"it fails a lot, i have to delete and re-download so that there is no problem.",unable to download content,1.0
but it will not let me see anything because i do not have a tv provider.,unable to watch live video without cable,1.0
this app is good for watching classics etc.,app is good for movies,1.0
the application works shockingly badly,app has many errors,1.0
"netflix might be taking losses, but they have a much better viewing experience.",netflix is better,1.0
user experience of this app is not very good.,app is difficult to use,1.0
"playing videos happens automatically on the home screen, but they do not stop when the app is minimized, and sometimes not even when the app is closed.",video keeps playing in background after exiting the app,1.0
these notifications are ridiculous and do not honor their own settings (they send notifications that i turned off anyway).,getting notifications even after turning it off,1.0
hulu does not play on my roku devices!,unable to do screen mirror hulu on roku devices,1.0
"keeping track of which episode one is on in a series is impossible because ""watched episodes"" do not work as it should.",unable to keep track of episodes,1.0
i use other streaming applications too but only hotstar is showing this problem,unable to access live tv,1.0
will not let me download episodes,unable to download episodes,1.0
love the app as i get to keep up with all sports events,good for sports,1.0
i have a problem with subtitles when streaming on chromecast.,unable to use subtitles on chromecast,1.0
i can not download any movies .,unable to download movies,1.0
will not even let me create an account.,unable to create an account,1.0
it takes a long time to charge.,charge time is slow,1.0
super easy to use,app is user friendly,1.0
i love watching marvel movies series in this ott app,good for watching marvel movies,1.0
i cannot stream on my tv,unable to watch on tv,1.0
terrible when coming to live streaming.,app is very bad for live streaming,1.0
it starts buffering even if you have a good internet connection.,app performance is bad despite good internet,1.0
i like this app but remove the extra ads,want to remove ads,1.0
when i try to open the app on my ipad,unable to open the app on ipad,1.0
getting too many notifications.,getting too many notifications,1.0
i have to uninstall and install it again to get it working again.,reinstalled the app multiple times due to frequent issues,1.0
please give me free subscription,want a free subscription,1.0
"but now i can not connect because of an error code 42, can someone help me?",getting error 42 for no internet connection,1.0
i have the app installed on my tv,want to install app on tv,1.0
it is not possible to log in either from the pc or from the tv.,unable to login on tv,1.0
i think you should change the app name to adstar.,want to change the app name to adstar,1.0
picture in picture functionality does not work.,unable to use picture in picture mode,1.0
you can not select episodes.,unable to select episodes,1.0
my 1 year subscription amount is wasted.,total subscription amount is wasted,1.0
"sometimes the app will crash, but i just restart my phone.",mobile app crashes frequently,1.0
audio quality is very poor.,sound quality is poor,1.0
"my pin keeps getting an error, and it is right, so i try again another time",getting incorrect pin error,1.0
the app is very good but a bit expensive.,app is expensive,1.0
make the app free for everyone,want the app for free,1.0
substitles are too small when using chromecast.,want to adjust subtitle size on chromecast,1.0
"subtitles are also often broken, otherwise they just can not keep up with the speed of the conversation, and sometimes there are no subtitles at all.",subtitles are delayed,1.0
is this app good for watching live?,good for watching live shows,1.0
all i get is a black screen with the audio only.,getting black screen with audio,1.0
this is a good app for live match and movies.,good for watching live matches and movies,1.0
i used the app hoping to watch ipl,want to watch ipl,1.0
but when the internet is a little slow it takes a long time,internet is slow,1.0
can you please put in a screen lock.,want screen lock feature,1.0
often it will not auto-play the next episode,unable to auto play next episode,1.0
when scrolling down it swipes right and left instead,unable to use scroll function,1.0
why are the commercials so loud.,ads are louder than the content,1.0
"my subscription had expired, now i want to reactivate it",want to renew subscription,1.0
where is the rest of the second season of the owl house?,want to know the status of the owl house season two,1.0
it tells me that you can not connect to the server.,unable to connect to the server,1.0
"why can i no longer remove shows from the ""keep watching"" category?",want to remove shows from watchlist,1.0
still full screen issue is not resolved if we use full screen,unable to use full screen,1.0
it keeps charging endlessly without ever opening,app keeps charging,1.0
whenever i start to play something the app hangs and then crashes.,app crashes during playback,1.0
i am trying to watch live cricket,want to watch live cricket,1.0
videos are not playing after showing ads.,unable to play video after advertisement,1.0
i already updated it and it did not fix the problem.,updating the app did not solve the issue,1.0
"the content is good, but the application is not optimized",ux/ui is bad,1.0
"unfortunately, i have to rate the app poorly because it simply does not work.",app performance is bad,1.0
this app keeps closing down,app keeps auto closing,1.0
i hate that i pay for a service,worst paid subscription service,1.0
audio keeps going out of sync.,audio keeps going out of sync,1.0
"it is slow to download, and it crashes many times.",app crashes frequently and video download issues,1.0
improve quality of the video,video quality is best,1.0
the app is always loading but it does not start.,app keeps loading indefinitely,1.0
it is inconvenient to have reopen the app every time i try to watch a movie.,have to reinstall the app frequently to watch movies,1.0
"every time i open the app, I am told to update to the latest version.",getting frequent update notifications,1.0
there is a lot of lagging even in high speed internet.,facing buffering issues despite good network,1.0
but the volume came a little low.,volume is too low,1.0
it is so frustrating to pay money for a streaming service and then find out the app does not work.,unable to use streaming service,1.0
i have been a long time hulu subscriber and my app started not working about two months ago.,unable to view video on hulu,1.0
as soon as i open my app it is getting stuck at the home screen.,app is stuck on home page indefinitely,1.0
crashes every time while watching videos,video is crashing,1.0
i should be able to choose which episode to see.,want to be able to select episodes,1.0
"it is a very bad app, it stays charging and charging for a long time, i can only watch disney on my computer, because the app never loads.",app is bad and unable to load,1.0
"i wanted to see something with you, my app seems to be outdated because they said that new episodes of the owl house came out",want to watch new owl house episodes,1.0
the playback controls are unresponsive.,unable to adjust playback speed,1.0
it is nice to have a star wars and marvel category.,good for watching star wars and marvel movies,1.0
i stopped working because of an error 83,getting enter code 83,1.0
it takes forever to download the app.,download speed is very slow,1.0
supposedly my profile pin is incorrect.,unable to enter profile pin,1.0
the subtitles are a mess.,subtitles are bad,1.0
it takes a long time to connect to the tv via chromecast.,app takes too long to connect to chromecast,1.0
it does not open the home page anymore,unable to access the home page,1.0
"terrible, you use it a couple of times normally, but then it crashes ridiculously when you start it, and so on, until you uninstall and install again, that is horrible, fix it.",have to reinstall the app due to frequent crashes,1.0
i want to watch a movie,want to watch movies,1.0
"asking me to login every time i switch to a new device, at my comfort, is very frustrating.",have to login the app every time after opening the app,1.0
then i logged out to enter the app again,getting auto logged out frequently,1.0
it worked at the beginning but now it will not let me watch my show,unable to watch shows,1.0
"i have to disconnect, close the app, reopen it and select the episode again.",have to reset the app frequently due to issues,1.0
i had not visited hulu for a while on my ipad.,unable to use hulu on ios,1.0
i routinely have to force close the app to make it work properly.,have to restart the app frequently due to issues,1.0
"i liked the app, but recently the sound has stopped working.",unable to hear audio,1.0
"as of this morning i cannot screen cast for some stupid reason, fix this",unable to mirror screen,1.0
my dvr shows do not load.,unable to record video,1.0
it is not worth paying the subscription for such a mediocre service,app service is bad,1.0
sometimes it wants to restart the same episode,unable to continue the episode,1.0
"also, no video quality adjustment is performed.",unable to adjust video quality,1.0
but i want new movies more,need to update with new movies,1.0
disney is exposing my kids to sexuality too young.,kids are getting exposed to sexual content,1.0
free subscription should be given for one month,want one month free subscription,1.0
"the application does not work, does not turn on, so you cannot create an account.",unable to login on app,1.0
very nice app with less consuming data,app is consuming more data,1.0
it takes a long time to log in if you manage to log in,app takes too long to login,1.0
when i play it the screen just turns black.,screen turns black after playing video,1.0
the content is not bad but not rich enough.,streaming content is less,1.0
thank you for putting the new owl house episodes on [?],want another season for owl house,1.0
i can airplay it but lately it will not connect.,unable to connect to airplay,1.0
many shows on disney+ are ones that i would love to watch.,want more content on the platform,1.0
otp is not received,unable to receive otp,1.0
"sometimes hulu will completely not open, just a blank screen.",getting blank screen after launching the app,1.0
when i try to login into hulu the app kicks me out!,unable to login into hulu,1.0
i have a samsung galaxy s22 ultra and the app freezes as soon as i log in.,app freezes frequently during login,1.0
why pay so much when you can not watch what you have paid for?,unable to watch all content,1.0
it will not let me watch or load on my android,unable to play video on android,1.0
please delete the app that supports gay people,want to delete the app,1.0
it is ridiculous to pay for something you do not want to use anymore.,do not want to use the app,1.0
none of my other movie apps have this problem,unable to play movies,1.0
continuing watching but not being able to click on a different episode is ridiculous.,unable to get next episode button,1.0
but i want to sign in on my tv.,want to login on tv,1.0
"whenever i try it i get a connection error, and i check",getting connection error issue,1.0
now it does not work on oneplus,unable to start on oneplus,1.0
dolby atmos does not work on firetv.,unable to use dolby atmos,1.0
i tried all the troubleshooting tips to no avail.,troubleshooting did not help,1.0
internet connectivity is poor.,app has poor network speed,1.0
"hello, it will not let me transfer the disney application to samsung tv",unable to use disney app on samsung tv,1.0
please provide streaming quality starting from 144p.,want 144p video quality option,1.0
"please do not buy any subscription on this app , it is a scam",do not want the subscription,1.0
i tried to contact customer care but of no use.,unable to communicate with customer service,1.0
"because of this platform, they closed the disney xd channel",want to use disney xd,1.0
useless aap waste of time can not watch shows on t.v with subscription,unable to view some content despite taking subscription,1.0
subtitles go off the screen.,subtitles go off the screen,1.0
the application interface is also excellent,ui/ux is good,1.0
i recommend an excellent app is worth the money you give.,app is good and worth the price,1.0
best quality from all streaming platforms,best quality from all streaming platforms,1.0
so there was this update and now i have no sound.,unable to hear audio after update,1.0
but i can not link my cell phone to the tv.,unable to cast video from cell phone to tv,1.0
since my last update on my ipad the audio on hulu does not work.,unable to hear audio on hulu,1.0
worst app not showing live cricket properly,unable to view live cricket,1.0
hulu is not working on my phone.,unable to use hulu on phone,1.0
I have been trying to cancel my subscription for a while,unable to unsubscribe,1.0
it will not allow me to download it to the tv,unable to download the app on tv,1.0
the sound is not working.,sound is not working,1.0
i can not use it because it says it is not available in certain regions,unable to use in certain regions,1.0
it will not load after i logged in.,unable to load after login,1.0
video quality is not clear.,video quality is not clear,1.0
please make a double speed function!,want double speed function,1.0
though the subscription is quite pricey,subscription plans are expensive,1.0
i want to subscribe,want to use subscription,1.0
i enjoy the variety that hulu has to offer.,app has very good content,1.0
i hope to increase the double speed playback function,want double speed playback,1.0
but it no longer works with my ipad.,unable to use on ipad,1.0
one of the best apps to keep up with past and current sports events,good app for sports,1.0
I am not able to sign up for hulu,unable to sign up for hulu,1.0
i love all the shows available on hulu,hulu has good content,1.0
i want to cancel my account,want to close account,1.0
this is amazing app for live streaming,app is good for watching live streaming,1.0
app fails to work offline despite being up to date.,unable to access the app without internet connection,1.0
i have major problem with buffering of this app,app has buffering issue,1.0
the app sucks on android.,android app is bad,1.0
this is a really good family app,app has good content for whole family,1.0
i sign in with the correct password and it tells me it is wrong.,getting incorrect password error,1.0
the subtitles are really too small to read.,subtitles are too small,1.0
I have been having a lot of problems recently with hulu.,facing frequent issues with hulu,1.0
not working on any of my devices now.,unable to work on any device,1.0
always has loading problems,app has frequent loading issues,1.0
i can not subscribe from the app.,unable to subscribe on app,1.0
i think hulu is very expensive.,hulu subscription is expensive,1.0
I am paying for a service that i can not use.,unable to use the service,1.0
the app constantly freezes.,"app crashes, freezes and buffers frequently",1.0
i have a problem with my moto g20.,unable to use on moto g20,1.0
the videos have been buffering since the time i downloaded this app.,downloaded videos are buffering,1.0
best platform for entertainment,best entertainment platform,1.0
i just keep getting error codes.,getting error code frequently,1.0
"the app is super slow and crappy, often i can not even open it.",app is slow and crashes frequently,1.0
"since i update it, it will not let me enter the app",unable to login since the update,1.0
i do not want to download anything,do not want to download,1.0
streaming is very poor.,live stream quality is poor,1.0
"after the update, videos are no longer playing properly.",unable to play video after the update,1.0
"every time i open the app, it is stuck",app keeps getting stuck,1.0
subtitles on chromecast are tiny.,subtitles on chromecast are small,1.0
it lags a lot especially during live match.,video lags a lot during live matches,1.0
"you should add the option to remove from the ""continue watching"" list.",want to remove videos from continue watching list,1.0
i paid the subscription but it does not work!,unable to make payment,1.0
the absolute worst tv app out here.,worst app to watch movies and series,1.0
every time i want to log in i have to log in.,app requests to login frequently,1.0
I am getting a blank screen after logging in.,getting blank screen after logging in,1.0
when i want to download anything from the phone i can not download it.,unable to download on phone,1.0
i can not reactivate my account.,unable to reactivate account,1.0
unable to download or update,unable to download and update,1.0
now it is a download problem.,facing issues with downloads,1.0
i want arabic subtitles,need arabic language subtitles,1.0
especially if i play a video after sometimes it automatically pauses.,video keeps pausing automatically,1.0
the app is lagging while playing video.,app is lagging while playing video,1.0
and i have to restart my phone every time.,have to restart phone due to issues in app,1.0
it will not stop buffering and it is not because my connection is bad,app has connection and buffering issues,1.0
it is too slow to open,app is slow while opening,1.0
the app crashes when i start a movie.,app crashes when starting a movie,1.0
i can not see videos on hotstar,unable to play video in hotstar,1.0
it does not charge on my cell,unable to charge on cell phone,1.0
the application does not open on the redmi note 8 device.,unable to open on redmi note 8,1.0
but whenever i logged in on one device then the other device gets logged out automatically.,getting auto logged out after logging in on second device,1.0
not playing videos after subscription. do not purchase the subscription,unable to play video after taking subscription,1.0
so many buffering issues kindly update,app has buffering issue after the update,1.0
i can not watch it on android!,unable to watch on android,1.0
it does not work well with live streaming,live streaming has issues,1.0
sometimes the screen freezes,screen freezes frequently,1.0
the current version of hulu is not compatible with ios version 15.4.,unable to use hulu on ios after latest update,1.0
i wanted to have disney plus,want disney+ subscription,1.0
"the application works very badly, both on the cell phone and on the tv.",tv app is bad,1.0
guess it is time to find a new sports app.,bad app for sports,1.0
my shows will not load.,unable to load shows,1.0
why am i no longer able to access my account through the app?,unable to access account through the app,1.0
please fix the hulu app for android devices,unable to use hulu on android,1.0
it is a pretty good price.,service is good for the price,1.0
hulu is a waste of money.,hulu has become bad,1.0
i get a vpn error.,unable to use vpn,1.0
videos freeze while audio still plays.,screen freezes and audio continues,1.0
this app is using too much data,data usage is high,1.0
low quality in full hd resolution..,poor quality video even in hd resolution,1.0
the app does not support picture in picture for androids.,unable to use picture in picture mode on android,1.0
the app sucks and it still takes a long time to download,app is bad and download time is slow,1.0
pip is not supported.,unable to use pip mode,1.0
it does not allow me to change the language of the subtitles,want subtitles translation in english,1.0
i think disney + is better than netflix,disney is better than netflix,1.0
the app is not working at all.in my oneplus 6,app is not working on one plus device,1.0
"the app is nice, but it lacks a lot of content",platform has poor quality of content,1.0
"after the update, i can not watch movies",unable to watch movies after update,1.0
it would also be better to add brightness adjustment.,want screen brightness adjust option,1.0
"it would be nice to put a ""next episode"" button",want next episode button,1.0
it seems that this app is not working for ios systems on ipads.,unable to use on ios,1.0
make a dark mode for ios.,need dark mode on ios,1.0
it will stay stuck on the hulu screen and then it goes blank.,facing blank screen issue,1.0
the app will not list the episodes ever since the update.,unable to view episodes in my stuff list,1.0
i love hulu but the app will not show episodes of tv shows,unable to load episodes on hulu,1.0
I have deleted and re-download the app twice and now i can not even log in.,unable to login even after reinstalling the app,1.0
i have high speed internet and video is getting stuck.,video keeps getting stuck while playing,1.0
it does not support the arabic language,need arabic language support,1.0
every time i enter the app on my cell phone it takes a long time to open.,loading time is slow on phone,1.0
but i can not watch it on my lg tv.,unable to play video on tv,1.0
add an option to edit the subtitles please,want to modify subtitles,1.0
it no longer works on android or fire stick tv!,unable to use on android or fire stick,1.0
please improve your app.,need to improve the app,1.0
get the shows i want for a reasonable price.,good quality of shows at affordable price,1.0
the movies are in very good quality,good picture quality of movies delivered,1.0
why is the app not running on my samsung tv.,unable to open on android tv,1.0
very poor service from hotstar.,poor service from hotstar,1.0
good sound clarity and picture quality,good sound and picture quality,1.0
"after opening the app, it freezes and closes automatically shortly afterwards.",app freezes automatically and closes,1.0
the application does not work on mobile phones or tv.,unable to use on mobile and smart tv,1.0
not playing highlights on matchs very big problem,unable to play highlights,1.0
netflix is cheaper than disney+.,disney+ is cheaper than netflix,1.0
movies do not load.,unable to load movies,1.0
i have not been able to log in from my cell phone for some time.,unable to login with mobile number,1.0
"while watching ipl matches , the app keeps on crashing every now and then.",app crashes while watching ipl matches,1.0
"one of the worst apps i have to use, because i do not have any other options to watch cricket in us.",bad app for watching cricket,1.0
"after updating, i can no longer use hulu.",unable to use hulu after update,1.0
and they will not release episodes on time.,want episodes to be released on time,1.0
on tv the app is painfully slow and very glitchy.,app is slow on tv,1.0
all i get is a deep blue screen.,facing blue screen issue,1.0
"when you look in your ""my stuff"" section and try to watch a show, it will not load any of the episodes.",unable to load videos in my stuff list,1.0
"love the app, but I am having trouble watching anything.",unable to play downloaded video,1.0
"and on top of all that, the customer service is absolutely atrocious.",need to improve customer service,1.0
"it keeps loading, and it comes out that there is an error..",unable to load due to error,1.0
why is the app not functioning in uae?,unable to open app in uae,1.0
"i try to agree to say that disney + is unavailable in a certain region, and i was picking it up now",unable to use disney+ in some regions,1.0
it does not work on my huawei,unable to use on huawei,1.0
i do not install this hotstar,unable to install hotstar,1.0
could have used a better ui.,need to improve user interface,1.0
but actually it is my favorite app for a entertainment purpose.,good for entertainment,1.0
best cricket and entertainment app,good for cricket and serials,1.0
some episodes are missing.,episodes are missing,1.0
very worst app can not able to run ipl or online content,bad app to watch ipl,1.0
i just wanted to watch my show,want to watch tv shows,1.0
i can not connect from my cell phone.,unable to connect to other devices,1.0
would be great if the auto play next episode worked.,want auto play next episode option,1.0
always delays in uploading cook with comali,want cook with comali episodes on time,1.0
best app for tv,good to watch shows,1.0
a great app to check on games and team stats,good for keeping up with team scores,1.0
i could not watch my favourite serials.,unable to watch movies and shows,1.0
this is one of the worst app i have ever seen mainly because of promoting fake shows like biggboss malayalam.,content is bad due to bigboss malyalam program,1.0
good spending time app,good for spending time,1.0
why not put subtitle settings?,unable to select subtitle,1.0
"the whole point of downloading is to watch offline, but the app wants you to be connected.",unable to offline videos without internet,1.0
no romanian subtitles available.,want bulgarian language audio and subtitles,1.0
i have subscribed but i am not happy with hotstar experience,hotstar user experience is bad,1.0
i have a galaxy s8 and this will not work.,unable to use on galaxy devices,1.0
it does not work properly on most devices.,does not work on most devices,1.0
too many ads and not even a single one of them have an option to skip it and most of the ads are so long it becomes irritating to even open this app,unable to skip ad,1.0
i am unable to stream live matches or any other sports related content.,unable to watch live matches and movies,1.0
i want to watch free movies,want to watch free movies,1.0
but since it does not open on the cell phone i can not enter the tv code..,unable to receive login code to sign in on tv,1.0
hotstar is not working on my television.,unable to use hotstar on android tv,1.0
what about croatian subtitles?,want croatian language subtitles,1.0
you should decrease your subscription fee.,want lower subscription charges,1.0
please add hindi subtitles,want english subtitles for hindi serials,1.0
I am using 150mbps but the streaming quality is very bad on android tv.,android tv version is bad,1.0
the app is poorly coded.,app is poorly made,1.0
the app keeps saying something went wrong.,app keeps saying something went wrong,1.0
but the picture quality is not great.,poor picture quality,1.0
worst app cannot show ipl for free,unable to view ipl for free,1.0
better than the previous update,new update is better,1.0
i am currently unable to activate subtitles in spanish.,want spanish language subtitles,1.0
after the latest update the picture mode is not working,unable to use picture in picture mode after latest update,1.0
crashes everytime whenever i opened this app.,app crashes after opening content,1.0
i have taken hotstar vip but the live match of ipl is not working,unable to play ipl in hotstar,1.0
every time i want to open it i have to uninstall and install in order to see,unable to load even after reinstalling the app,1.0
the videos do not play and the app stops.,app keeps stopping unexpectedly,1.0
"in addition, it is very affordable.",app has reasonable price,1.0
"every movie or series i watch, i have to turn off the subtitles.",unable to turn off subtitles,1.0
the app does not start for me (iphone 12),unable to start on ios,1.0
it crashes on the splash screen.,app crashes on loading screen,1.0
they charge a high price,prices are high,1.0
"also, i have espn+ as part of the disney bundle, but can not watch 3/4ths of the events in this stupid app because i ""do not have a cable provider"".",unable to play video on espn+,1.0
this app is not designed for chromebook,app is bad on chromebook,1.0
i pay for espn+ but still have to choose a tv provider to watch anything.,unable to use espn+ without subscribing to cable provider,1.0
notifications do not work properly.,notifications are not working,1.0
i love just i wish they would add more animes,want anime content,1.0
i can play the current episode but can not look at all episodes.,unable to view past videos,1.0
the app logs me out everytime it updates.,app keeps logging out,1.0
previous: app is not working on sony smart tv.,app is not working on sony smart tv,1.0
"when i return to a show i was watching, it often starts up again with an episode I have already seen.",unable to sync watched episodes,1.0
but today i wanted to watch hulu,want to watch hulu,1.0
we can download videos in this app.,good app to download videos,1.0
no hd quality video and very slow loading.,video loading time is slow and video quality is bad,1.0
app worked fine until last update now i can not open the app on my pixel 5 at all.,unable to open app on pixel device,1.0
there are many hdr capable phones from samsung and others.,want hdr quality on mobile,1.0
lack of good movies.,poor quality of movies,1.0
"before releasing an update, it is to be tested.",need to test before update,1.0
this app is good to watch highlight matches,good for watching highlights,1.0
it asks for an update but no updates shown in play store.. please look forward on this issue.,unable to update in play store,1.0
too dangerous for my children.,bad app for children,1.0
not all the movies are available,missing some movies,1.0
sometimes i can not even log in because the app says i put in an incorrect pin which i did not.,unable to login with correct pin,1.0
netflix and amazon platforms offer even better service.,netflix and amazon are good,1.0
s22 ultra does not work.,unable to use on s22 ultra,1.0
"i pre-signed up, but no email came.",unable to receive email for pre-registration,1.0
why are there no subtitles or dubbing?,want subtitles,1.0
but there is no updates available on hotstar,unable to update hotstar,1.0
advertising is so bad,advertisements are bad,1.0
the play and pause buttons were bugged,play and pause buttons are not bugged,1.0
"if i close and reopen the app , it keeps buffering persistently .",have to restart the app due to buffering issue,1.0
"when i enter the app, a warning appears that ""the app is available in certain regions"".",unable to open app in certain regions,1.0
content playing in moto g71 is jittery and lagging.,video is lagging on moto devices,1.0
I am in a state where only error code 39 is displayed,getting error code 39,1.0
movie audio is often too low and of poor quality.,video sound is low,1.0
i can not play video over wi-fi.,unable to open app with wifi,1.0
freezes during live streaming of sport events.,video freezes during live matches,1.0
this app is not working in qatar..,unable to open app in middle east,1.0
can you add more content?,need to add more content,1.0
i was sorry that it was not on disney + tv,unable to watch select content on disney+,1.0
disney is no longer family friendly.,disney is not kids friendly,1.0
i absolutely love this app but there are so many tv shows missing!,missing some episodes and seasons,1.0
so i got the disney plus bundle and it will not let me use hulu,unable to use hulu with disney+ bundle,1.0
they have added ads to the middle of movies.,getting ads in middle of the movies,1.0
disney+ has a plethora of different programmes and is the most elite tv set i have ever seen i would highly recommend this to everyone,app is good with lots of shows,1.0
the app is great but there is a missing movie about spider-man with no return home,unable to find spiderman movies,1.0
i have the disney+ bundle and can never log into the espn + app when i want to watch something,unable to login to espn+,1.0
espn+ is a waste of time.,espn+ is bad,1.0
espn sucks it is so bad,espn is bad,1.0
more options than netflix,better than netflix,1.0
movies freeze up or the pixels get messed up while viewing.,video freezes while playing,1.0
your app keeps crashing on my tv.,app keeps crashing on the tv,1.0
all of the episodes for the season are not displayed.,unable to watch episodes,1.0
it does not go to full screen anymore after the latest update on android operating system,unable to use full screen on android,1.0
nice service in low cost,app provides good service,1.0
worst online movie app,app is bad for movies,1.0
app crashing during important ipl final.pathetic streaming platform.,app crashing during ipl stream,1.0
being able to rewatch old disney dramas is great!,good to rewatch classic disney content,1.0
i have a google pixel 6 and for some reason it does not seem to work.,unable to use on pixel devices,1.0
I am tired of disney,disney plus is bad,1.0
i adjust my volume,want volume adjust feature,1.0
"but it is very bad experience to watch live matches, not showing full screen..",bad experience while watching live matches,1.0
why remove pip mode?,want to use pip mode,1.0
pip does not work.,pip is not working,1.0
it is great that you can watch your movies right from your phone.,good to watch movies on mobile,1.0
most of the time live streaming of ipl match is not available.,streaming quality is bad during ipl matches,1.0
"the app was running perfectly until recently, but recently I am always getting error code 39.",facing error 39 issue while using the app,1.0
no longer compatible with my device for some reason.,facing compatibility issues with the app,1.0
i recently got the 1 year subscription but am unable to watch the live match.,unable to watch matches with subscription,1.0
cricket highlights are not running properly,unable to play cricket highlights,1.0
the app does not work often.,app is not working frequently,1.0
I am watching a series there is no way to go back to the first episode,unable to navigate through different episodes,1.0
"it is slow, still buffering.",app is slow and buffers a lot,1.0
i want to download some content.,want to know how to download,1.0
the subtitles on the android smart tv started to look bad 2 days ago,unable to see subtitles on android tv,1.0
while watching highlights during ads it starts buffering,facing buffering issues while ads are playing,1.0
it is fun to watch movies and spend time with your family,good to watch movies with family,1.0
please fix the moto g20 screen issues.,facing screen compatibility issues on moto g20,1.0
the video gets cut and lags a lot,video and audio do not sync,1.0
they charge you a monthly fee,facing unauthorised charges every month,1.0
please add 240p or 360p for watching videos.,want 240p video quality due to high data consumption,1.0
i wrote a review and it was deleted.,want to know why the review was deleted,1.0
"every time i exit the app, i log out and it is very annoying to have to log in every time i open it.",have to login every time after exiting the app,1.0
you have to change the payment method.,want to change payment method,1.0
too many bug in this app always hang.,app keeps hanging,1.0
the server never runs properly!,app has terrible servers,1.0
"but when i try to install android tv box a using android 9.0, the app warns that it is not compatible with this device.",unable to install on android tv,1.0
tv is so bad.,viewing experience is bad,1.0
same ad is shown over and over again while watching live matches.,getting frequent ads during live matches,1.0
"hulu, you have an app problem!!",need to fix bugs on app,1.0
it will not go to the password screen.,unable to enter password,1.0
i subscribed for vip but unable to access live star sports channels.,unable to access live sports channels,1.0
no connection can be provided from mobile..,unable to connect on mobile network,1.0
i have to sign up and pay for some other stupid tv provider.,have to sign in with tv provider as well to use the app,1.0
i do not want to see stupid app notifications and there is no way to disable them.,want to disable notifications,1.0
but i want to know when the next season is coming?,want to know when the next season is coming,1.0
as of right now i cannot and will be looking to switch to a different streaming service!,want to switch to another streaming service,1.0
the loading page appears and it is running continuously.,unable to load page,1.0
i want to watch the games,want to watch the games,1.0
"this is an app that supports homosexuality, and it is totally unfair.",app promotes homosexuality,1.0
"also, lately hulu has not been loading episodes queues for shows!",unable to view the list of episodes on hulu,1.0
my app is closing automatically repeatedly while streaming,app keeps closing automatically while streaming,1.0
while watching movies via streaming the video is jittery and the frame rate lags even though i have good internet connection.,video keeps stuttering,1.0
loading time takes forever.,loading time takes forever,1.0
i love this because i can download movies and watch anytime without data,good for downloading movies for offline,1.0
i love watching movies from my childhood with my little girl.,good for watching childhood movies,1.0
"also, it would be nice if there was a way to remove items from the ""continue watching"" list.",want to remove content from continue watching list,1.0
very bad i can not even update it worst,frequent updates are annoying,1.0
the automated chat system is useless.,chat bot is not working,1.0
"pretty good, but the video player sucks",video player is not working,1.0
very good quality pictures and graphics,good quality of pictures,1.0
does not allow me to change payment method.,unable to change payment method,1.0
"it should be available on all smart tvs, right?",want compatibility with more smart televisions,1.0
i am not getting jio tv properly.,unable to use with jio tv,1.0
(learn from the netflix interface),netflix ui is better,1.0
"hello,
disney+ must also be installed on chromecast",unable to use disney on chromecast,1.0
it is a shame that disney+ does not work on tv box devices.,unable to use disney plus on tv,1.0
i have to close and reload the app over and over again until the sound works.,sound keeps playing even after closing the app,1.0
|