I don't know if this is really a suggestion or curiosity or even awareness. After publishing our recording from proclaim, i attempted to embed the video into our websites media player. It does require an embed link as opposed to an URL. However, it was popping up an error stating the embed code was invalid. Which i thought was odd, so i copied some embed codes from know YouTube videos that have worked with our web media player and compared them to the embed code i received from the published proclaim recording. The two biggest difference were the "<div>" commands before and after the video reference (which may or may not make a difference) but the other one was the lack of a "</iframe>" command to close off the video link portion. After altering the embed code with this closing command the embed url was valid and accepted into our web media player.
Again, not sure how this plays out in the scheme of help/awareness/suggestion. It could just be our media player but with a little code tweaking it does work. We use cloversites.com in case it matters.
Below is the actual sample i was messing around with. (No longer up on our Faithlife church group, it just a test)
CODE FROM the embed section after hitting PUBLISH:
<div style="position:relative;width:600px;max-width:100%;padding-bottom:56.25%">
<iframe frameborder="0" scrolling="no" allowfullscreen src="https://soundfaith.com/embed/sermons/127525" style="position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%" />
</div>
CODE ACCEPTED has valid embed url for our media player
<iframe frameborder="0" scrolling="no" allowfullscreen src="https://soundfaith.com/embed/sermons/127525" style="position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%"></iframe>
The <div style.../div> is automatically removed by our web media player so that part doesn't matter with the code but the closing the iframe command makes a big difference.
Thanks for reading.