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

Detecting The User's Color Scheme Preference With CSS

Detecting The User's Color Scheme Preference With CSS If you’re a developer, chances are that you use dark mode on your machine and code editor. If not, what are you waiting for? Join the dark side! Jokes apart, it is common nowadays to allow users to select a different theme when visiting a website. Now you can do this with CSS only, not the theme selection itself, for that you still need JS but with CSS you can now detect the user’s machine color scheme (light or dark) and display the correct colors on your website immediately. To do this we need to use the CSS variables. According to the website  Can I use , the “CSS variables” feature is available on 95% of the currently used browsers around the world. We also need to use the  prefers-color-scheme  media query, which according to  Can I use  is supported by about 90% of the currently used browsers. In this article, I will show you how to use the CSS variables and the  prefers-color-scheme  to setup...

Passwords Suck: Here Are 4 Ways We Can Fix Them

  Passwords Suck: Here Are 4 Ways We Can Fix Them With so many websites and platforms on which we set complicated passwords, remembering them is becoming  a memory challenge . Naturally, most of us forget passwords from time to time.  In 2004, Gates predicted that passwords would die out. But, in 2021, we are still using them to log into our social platforms and emails, among many other uses. There were also other criticisms regarding the level of security and protection passwords provide. Cybersecurity professionals and businesses criticize individuals for bad password choices, without noting that technologies allow them to set such passwords. However, many people continue to set weak passwords and appear to be oblivious of common best practices. Many businesses provide no upfront instructions on how to pick the passwords they require us to have. Probably, it’s because they believe we already know or can find out this information elsewhere. However, the fact th...

Organizing Data In Table: A Quick Guide

  Organizing Data In Table: A Quick Guide We can use tables to structure data in columns and rows. The table is the HTML way to lay out the data. The CSS way to create the layout on the web page is  CSS float ,  flexbox , and  CSS grid . We cover an example to understand how to create a table on the web page. You can view the HTML table example at the below codepen link: https://codepen.io/taimoorsattar/pen/NWpdwbp For example, we can create a table in HTML for customer’s grocery item bill as below: < table border = "3" cellpadding = "10" cellspacing = "0" > < caption > Grocery Items Bill </ caption > < thead > < colgroup > < col width = "60%" > < col width = "20%" > < col width = "20%" span = "1" style = "background-color:#f1f1f1;" > </ colgroup > < tr > < th align = ...