Skip to main content

Nokia to Launch Audio Product in India on April 5 via Flipkart, Could Be TWS Earphones

 Nokia may also launch a pair of neckband-style earphones with rapid charging technology.



Nokia will launch a new audio product in India on April 5 on Flipkart. As per the 
Nokia Audio Store on the e-commerce platform, the audio device will have a 
technology that is “designed to give pure sound.” It also hints that the product 
can be used “in rain,” “at crowded spots,” “during working out,” and “gaming”. 
These teasers are accompanied by videos which suggest that the Finnish 
company may launch true wireless stereo (TWS) earphones. Interestingly, this 
launch is three days prior to another event that Nokia licensee HMD Global 
confirmed recently.
As per the Nokia Audio Store microsite on Flipkart, Nokia may launch a pair
 of TWS earphones. The teasers, that include some photographs and videos, 
hint at various features of the upcoming audio product. Furthermore, there is 
a small quiz regarding the product which subsequently clears the air that the 
earphones may feature IPX7 rating for water resistance, and can be used 
“in rain”.
The Nokia audio product is also teased to be effective “at crowded spots”, 
which hints that they may come with active noise cancellation (ANC) feature. 
Other hints include their usage “during working out” — a sign for secure fit 
so they do not fall off while you are exercising, and “gaming” that essentially 
teases low latency.
Nokia will soon launch Bluetooth neckband earphones in India via Flipkart. 
The earphones will reportedly come with Bluetooth 5.1 support, and Qualcomm's 
aptX HD audio technology. They are also tipped to feature rapid charging that 
allows the device to deliver 9 hours of playback in 10 minutes of charging. The
 device is expected to be offered in at least three colour options, Black, Blue, 
and Golden. It is likely that both these audio products could be launched on 
the same day.
As mentioned, Nokia licensee HMD Global has also sent out media invites for a 
launch event on April 8. It is expected that the company will launch X-series and 
the G-series smartphones.This is not the first time that Flipkart will launch Nokia 
products as an exclusive partner in India, as it earlier brought Nokia air conditioners, 
Nokia PureBook X14 laptop, Nokia 65-inch 4K LED Smart Android TV, and Nokia Media 
Streamer.

Comments

Popular posts from this blog

5 CSS Tips and Tricks to Try in Your Next Project

  5 CSS Tips and Tricks to Try in Your Next Project Looking for inspiration on how to add a twist to your project design? Take a look at these 5 CSS techniques and have fun experimenting with some bold ideas! 1. Bring back the 90’s with the background-clip Have you ever wondered how to apply a gradient or a texture to the text in CSS? The good news is you can easily achieve that with the background-clip property! First, we need to apply the background color to our  <h1> , then use the value text for the  background-clip  property and set the text color to transparent. < h1 class = "wordart" > The background is clipped to this text </ h1 > h1 { background-color: #ff1493; background-image: linear-gradient(319deg, #ff1493 0%, #0000ff 37%, #ff8c00 100%); } .wordart { -webkit-background-clip: text; color: transparent; } And voilĂ , the 90’ style WordArt is ready! 2. Crazy shapes with clip-path If you like to experiment with your ...

How to Use else if in JavaScript with Examples

  How to Use else if in JavaScript with Examples The if and else-if statements are commonly used commands in the field of programming. Computer programmers learn if statements during their beginner-level courses, which makes this a very basic lesson for developers. The statement has a very similar use in JavaScript, Java and C, but we will be focusing on how to use if and else if in Javascript, in this article.    “If” is just the first conditional statement, which is followed by a series of conditions that help you make more complex decisions throughout the program. Once you have a stronghold over these conditional statements, you can start working your way through small programs.  Apart from “If” we have “else-if”, then we have “else-if else-if”, and then there’s nested-if as well. Below you can find each of these if statements explained with examples.  Using IF in JavaScript The if statement is always followed by a condition. Then it is further followed...

Building A Node.js Based CLI For Real-Time COVID-19 Vaccination Tracking

Why Build? As we already know the whole world is suffering from COVID-19 and the vaccinations are going in full swing everywhere. Finding a slot is getting tougher in our country India as we have a huge population to be vaccinated. Numerous times we have to go to CoWin site to search for a slot and slots are always full. It is pretty time-consuming and irritating. Being a developer, I thought most of the time is usually spent by us in the terminal so why can't we have a basic terminal-based app to save time. So this post will help you in two ways     Learn how to create Node.js based CLI's     Get real-time info about vaccination slots for your area. Let's begin our initial setup! Pre-requisite  – We are assuming you have installed Node.js and npm, If not you can install from  here So as a first step lets initialize our project using command npm init Enter the basic details as shown below. This will create package.json file in the folder cowinCLI. The ne...