Tencent Real-Time Communication Faqs

Total Page:16

File Type:pdf, Size:1020Kb

Tencent Real-Time Communication Faqs Tencent Real-Time Communication Tencent Real-Time Communication FAQs Product Documentation ©2013-2019 Tencent Cloud. All rights reserved. Page 1 of 50 Tencent Real-Time Communication Copyright Notice ©2013-2019 Tencent Cloud. All rights reserved. Copyright in this document is exclusively owned by Tencent Cloud. You must not reproduce, modify, copy or distribute in any way, in whole or in part, the contents of this document without Tencent Cloud's the prior written consent. Trademark Notice All trademarks associated with Tencent Cloud and its services are owned by Tencent Cloud Computing (Beijing) Company Limited and its affiliated companies. Trademarks of third parties referred to in this document are owned by their respective proprietors. Service Statement This document is intended to provide users with general information about Tencent Cloud's products and services only and does not form part of Tencent Cloud's terms and conditions. Tencent Cloud's products or services are subject to change. Specific products and services and the standards applicable to them are exclusively provided for in Tencent Cloud's applicable terms and conditions. ©2013-2019 Tencent Cloud. All rights reserved. Page 2 of 50 Tencent Real-Time Communication Contents FAQs How to Deal with Firewall Restrictions iLiveSDK Upgrade How to Downsize Installation Package UserSig Features Android and iOS Desktop Browser Flutter Other ©2013-2019 Tencent Cloud. All rights reserved. Page 3 of 50 Tencent Real-Time Communication FAQs How to Deal with Firewall Restrictions Last updated:2021-06-09 18:09:35 Some customers have restrictions placed on public network access by their own companies, so they need to be added to a firewall allowlist before they can get access. The following describes the related rules: What ports or domain names do I need to add to the allowlist of native SDK for client? The firewall ports are as follows: TRTC SDK (Native) Allowed Items TCP port 443; 20166 UDP port 8000、8080、16285、9000 Domain name allowlist: cloud.tim.qq.com gz.file.myqcloud.com avc.qcloud.com yun.tim.qq.com dldir1.qq.com mlvbdc.live.qcloud.com query.tencent-cloud.com What ports or domain names do I need to add to the allowlist of WebRTC? The firewall ports are as follows: WebRTC (H5) Allowed Items TCP port 8687 UDP port 8000; 8800; 843; 443 Domain name allowlist: ©2013-2019 Tencent Cloud. All rights reserved. Page 4 of 50 Tencent Real-Time Communication qcloud.rtc.qq.com What domain names do I need to add to the allowlist of WeChat Mini Program? <trtc-room> domain name allowlist: https://official.opensso.tencent-cloud.com https://yun.tim.qq.com https://cloud.tencent.com https://webim.tim.qq.com https://query.tencent-cloud.com Tencent Cloud server IP addresses are dynamically updated, with no fixed batch of IP addresses, so we cannot provide you with a list of fixed IPs. ©2013-2019 Tencent Cloud. All rights reserved. Page 5 of 50 Tencent Real-Time Communication iLiveSDK Upgrade Last updated:2021-08-25 16:52:53 What are the differences between TRTC V1 (iLiveSDK) and V2 (LiteAVSDK)? Item Old (V1) New (V2) Architecture iLiveSDK LiteAVSDK IM SDK Built-in Not built-in API V1 V2 CDN streaming Must be enabled via RESTful API Can be enabled via client Line V1 V2 How do I upgrade from TRTC V1 (iLiveSDK) to V2 (LiteAVSDK)? If your project has never integrated the TRTC SDK, we strongly recommend that you use V2 (LiteAVSDK) from the beginning, which outperforms V1 in terms of call quality, line, ease of integration, and feature extension. ©2013-2019 Tencent Cloud. All rights reserved. Page 6 of 50 Tencent Real-Time Communication If your project is running stably without encountering any problems, we recommend that you stick to V1 for the time being as the lines of V1 and V2 are not interconnected currently. If you are in the process of integrating the old version SDK (V1) into your project, we recommend that you switch to V2, which uses brand new APIs and is much faster to integrate than V1. If you are already using V1 and hope to improve your call quality by upgrading to V2, since the lines of V1 and V2 are not interconnected currently, you need to first integrate the new SDK into your project, wait for the new version to cover your user base, and then switch from V1 to V2 lines in the cloud. See below for details: i. Integrate the new SDK into your project and run a test. ii. Add a field that indicates the SDK version number in the room list so that your application can determine whether to use the V1 or V2 SDK based on this field on the server. iii. Release the update to your application and wait for it to cover your user base. iv. Change the field indicating the SDK version number in the room list from V1 to V2 to switch from V1 to V2 lines. How do I integrate LiteAVSDK and iLiveSDK for Android at the same time? Both iLiveSDK and LiteAVSDK use Tencent Real-time Audio Engine (TRAE) to process audio, for example, for noise suppression and echo cancellation. LiteAVSDK uses a newer version of TRAE and includes all the APIs of iLiveSDK. Therefore, you only need to configure the TRAE library of LiteAVSDK for your project. Integrate the SDKs as AAR files and, in the build.gradle file of your subproject (the application directory), add code in the android{} closure as described below. Note: You must reference LiteAVSDK before iLiveSDK. android{ // 1. Configure packaging options in Gradle packagingOptions { pickFirst 'lib/armeabi-v7a/libTRAECodec.so' pickFirst 'lib/armeabi-v7a/libstlport_shared.so' pickFirst 'lib/armeabi/libTRAECodec.so' pickFirst 'lib/armeabi/libstlport_shared.so' } // 2. Import dependencies implementation(name:'LiteAVSDK_TRTC_6.4.7108', ext:'aar') // Make sure that you import LiteAVSDK before iLiveSDK ©2013-2019 Tencent Cloud. All rights reserved. Page 7 of 50 Tencent Real-Time Communication implementation 'com.tencent.ilivesdk:ilivesdk:1.9.4.6.4' } How do I integrate LiteAVSDK, iLiveSDK, and BeautySDK for iOS at the same time? TRTC V1 uses BeautySDK to implement features including beauty filters and animated effects. These features are built into TRTC V2. As a result, if your project has already integrated iLiveSDK and imported BeautySDK, a file conflict will occur. Below is the solution: Edition Solution BeautySDK Basic Add a header search path for BeautySDK in your Xcode project and unlink (without BeautySDK. retouching features) BeautySDK Use LiteAVSDK Enterprise, add a header search path for BeautySDK in your Advanced Xcode project, and unlink BeautySDK (LiteAVSDK Enterprise integrates the (with retouching component, which you can use with the license you have already retouching purchased.) features) How do I integrate LiteAVSDK and iLiveSDK for Windows at the same time? Both iLiveSDK and LiteAVSDK for Windows use Tencent Real-time Audio Engine (TRAE) to process audio, for example, for noise suppression and echo cancellation. However, LiteAVSDK uses a newer version of TRAE and differs from iLiveSDK in terms of feature usage. Therefore, you cannot use it to replace the TRAE of iLiveSDK directly. Below is the solution: Project structure We recommend the following project structure: | |- Main application.exe |- Other files main application.exe depends on |- iLiveSDK.dll |- Other files iLiveSDK.dll depends on |- LiteAV | |- liteav.dll | |- Other files liteav.dll depends on ©2013-2019 Tencent Cloud. All rights reserved. Page 8 of 50 Tencent Real-Time Communication Initialization You can use iLiveSDK by linking a LIB file into your project or load it dynamically using the code below: HMODULE hiLive = LoadLibrary("iLiveSDK.dll"); To use LiteAVSDK, load and initialize it using the code below: typedef ITRTCCloud* (*getTRTCShareInstanceMtd)(); typedef void(*destroyTRTCShareInstanceMtd)(); TCHAR dllPath[MAX_PATH]; GetModuleFileName(nullptr, dllPath, MAX_PATH); PathRemoveFileSpec(dllPath); wcscat(dllPath, L"\\LiteAV\\"); SetDllDirectory(dllPath); HMODULE hLiteAV = LoadLibrary(L"liteav.dll"); if (!hLiteAV) { printf("Failed to load liteav.dll: %d", GetLastError()); return; } getTRTCShareInstanceMtd pGetTRTCShareInstance = (getTRTCShareInstanceMtd)GetProcAddress(hLiteAV, "getTRTCShareInstance"); if (!pGetTRTCShareInstance) { printf("Failed to load the getTRTCShareInstance function"); return; } destroyTRTCShareInstanceMtd pDestroyTRTCShareInstance = (destroyTRTCShareInstanceMtd)GetProcAddre ss(hLiteAV, "destroyTRTCShareInstance"); if (!pDestroyTRTCShareInstance) { printf("Failed to load the destroyTRTCShareInstance function"); return; } ITRTCCloud *pTrtcCloud = m_pGetTRTCShareInstance(); if (!pTrtcCloud) { printf("Failed to create a TRTC instance"); return; } SetDllDirectory(nullptr); pTrtcCloud-&gt;enterRoom(...); ©2013-2019 Tencent Cloud. All rights reserved. Page 9 of 50 Tencent Real-Time Communication How to Downsize Installation Package Last updated:2021-01-14 17:09:54 How much will the file increment be after the TRTC SDK is integrated? The file size increment varies by TRTC SDK version. For more information, please see SDK Download. How do I reduce the size of an installation package for iOS? Method 1. Only package the ARM64 architecture (recommended) For iPhone models after 5s, you can just package x64 architecture by setting "Build Active Architecture Only" in "Build Settings" in Xcode to "Yes" and write only arm64 into "Valid Architectures". The single-architecture IPA increment of the TRTC SDK will be 1.9 MB only. Method 2. Enable Bitcode For iPhone 5s and older models, if all third-party libraries in the project support Bitcode, you can enable Bitcode to reduce the size of the installation package. Toggle on "Enable Bitcode" in "Build Settings" > "Build Options" to enable bitcode. From 2016 on, Apple started to support Bitcode compilation in the Xcode development environment. After Bitcode is enabled, the compiler will generate the application's intermediate ©2013-2019 Tencent Cloud. All rights reserved. Page 10 of 50 Tencent Real-Time Communication code instead of the actual assembly code, and users will download and install the machine code generated for the specific mobile CPU architecture from App Store, which greatly reduces the installation package size. How do I reduce the size of an installation package for Android? Method 1.
Recommended publications
  • Groupwise Mobility Quick Start for Microsoft Outlook Users
    GroupWise Mobility Quick Start for Microsoft Outlook Users August 2016 GroupWise Mobility Service 2014 R2 allows the Microsoft Outlook client for Windows to run against a GroupWise backend via Microsoft ActiveSync 14.1 protocol. This document helps you set up your Outlook client to access your GroupWise account and provides known limitations you should be aware of while using Outlook against GroupWise. Supported Microsoft Outlook Clients CREATING THE GROUPWISE PROFILE MANUALLY Microsoft Outlook 2013 or 21016 for Windows 1 On the machine, open Control Panel > User Accounts and Family Safety. Microsoft Outlook Mobile App Adding a GroupWise Account to the Microsoft Outlook Client You must configure the Microsoft Outlook client in order to access your GroupWise account. The following instructions assume that the Outlook client is already installed on your machine. You can use the GroupWise Profile Setup utility to set the profile up automatically or you can manually create the GroupWise profile for Outlook. Using the GroupWise Profile Setup Utility Creating the GroupWise Profile Manually 2 Click Mail. 3 (Conditional) If a Mail Setup dialog box is displayed, USING THE GROUPWISE PROFILE SETUP UTILITY click Show Profiles to display the Mail dialog box. You must first obtain a copy of the GWProfileSetup.zip from If GroupWise is installed on the machine, the Profiles your system administrator before following the steps below list includes a GroupWise profile, as shown in the to create the profile on your workstation. following screenshot. You need to keep this profile and create a new profile. 1 Extract the GWProfileSetup.zip to a temporary location on your workstation.
    [Show full text]
  • Virtual Planetary Space Weather Services Offered by the Europlanet H2020 Research Infrastructure
    Article PSS PSWS deadline 15/11 Virtual Planetary Space Weather Services offered by the Europlanet H2020 Research Infrastructure N. André1, M. Grande2, N. Achilleos3, M. Barthélémy4, M. Bouchemit1, K. Benson3, P.-L. Blelly1, E. Budnik1, S. Caussarieu5, B. Cecconi6, T. Cook2, V. Génot1, P. Guio3, A. Goutenoir1, B. Grison7, R. Hueso8, M. Indurain1, G. H. Jones9,10, J. Lilensten4, A. Marchaudon1, D. Matthiäe11, A. Opitz12, A. Rouillard1, I. Stanislawska13, J. Soucek7, C. Tao14, L. Tomasik13, J. Vaubaillon6 1Institut de Recherche en Astrophysique et Planétologie, CNRS, Université Paul Sabatier, Toulouse, France ([email protected]) 2Department of Physics, Aberystwyth University, Wales, UK 3University College London, London, UK 4Institut de Planétologie et d'Astrophysique de Grenoble, UGA/CNRS-INSU, Grenoble, France 5GFI Informatique, Toulouse, France 6LESIA, Observatoire de Paris, CNRS, UPMC, University Paris Diderot, Meudon, France 7Institute of Atmospheric Physics (IAP), Czech Academy of Science, Prague, Czech Republic 8Departamento de Física Aplicada I, Escuela de Ingeniería de Bilbao, Universidad del País Vasco UPV /EHU, Bilbao, Spain 9Mullard Space Science Laboratory, University College London, Holmbury Saint Mary, UK 10The Centre for Planetary Sciences at UCL/Birkbeck, London, UK 11German Aerospace Center (DLR), Institute of Aerospace Medicine, Linder Höhe, 51147 Cologne, Germany 12Wigner Research Centre for Physics, Budapest, Hungary 13Space Research Centre, Polish Academy of Sciences, Warsaw, Poland 14National Institute of Information
    [Show full text]
  • Netscape 6.2.3 Software for Solaris Operating Environment
    What’s New in Netscape 6.2 Netscape 6.2 builds on the successful release of Netscape 6.1 and allows you to do more online with power, efficiency and safety. New is this release are: Support for the latest operating systems ¨ BETTER INTEGRATION WITH WINDOWS XP q Netscape 6.2 is now only one click away within the Windows XP Start menu if you choose Netscape as your default browser and mail applications. Also, you can view the number of incoming email messages you have from your Windows XP login screen. ¨ FULL SUPPORT FOR MACINTOSH OS X Other enhancements Netscape 6.2 offers a more seamless experience between Netscape Mail and other applications on the Windows platform. For example, you can now easily send documents from within Microsoft Word, Excel or Power Point without leaving that application. Simply choose File, “Send To” to invoke the Netscape Mail client to send the document. What follows is a more comprehensive list of the enhancements delivered in Netscape 6.1 CONFIDENTIAL UNTIL AUGUST 8, 2001 Netscape 6.1 Highlights PR Contact: Catherine Corre – (650) 937-4046 CONFIDENTIAL UNTIL AUGUST 8, 2001 Netscape Communications Corporation ("Netscape") and its licensors retain all ownership rights to this document (the "Document"). Use of the Document is governed by applicable copyright law. Netscape may revise this Document from time to time without notice. THIS DOCUMENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN NO EVENT SHALL NETSCAPE BE LIABLE FOR INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING FROM ANY ERROR IN THIS DOCUMENT, INCLUDING WITHOUT LIMITATION ANY LOSS OR INTERRUPTION OF BUSINESS, PROFITS, USE OR DATA.
    [Show full text]
  • ALLE HSU [email protected]
    ALLE HSU [email protected] |1(949) 307-9239 (mobile) skype / wechat / instagram / twitter / tumblr: allehsu PROFILE Highly collaborative award-winning filmmaker with global production experience having produced films and projects in Singapore, Mexico, Prague, Hong Kong, Mainland China, Philippines, New York, NY, Utah, and LA/OC, CA. Excellent written and analytical skills. Strong ability to organize and motivate others in various kinds of projects. SELECTED PRODUCTION EXPERIENCE – FILMS Director/Producer Our Way Home 归程– Passion Project. James and Barbara are Chinese American siblings on their way home for the Thanksgiving holidays. They encounter racism in a diner on their way home, and are followed thereafter, thinking that it’s someone from the diner. Little do they know, it’s someone they know. 12m. Alexa Mini. Long Island, NY, 2017. Director/Producer POP! – NYU Tisch Thesis Film. Jennifer is a Chinese American woman in her mid-30s and is suffering from adult acne. She is still living at home with her Tiger-Mom mother, Pearl who coerces Jennifer into attending her Chinese New Year Banquet. 25m. Alexa Classic. Orange County, CA, 2016. In Post-Production. Director/Co-Writer/Producer/Editor Sophie – NYU Tisch Film. Sophie is abandoned by her mother and forced to come to terms with her new life and her grandmother in this poignant tale of a crucial moment in a young girls’s life. Official Selection / In Competition – Austin, Foyle, Bahamas, Fusion, Cleveland, Sarasota, LA Asian Pacific, Newport Beach. Next Director Award Shortlist. Awarded the NYU Tisch Asia Post-Production Award, Craft Awards in Acting and Cinematography.
    [Show full text]
  • Guide to Customizing and Distributing Netscape 7.0
    Guide to Customizing and Distributing Netscape 7.0 28 August 2002 Copyright © 2002 Netscape Communications Corporation. All rights reserved. Netscape and the Netscape N logo are registered trademarks of Netscape Communications Corporation in the U.S. and other countries. Other Netscape logos, product names, and service names are also trademarks of Netscape Communications Corporation, which may be registered in other countries. The product described in this document is distributed under licenses restricting its use, copying, distribution, and decompilation. No part of the product or this document may be reproduced in any form by any means without prior written authorization of Netscape and its licensors, if any. THIS DOCUMENTATION IS PROVIDED “AS IS” AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. Contents Preface . 9 Who Should Read This Guide . 10 About the CCK Tool . 10 If You've Used a Previous Version of CCK . 11 Using Existing Customized Files . 12 How to Use This Guide . 13 Where to Go for Related Information . 15 Chapter 1 Getting Started . 17 Why Customize and Distribute Netscape? . 18 Why Do Users Prefer Netscape 7.0? . 18 Overview of the Customization and Distribution Process . 20 System Requirements . 23 Platform Support . 25 Installing the Client Customization Kit Tool . 26 What Customizations Can I Make? . 27 Netscape Navigator Customizations . 27 Mail and News Customizations . 32 CD Autorun Screen Customizations . 32 Installer Customizations . 33 Customization Services Options . 34 Which Customizations Can I Make Quickly? .
    [Show full text]
  • Tencent and China Mobile's Dilemma
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by AIS Electronic Library (AISeL) Association for Information Systems AIS Electronic Library (AISeL) Pacific Asia Conference on Information Systems PACIS 2014 Proceedings (PACIS) 2014 FROM WECHAT TO WE FIGHT: TENCENT AND CHINA MOBILE’S DILEMMA Jun Wu School of Economics and Management, Beijing University of Posts and Telecommunications, [email protected] Qingqing Wan School of Economics and Management, Beijing University of Posts and Telecommunications, [email protected] Follow this and additional works at: http://aisel.aisnet.org/pacis2014 Recommended Citation Wu, Jun and Wan, Qingqing, "FROM WECHAT TO WE FIGHT: TENCENT AND CHINA MOBILE’S DILEMMA" (2014). PACIS 2014 Proceedings. 265. http://aisel.aisnet.org/pacis2014/265 This material is brought to you by the Pacific Asia Conference on Information Systems (PACIS) at AIS Electronic Library (AISeL). It has been accepted for inclusion in PACIS 2014 Proceedings by an authorized administrator of AIS Electronic Library (AISeL). For more information, please contact [email protected]. FROM WECHAT TO WE FIGHT: TENCENT AND CHINA MOBILE’S DILEMMA Jun Wu, School of Economics and Management, Beijing University of Posts and Telecommunications, Beijing, China, [email protected] Qingqing Wan, School of Economics and Management, Beijing University of Posts and Telecommunications, Beijing, China, [email protected] Abstract With the coming of mobile internet era, Giants in the different industry begin to compete face by face. This teaching case presents the event of charging for WeChat in China context to delineate the new challenges that Online Service Provider and Mobile Network Operator will face.
    [Show full text]
  • Digital Filtering in Saudi Arabia
    Opening Digital Borders Cautiously yet Decisively: Digital Filtering in Saudi Arabia Fatemah Alharbi Michalis Faloutsos Taibah University, Yanbu University of California, Riverside Nael Abu-Ghazaleh University of California, Riverside Abstract (a) traditional Internet filtering on websites; and (b) access to mobile applications. The study spans the period from March Our study makes a rare positive observation: Saudi Arabia 2018 to April 2020, with three separate measurements, one in has been opening its digital borders since 2017 in a delib- each calendar year. Our goal is to answer the three questions: erate new era towards openness. In this paper, we present a (a) “what content is filtered?", (b) “how is filtering imple- comprehensive longitudinal study of digital filtering, which mented?", and (c) “how does filtering evolve over time in we define to include both mobile apps and website access, response to geopolitical conditions?" in Saudi Arabia over a period of three years. Our results show that Saudi Arabia has indeed made significant progress We pursue a mutli-pronged strategy as follows. towards opening its digital borders: (a) the use of mobile 1. Quantification: What is filtered? We provide a fairly ex- applications has been significantly permitted; and (2) web ac- tensive study on the accessibility of both mobile apps and cess is becoming more open. We use: (a) 18 social media and websites from within Saudi Arabia and its evolution over communications mobile apps such as WhatsApp, Facetime, time. Our results show significant progress towards the open- and Skype; and (b) Alexa’s top 500 websites in 18 different ing of the country’s digital borders.
    [Show full text]
  • Instant Messaging Video Converter, Iphone Converter Application
    Web Browsing Mozilla Firefox The premier free, open-source browser. Tabs, pop-up blocking, themes, and extensions. Considered by many to be the world's best browser. Download Page Video Player, Torrents, Podcasting Miro Beautiful interface. Plays any video type (much more than quicktime). Subscribe to video RSS, download, and watch all in one. Torrent support. Search and download from YouTube and others. Download Page IM - Instant Messaging Adium Connect to multiple IM accounts simultaneously in a single app, including: AOL IM, MSN, and Jabber. Beautiful, themable interface. Download Page Video Converter, iPhone Converter Miro Video Converter Convert any type of video to mp4 or theora. Convert any video for use with iPhone, iPod, Android, etc. Very clean, easy to use interface. Download Page Application Launching Quicksilver Quicksilver lets you start applications (and do just about everything) with a few quick taps of your fingers. Warning: start using Quicksilver and you won't be able to imagine using a Mac without it. Download Page Email Mozilla Thunderbird Powerful spam filtering, solid interface, and all the features you need. Download Page Utilities The Unarchiver Uncompress RAR, 7zip, tar, and bz2 files on your Mac. Many new Mac users will be puzzled the first time they download a RAR file. Do them a favor and download UnRarX for them! Download Page DVD Ripping Handbrake DVD ripper and MPEG-4 / H.264 encoding. Very simple to use. Download Page RSS Vienna Very nice, native RSS client. Download Page RSSOwl Solid cross-platform RSS client. Download Page Peer-to-Peer Filesharing Cabos A simple, easy to use filesharing program.
    [Show full text]
  • Development of Information System for Aggregation and Ranking of News Taking Into Account the User Needs
    Development of Information System for Aggregation and Ranking of News Taking into Account the User Needs Vasyl Andrunyk[0000-0003-0697-7384]1, Andrii Vasevych[0000-0003-4338-107X]2, Liliya Chyrun[0000-0003-4040-7588]3, Nadija Chernovol[0000-0001-9921-9077]4, Nataliya Antonyuk[0000- 0002-6297-0737]5, Aleksandr Gozhyj[0000-0002-3517-580X]6, Victor Gozhyj7, Irina Kalinina[0000- 0001-8359-2045]8, Maksym Korobchynskyi[0000-0001-8049-4730]9 1-4Lviv Polytechnic National University, Lviv, Ukraine 5Ivan Franko National University of Lviv, Lviv, Ukraine 5University of Opole, Opole, Poland 6-8Petro Mohyla Black Sea National University, Nikolaev, Ukraine 9Military-Diplomatic Academy named after Eugene Bereznyak, Kyiv, Ukraine [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected] Abstract. The purpose of the work is to develop an intelligent information sys- tem that is designed for aggregation and ranking of news taking into account the needs of the user. During the work, the following tasks are set: 1) Analyze the online market for mass media and the needs of readers; the pur- pose of their searches and moments is not enough to find the news. 2) To construct a conceptual model of the information aggression system and ranking of news that would enable presentation of the work of the future intel- lectual information system, to show its structure. 3) To select the methods and means for implementation of the intellectual in- formation system.
    [Show full text]
  • What the Floc?
    Security Now! Transcript of Episode #811 Page 1 of 30 Transcript of Episode #811 What the FLoC? Description: This week we briefly, I promise, catch up with ProxyLogon news regarding Windows Defender and the Black Kingdom. We look at Firefox's next release which will be changing its Referer header policy for the better. We look at this week's most recent RCE disaster, a critical vulnerability in the open source MyBB forum software, and China's new CAID (China Anonymization ID). We then conclude by taking a good look at Google's plan to replace tracking with explicit recent browsing history profiling, which is probably the best way to understand FLoC (Federated Learning of Cohorts). And as a special bonus we almost certainly figure out why they named it something so awful. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-811.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-811-lq.mp3 SHOW TEASE: It's time for Security Now!. Steve Gibson is here. We've got a new fix for the Microsoft Exchange Server flaw. This one's automatic, thanks to Microsoft. We'll also take a look at some nice new features in Firefox 87. You can get it right now. And then, what the FLoC? We'll take a look at Google's proposal for replacing third-party cookies. Is it better? It's all coming up next on Security Now!. Leo Laporte: This is Security Now! with Steve Gibson, Episode 811, recorded Tuesday, March 23rd, 2021: What the FLoC? It's time for Security Now!, the show where we cover your privacy, your security, your safety online with this guy right here, Steve Gibson from GRC.com.
    [Show full text]
  • Wechat About China's Tencent
    We Build Connections QQ Weixin For Enterprises: For Users: For Tencent: • Access to vast user base • Always connected • Deepen user stickiness via broadened • Unified user log-in enables CRM and • Enjoy a wide range of integrated social product offerings targeted advertising entertainment and content offerings, built • Increase traffic conversion through • Online payment facilitates transactions upon IPs and tech innovations transactions and advertising • Integrate capabilities across different • Access to rich mix of services and • Tap into new opportunities as the products to facilitate digital upgrades, e.g., transact at fingertips economy digitizes Weixin, WeChat Work, Tencent Meeting WeChat about 2 China’s Tencent Chris Wheldon, co-Portfolio Manager of the Magellan High Conviction strategy, and Ryan Joyce, co-Head of Magellan’s Technology team, explain why Tencent is a high-quality business, why the strategy invested in the company recently, what risks the investment poses and why Tencent performed well during the pandemic’s Chris Wheldon Ryan Joyce initial stages. Tencent is one of the High Conviction Q1. strategy’s top five positions. Can you please tell us about the company? A: Tencent was founded in 1998 as a Chinese instant-messaging service and web portal named QQ and subsequently built itself into a PC-based social network similar to today’s Facebook. In 2011, Tencent launched the WeChat mobile app, now China’s leading social “WeChat’s 1.2 network and communications platform and core to the company’s billion users average success. WeChat’s 1.2 billion users average nearly 100 minutes per day, every day, on the app.
    [Show full text]
  • Wechat-Mediated Simulation and the Learning of Business Chinese
    Wang, X and Wu, X 2020 WeChat-Mediated Simulation and the Learning of Business Chinese. Modern Languages Open, 2020(1): 42 pp. 1–13. DOI: https://doi.org/10.3828/mlo.v0i0.300 ARTICLE – DIGITAL MODERN LANGUAGES WeChat-Mediated Simulation and the Learning of Business Chinese Xuan Wang1 and Xiaoli Wu2 1 Cardiff University, GB 2 KU Leuven, BE Corresponding author: Xiaoli Wu ([email protected]) The purpose of this tutorial is to demonstrate social media engagement in higher- level language classrooms, using WeChat (a China-based free application with functions similar to WhatsApp or Messenger) as the digital medium. Originally designed for users in the Chinese market, WeChat is also available in English and increasingly used beyond China for both social and business communication, there- fore its use as demonstrated in this tutorial may also be applicable to the learning of other languages, or to inspire the use of similar digital tools in language learn- ing and teaching. This tutorial illustrates specifically how WeChat can facilitate the learning of language and culture for business in a Chinese context. It explores several modes of communication offered by WeChat, including one-to-one or group instant text messaging, voice messaging, voice or video call, document sharing, and online publication. These various functions are utilised in different stages of a business simulation game, and set up as pre-planned learning tasks. The tasks consist of specific, progressive activities and goals, such as drafting and pitch- ing a business plan, business consultation, market research and digital marketing. Accordingly, specific learning processes are generated: enabling the simulation of digital business communication (focusing on China in this case) through gamifica- tion; in doing so, it extends learning in the conventional classroom (‘here’ offline in Europe) and blends it with that in real-life interactions and business practices (‘there’ online in China).
    [Show full text]