Checks to see if a video URL is embeddable. In other words: YouTube or Vimeo URL are considered as embeddable.
Plays nicely with the Video fieldtype and the embed_url modifier.
youtube: https://www.youtube.com/watch?v=s9F5fhJQo34vimeo: https://vimeo.com/22439234other: http://example.com/video.mp4
{{ youtube | is_embeddable }}{{ vimeo | is_embeddable }}{{ other | is_embeddable }}
@if (Statamic::modify($youtube)->isEmbeddable()->fetch()) ... @endif@if (Statamic::modify($vimeo)->isEmbeddable()->fetch()) ... @endif@if (Statamic::modify($other)->isEmbeddable()->fetch()) ... @endif
truetruefalse