Legacy Event Site Embed Player Query Parameters

Last updated: January 9, 2026

This guide documents all supported query parameters for the legacy event site embed player (URLs using ?embed-view=1). These parameters allow you to customize player behavior when embedding Videosync events on your own website.

💡

For general embedding instructions, see How to embed Videosync videos to your own web page .

Query Parameters Reference

autoplay

Automatically starts playing the video when the player loads.

Usage: ?embed-view=1&autoplay=1

Default behavior: In embed mode, autoplay is disabled by default. You can override this by adding autoplay=1 to the URL.

Example:

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&autoplay=1"></iframe>
⚠️

Note: Modern browsers may block autoplay, especially if the video is not muted. For more information, see browser autoplay policies.

muted

Controls whether the player audio is muted on load.

Usage: ?embed-view=1&muted=1

Default: false (unmuted)

Values:

  • muted=1 - Player starts muted
  • muted=0 - Player starts unmuted (default)

Example:

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&muted=1"></iframe>

Tip: Combine with autoplay=1 to improve autoplay reliability in modern browsers:

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&autoplay=1&muted=1"></iframe>

start

Initiates playback at a specified time (in seconds).

Usage: ?embed-view=1&start=60

Limitations: Only works in public on-demand mode

Example:

<!-- Start playback at 1 minute (60 seconds) -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&start=60"></iframe>

<!-- Start playback at 2 minutes 30 seconds (150 seconds) -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&start=150"></iframe>

seek

Starts playing the video at a specified time (in seconds), similar to the start parameter.

Usage: ?embed-view=1&seek=60

Limitations: Only works in public on-demand mode

Example:

<!-- Begin playback at 1 minute (60 seconds) -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&seek=60"></iframe>
💡

The seek and start parameters function identically. Use whichever parameter fits your preference.

end

Stops (pauses) playback at the specified time (in seconds).

Usage: ?embed-view=1&end=300

Example:

<!-- Pause playback at 5 minutes (300 seconds) -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&end=300"></iframe>

<!-- Start at 1 minute and stop at 5 minutes -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&start=60&end=300"></iframe>

Use case: Useful for creating video clips or highlighting specific segments of your content.

loop

Enables continuous playback - the video restarts from the beginning when it reaches the end.

Usage: ?embed-view=1&loop=1

Limitations: Only works in on-demand mode

Example:

<!-- Loop the entire video -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&loop=1"></iframe>

<!-- Loop a specific segment (1 minute to 5 minutes) -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&start=60&end=300&loop=1"></iframe>

language

Selects the subtitle language for the video.

Usage: ?embed-view=1&language=en

Limitations: Only works in on-demand mode with videos that have subtitles available

Example:

<!-- Display English subtitles -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&language=en"></iframe>

<!-- Display Finnish subtitles -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&language=fi"></iframe>

Common language codes:

  • en - English
  • fi - Finnish
  • sv - Swedish
  • de - German
  • fr - French
💡

The language parameter overrides the subtitle parameter if both are present.

subtitle

Selects the subtitle language (alternative to language parameter).

Usage: ?embed-view=1&subtitle=finnish

Limitations: Only works in on-demand mode with videos that have subtitles available

Example:

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&subtitle=finnish"></iframe>
⚠️

Note: This parameter is overridden by the language parameter if both are specified. We recommend using language instead for consistency.

audio-track

Sets the audio track identifier for player analytics.

Usage: ?embed-view=1&audio-track=main

Purpose: This parameter is recorded in player analytics to track which audio track is being used. Useful for events with multiple audio streams or language options.

Example:

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&audio-track=english"></iframe>
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&audio-track=finnish"></iframe>

embed-location

Specifies where the embedded player is located for analytics tracking.

Usage: ?embed-view=1&embed-location=YourWebsite

Purpose: Records the embed location in player analytics to help you track where your embedded videos are being viewed.

Example:

<!-- Embedded on your corporate website -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&embed-location=Inderes"></iframe>

<!-- Embedded on a news site -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&embed-location=Kauppalehti"></iframe>

<!-- Embedded on a financial portal -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&embed-location=Arvopaperi"></iframe>

Value: Can be any string that helps you identify the embedding location in your analytics.

live-delay

Overrides the configured player/slides delay with a custom value (in seconds).

Usage: ?embed-view=1&live-delay=5

Purpose: Allows you to apply a specific delay during live broadcasts, overriding the default delay configured for the player.

Examples:

<!-- Set a 5-second delay -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&live-delay=5"></iframe>

<!-- Set zero delay for instantaneous slide changes -->
<iframe src="https://flik.videosync.fi/your-event?embed-view=1&live-delay=0"></iframe>

Use cases:

  • Zero delay (live-delay=0): When slides need to change instantly with no synchronization delay
  • Custom delay: To synchronize the player with external systems or specific timing requirements

Combining Multiple Parameters

You can combine multiple query parameters using the & separator:

<!-- Autoplay muted video starting at 1 minute with English subtitles and loop enabled -->
<iframe 
  src="https://flik.videosync.fi/your-event?embed-view=1&autoplay=1&muted=1&start=60&language=en&loop=1&embed-location=MyCorporateSite"
  width="100%"
  height="500"
  allowfullscreen
  frameborder="0">
</iframe>

Common Use Cases

Auto-playing Muted Video with Subtitles

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&autoplay=1&muted=1&language=en"></iframe>

Highlighting a Specific Segment

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&start=120&end=300"></iframe>

Looping a Demo or Highlight Reel

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&start=0&end=60&loop=1&autoplay=1&muted=1"></iframe>

Tracking Embeds with Analytics

<iframe src="https://flik.videosync.fi/your-event?embed-view=1&embed-location=Homepage&audio-track=main"></iframe>

Important Limitations

⚠️

Several parameters only work in specific modes:

  • Public on-demand only: start, seek
  • On-demand only: loop, language, subtitle
  • Live broadcasts: live-delay

These parameters will have no effect if used in incompatible modes (e.g., using start during a live event).

Support

If you have questions about using these query parameters or need help with embedding, contact Videosync support at support@videosync.fi.

Can't find what you're looking for?

Our AI assistant is here to help you find the information you need.

Ask Videosync AI

🤖

Hi! I'm Videosync AI, your documentation assistant. Ask me anything about the documentation!