The Widget Connector macro was not working for me in Confluence Server 6.9, so I made this YouTube Video user macro. It will allow you to align the video window left, center, or right on your Confluence page.
1. Put it under the Categories of "Media" and "Visuals & Images"
2. Made an icon for the macro based upon YouTube's guidelines here:
https://www.youtube.com/intl/en-GB/yt/about/brand-resources/#logos-icons-colors
...coming up with:
3. Set "Definition of User Macro" as "Unrendered"
4. Set the actual macro template to:
## Macro title: YouTube Video
## Macro has a body: N
## Body processing: N/A
## Output: YouTube Video
##
## Developed by: Tim Braxton
## Date created: 05/24/2018
## Installed by: Tim Braxton
## Use this macro to insert a YouTube video.
## @Param VideoCode:title=YouTube Video
Code|type=string|default=kNz82r5nyUw|required=true|desc=Enter the short
code after the "watch?v=" and before any other "?" or "&" in your Youtube
link.
## @Param VidPosition:title=Video Window
Alignment|type=enum|enumValues=left,center,
right|default=center|required=true|desc=Select how you would like the
video window aligned on your page.
## @Param Width:title=Width|type=int|default=560|required=true|desc=Width
## @Param Height:
title=Height|type=int|default=315|required=true|desc=Height
<style>
.leftvideo {
display:block;
margin-right:auto;
margin-top:5px;
}
.centervideo {
display:block;
margin-left:auto;
margin-right:auto;
margin-top:5px;
}
.rightvideo {
display:block;
margin-left:auto;
margin-top:5px;
}
</style>
<iframe class="${paramVidPosition}video" width="$paramWidth"
height="$paramHeight" src="https://www.youtube.com/embed/${paramVideoCode}?
rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media"
allowfullscreen>
</iframe>
Nice one - thanks!
Thanks for sharing!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @[deleted] again for sharing
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome @[deleted]!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for sharing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.