Hi klpiazz,
Hooks are used to make theme customizable easily through child theme. You can override any section of this theme through hook.
At header.php there are 5 hooks used. You can use appropriate hook to add featured video widget in header.
For example, if you like it to appear after menu item and before site title/description section you can use blog_way_plus_after_header hook.
If you like to add it on the banner/site title section you can use blog_way_plus_site_branding hook.
If you like to add it before content section starts you can use blog_way_plus_before_content hook.
There are 2 ways to customize through hooks.
1. You can remove theme action and add your own action.
2. You can copy function used by hook in functions.php of child theme and add/remove changes you need.
Hope you can override theme now.