Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Code Block
languagexml
themeEclipse
titleWidget Embedding template
<iframe
	name="Cutwise Player"
	width="{MEDIA_SIZE}"
	height="{MEDIA_SIZE}"
	frameborder="0"
	sandbox="allow-same-origin allow-scripts allow-orientation-lock allow-pointer-lock allow-presentation"
	src="https://cutwise.com/widget/video/{PRODUCT_CID}?sp={SETUP_PRESET_ID}&size={MEDIA_SIZE}&autoplay={AUTOPLAY}"
	allowfullscreen
></iframe>

Example without optional parameters: 

Code Block
languagexml
themeEclipse
titleCorrect widget code example
<iframe
	name="Cutwise Player"
	width="480"
	height="480"
	frameborder="0"
	sandbox="allow-same-origin allow-scripts allow-orientation-lock allow-pointer-lock allow-presentation"
	src="https://cutwise.com/widget/video/6_T898"
	allowfullscreen
></iframe>

Live demo example: 

http://files-cdn.cutwise.com/widget/video-demo-1/index.html 

Code for this demo example:

Code Block
languagexml
themeEclipse
titleCorrect widget code example
<iframe
	name="Cutwise Player"
	width="640"
	height="640"
	frameborder="0"
	sandbox="allow-same-origin allow-scripts allow-orientation-lock allow-pointer-lock allow-presentation"
	src="https://cutwise.com/widget/video/6_T898?size=640&sp=51&autoplay=1"
	allowfullscreen
></iframe>

Parameters

Parameter nameAvailable valuesDefaultSampleDescription

PRODUCT_CID


https://cutwise.com/widget/video/6_T898

Stone Concatenated ID to embed. You can see it in cutwise diamond page URL: https://cutwise/diamond/6_T898

PRODUCT_ID included two parameters: <vendorid>_<stoneid>. If value has the symbol "/" – you need use "%2F" value, for example:

<vendorid> = 6

<stoneid> = T8/98

PRODUCT_CID = 6_T8%2F98

Link for embedding = https://cutwise.com/widget/video/6_T8%2F98

AUTOPLAY

1, 0

0

...&autoplay=1&...

This parameter specifies whether the initial video will automatically start to play when the player loads.

MEDIA_SIZE

320, 480, 640, 960

480

...&size=480&...

Size of a player block should corresponds to iframe size

GRAYSCALE1, 00...&grayscale=1&...This parameter specifies whether the videos or images will show in grayscale tone.

SETUP_PRESET_ID

integer ID

first video on diamond page

...&sp=43&...

This parameter specifes what video will be played for current PRODUCT_CID.

...