Showing posts with label #new. Show all posts
Showing posts with label #new. Show all posts

Tuesday, November 7, 2017

All You Need To Know About Google Home Mini

Google Home Mini
Are you planning to bring Google assistant into your Home? There are the variety of smart speakers in the market. Google has currently launched Google Home Mini. The Google Home Mini is all new smart speaker which has a better sound and great looks as compared to other smart speakers. Besides its great looks and sound system, google home mini needs lots of improvements and innovations if it wants to compete Alexa which is the virtual, voice-activated assistant in the Amazon speaker. Google home Mini is surely a very affordable smart speaker which costs only $49. 


The all-new Google Home MIni does the variety of information like controlling your videos and music, managing variety of smartphones, knowing the weather forecast and much more.  It is one of the most stylish looking speakers. It has joined Home and Home Max smart speaker, Android smartphones that have access to your google profiles. It lets you chat with the characters of Stranger Things. It has four LEDs at the top and it lights up automatically if someone speaks to it. Google is trying hard to compete with all other smart speakers like Echo Dot which is extremely a great product. with its new product. 




The Google Home Mini emphasizes smart over a speaker. It is a WiFi connected smart speaker which looks like fabric covered cushion. It comes in the variety of colors like grey, black, coral with plastic base and rubber foot. The rubber at the base helps it from sliding. Seeing all the features and specifications of the Google Home Mini, we can say that the company tried to make the replica of Amazon Echo Dot but it lacks line-out jack. Though it can play music it does not sound as good as Echo Dot. To connect with an external speaker you would need chromecast Audio. The company wanted to create a product which should be stylish, small and yet cheap. So, we are sure they have achieved what they wanted. 

Thursday, October 5, 2017

The New Apple TV Requires 25Mbps For 4K Streaming

Apple TV 4K
It’s been several years since the 4K streaming was introduced in the worldwide market. While all the leading streaming service providers such as Chromecast, Amazon Fire TV and Roku have had the 4K integration about a year ago, Apple has finally rendered support for the same with the launch of its brand new Apple TV also known as Apple TV 4K. Being the fourth generation to the Apple’s elite class streaming player lineup, there are huge expectations from this OTT streaming device. Of course, it’s the first one of the Apple TV products to offer 4K streaming and HDR display that gives a stunning visual appeal to the pictures you see on your TV.

It’s quite obvious that for streaming media content in 4K UHD, you need an exceptionally fast internet connection. Usually the 4K streaming can be attained at an average connection speed of 15-20 Mbps. But for a seamless streaming experience, Apple recommends a minimum speed of 25 Mbps for its new Apple TV 4K.

What If Your Internet Connection Speed Drops?
Apple has imposed a minimum internet connection speed of 25 Mbps for 4K UHD streaming through Apple TV 4K on all the 4K supported television sets. This means if your internet speed drops and goes below the threshold, your Apple TV will automatically switch the streaming settings to normal depending on the speed of your internet connection. All this is mentioned in the support document released by Apple quite recently.

 
How To Find 4K Videos On iTunes Store?
The 4K videos are played in the highest resolution that is currently available. While the normal HD videos support a resolution of 1920x1080, 4K videos are played in 3840x2160 thereby offering a more detailed and sharper imagery. Besides, the HDR support provides a wide gamut of colors with high luminance and vibrancy. If you have previously purchased an HD video from the iTunes Store, then it may or may not play in 4K with HDR10 imagery. But you can easily find new videos on the iTunes Store that support 4K resolution. As a matter of fact, all the movies and videos available on the iTunes Store can be played in high definition. Some videos may also support Dolby Vision and HDR10 display. When you buy or rent a movie from the iTunes Store, it is automatically played in the best resolution supported on your TV. So if your TV is 4K compatible, it will automatically play a movie in 4K resolution or the best quality that is available for that particular movie.

Child routes in Angular Js 4

Child routes in Angular 4 :
The route can have a number of child routes of their components.A route is an array of Route. Route has various types of properties to maintain route for example path , component , outlet , children. To specify child route for a parent route, we use children property. The component speific to a child route will lie in the router outlet of the component which is related to the parent route of that child route. In the given example we have created a home as parent route and about as children routes,Import the required component to be routed. Write the following line of code in the routing file.
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
<span style="font-size:16px;"><span style="font-family:arial,helvetica,sans-serif;">
import { ModuleWithProviders } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AboutComponent } from './home.component';
import { HomeComponent } from './about.component';
import { AboutUserComponent } from './about-user.component';
import { AboutSectionComponent } from './about-section.component';
const homeRoutes: Routes = [
{
path: 'home',
component: HomeComponent,
children: [
{
path: '',
component: HomeComponentn
},
{
path: ':username',
component: AboutUserComponent
}
]
}
];
 
export const homeRouting: ModuleWithProviders = RouterModule.forChild(homeRoutes);
 
</span></span>
We have created the constant home routes, which is a array of component along with their path. this constant is passed in the child router module.

Thanks