Forked from junaidkbr/youtube-video-thumbnail.liquid
Last active
January 25, 2023 14:21
-
-
Save loughlincodes/19cef9bda666d0dfea1d5fe586aa2ec2 to your computer and use it in GitHub Desktop.
Get Youtube video thumbnail from Youtube URL in Shopify Liquid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign video_url = 'https://www.youtube.com/watch?v=R5jIoLnL_nE' %} | |
{% assign thumbnail_url = '' %} | |
{% assign video_id = video_url | split: '/' | last %} | |
{% assign video_id = video_id | split: '?' | last %} | |
{% assign video_id = video_id | split: 'v=' | last %} | |
{% if video_id != blank %} | |
{% assign thumbnail_url = 'http://img.youtube.com/vi/' | append: video_id | append: '/maxresdefault.jpg' %} | |
{% endif %} | |
{{ thumbnail_url }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment