YouTube has been doing a lot of changes to their API guidelines in the past few months (XenRio users may know of the problems caused by this). With these new changes, they also now have an API Compliance Enforcement team. Unfortunately, this team has determined that you can not have a generic "play" button on any YouTube video links generated through their API... as it violates their branding guidelines. And if you don't follow the guidelines, they threaten to terminate your API access.
So this new version adds a customizable icon field for services. If you leave it blank, you will continue to use the default generic play fa-play-circle button. However, if YouTube ever comes knocking on your door about it, you can customize this field with fab fa-youtube and the hover will be replaced with a YouTube brand asset. Not all services have font-awesome branding however...
Available font-awesome icons:
Code:
fab fa-dailymotion
fab fa-flickr
fab fa-mixer
fab fa-soundcloud
fab fa-twitch
fab fa-vimeo
fab fa-youtube
If you decide to customize these icons, I recommended adding this code to your EXTRA.css
Code:
.fa-dailymotion { color: #00AAFF !important; }
.fa-flickr { color: #FFFFFF !important; }
.fa-mixer { color:#78D3FF !important; }
.fa-soundcloud { color: #FE5000 !important; }
.fa-twitch { color: #9146FF !important; }
.fa-vimeo { color: #1AB7EA !important; }
.fa-youtube { color: #FFFFFF !important; }
- Support for Mixer has also been added.