Skip to content

Instantly share code, notes, and snippets.

@gsemino
Last active June 1, 2017 23:29
Show Gist options
  • Save gsemino/5029b884c2c76dd934789ffaf23d3073 to your computer and use it in GitHub Desktop.
Save gsemino/5029b884c2c76dd934789ffaf23d3073 to your computer and use it in GitHub Desktop.
SYNQ HTML5 video embed sample
<!DOCTYPE html>
<html>
<body>
<video width="1280" height="720" controls>
<!-- The source files used below are the mp4_720p and webm_720p output URLs provided by the SYNQ details API -->
<source src="https://multicdn.synq.fm/projects/fb/ec/fbec62099ed94d7ba7692c1234567891/derivatives/videos/3a/b5/3ab5226012e4483aa653b31234567891/mp4_720/3ab5226012e4483aa653b31234567891_mp4_720.mp4" type="video/mp4">
<source src="https://multicdn.synq.fm/projects/fb/ec/fbec62099ed94d7ba7692c1234567891/derivatives/videos/3a/b5/3ab5226012e4483aa653b31234567891/webm_720/3ab5226012e4483aa653b31234567891_webm_720.webm" type="video/webm">
Your browser does not support HTML5 video.
</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment