Angular 9 – YouTube Player Component

Embedding a YouTube video into your angular application isn’t a straight forward work before angular 9.

Before angular 8.2, it needs lots of efforts to embed and YouTube video.

You need an npm plugin to do the operation. Or you might need to iframe and a URL which is sanitized.

What new in Angular 9?

Angular Team tried to reduce the complexity of building a reusable components in angular 9.

They have released lots of interesting components/Module like ClipboardModule, Google maps, YouTube player component in the angular 9.

Earlier, we have discussed about copy to clipboard CDK in our website.

In this post, we are going to discuss on how to embed a YouTube video in angular application in quick steps.

How to render a YouTube video in angular application?

Step 1: Install the YouTube package

You install the YouTube player npm package with following command at the home directory of your application.

npm install @angular/youtube-player

Step 2: Import YouTube Player modules

Import the YouTube Player modules in to your app .module.ts (or you can import in your target module)

import { YouTubePlayerModule } from "@angular/youtube-player";

...

 imports: [
    ....,
    YouTubePlayerModule,
    ...
  ],

Step 3: Add YouTube Player component in HTML

We can add YouTube player component in our target component as below with the YouTube video ID.

We can easily get any id of and YouTube video. The ID of YouTube video will present in the URL itself.

Example:

https://www.youtube.com/watch?v=GYAB4Td62zI

In this URL, GYAB4Td62zI is the id of the video.

<youtube-player 
  videoId="GYAB4Td62zI" 
  suggestedQuality="highres" 
  [height]="250" 
  [width]="500" 
  [startSeconds]="4"
  [endSeconds]="8">
</youtube-player>

Parameters details

  • [videoId]: string — YouTube Video ID to render. It’s the little hash at the end of the YouTube URL. For example, if your video is found at https://www.youtube.com/watch?v=GYAB4Td62zI, then your videoId is GYAB4Td62zI.
  • [height]: number — height of video player
  • [width]: number — width of video player
  • [startSeconds]: number — the moment when the player is supposed to start playing
  • [endSeconds]: number— the moment when the player is supposed to stop playing
  • [suggestedQuality]:— the suggested quality of the player. This can take the values 'default' , 'small''medium''large''hd720''hd1080', and'highres'
  • [showBeforeIframeApiLoads]: boolean— whether the iframe will attempt to load regardless of the status of the API on the page. Set this to true if you don’t want the onYouTubeIframeAPIReady field to be set on the global window

Step 4: Import Youtube API script in index.html

<script src="https://www.youtube.com/iframe_api"></script>

Step 5: Run the code and see the magic

Step 0: Watch the demo and code

Demo

To get latest updates you can follow or subscribe! #peace

How to outsmart peers in estimation - PERT

Most of us will do estimation as part of the job in building software.

Estimation is not just limited to the job, it’s happening in our life as well.

When your mom or spouse asks: when you’ll reach home — you’re mentioning a time based on looking into traffic on road; THAT’S THE ESTIMATE

Why does the estimation fail?

The estimation fails when there is a major difference between the actual time and estimated time.

Let’s say you are building a feature in the software.

You are estimating it to complete it in 5 days.

  • Estimate fails if it takes 10 days
  • At the same time, estimate fails if you complete in 2 days.

Why overestimate or underestimate?

An estimate should be realistic than an imaginary one.

We should hide behind overestimation or breaking the head with underestimation.

While estimating, one should consider all the internal and external factors to be considered in the part of the process.

What if I missed the deadline even after proper estimation?

Estimation is a skill that makes you feel perfect.

It like machine learning, you will keep on learning by doing multiple iterations.

But each iteration should bring the results better compared to the earlier one. 

How can I estimate better?

Yes, that’s the question we trying to discuss now.

Earlier, in one of the projects I have worked — we have experimented PERT principle to estimate our tasks.

PERT — Project Evaluation and Review Technique

I usually call it with another term – 3 point estimation, because it sounds cooler than the previous one.

Short story

PERT is an estimation technique that helps you calculate the estimate by considering the uncertainties that may happen in the tasks.

So one should bring a 3 estimation for one single task. Let’s see that in detail in the long story. 

Long story

For every task, one should prepare 3 estimates by considering all the risks and uncertainties that may occur.

And using a weighted average of that three numbers to come up with a final estimate.

Pessimistic (P) —  when everything goes wrong

Optimistic (O) — when everything goes right

Most likely (M) — common problems and difficulties — similar to life 🤔

Mostly these estimated are measured in hours or days(6 hours a day). So one should prepare 3 estimates for all the above-mentioned cases.

The program (or project) evaluation and review technique (PERT) is a statistical tool used in project management, which was designed to analyze and represent the tasks involved in completing a given project.

Wikipedia says

Process of estimation

Let’s say, I’m working on the task to build a console application to do some operations.

Now I need to go through the requirements and check the technical impediments in it and decide the workflow. And the come up with these 3 estimates like

If everything goes wrong; Pessimistic — I will complete the task in 8 hours

If everything goes right; Optimistic — I will complete the task in 3 hours

If I have some real problem; Most likely— I will complete the task in 5 hours

That’s it. They can start and continue their work in full swing.

From a project management view

I manage this project and I got three estimates for one single task.

Which one I should track now?

And how can I estimate the overall timeline of the project?

The answer is — we have formula now 🤣

Don’t scare! I do scare when I learned it first. But it’s straight forward, nothing to do with algebra or integral calculus.

The resulting PERT estimate is calculated as 

(O + 4M + P)/6

This is called a “weighted average” since the most likely estimate is weighted four times as much as the other two values. You’ll notice that the final PERT estimate is moved slightly toward either the optimistic or pessimistic value – depending on which one is furthest from the most likely.

Estimation is a skill that makes you feel perfect.

It like machine learning, you will keep on learning by doing multiple iterations.

But each iteration should bring the results better compared to the earlier one.

Try out and leave your feedback in comment section. 

Credits:

Photo by Kelly Sikkema on Unsplash