When you send a video through Tarkle Send, your recipient gets a branded video player instead of a plain download page. You can take that same player and embed it directly into any page on your website.
Before you start
The video embed option only appears when the transfer is set to Public. If the transfer is private or password protected, the option will not appear.
How to get the embed code
Go to your Transfers list or open the transfer detail page.
Click the three-dot action menu on the video transfer.
Click Embed video.
The code is now in your clipboard.
Paste it into your site
Add a custom HTML block or embed section to your page. Paste the code. The player appears inline, fills the container width, and stays in a 16:9 ratio on all screen sizes.
What the embed looks like
<div style="border-radius:6px;overflow:hidden;width:100%;aspect-ratio:16/9;">
<iframe
src="https://yourworkspace.send.tarkle.com/embed/stream/SLUG"
style="width:100%;height:100%;border:none;"
allow="accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;"
allowfullscreen="true">
</iframe>
</div>
Replace SLUG with your actual transfer slug. Tarkle Send fills this in for you when you click Embed video. The URL uses your branded domain automatically.
Why it stays in 16:9
The outer wrapper enforces the aspect ratio so the player never collapses on load, even before the video is ready. This keeps the layout stable across browsers and device sizes.
