Drupal 8 Smart Image Style - Handle aspect ratio for small and long images
Problem Statement I’ve been using image styles, and heavily used “Scale and crop…
February 27, 2018
Here, we give exact response from youtube apis.
{
"kind": "youtube#videoListResponse",
"etag": "etag of video",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 1
},
"items": [
{
"kind": "youtube#video",
"etag": "etag of video",
"id": "video id",
"snippet": {
"publishedAt": "2017-08-07T10:11:04.000Z",
"channelId": "channel id",
"title": "title ",
"description": "description of video",
"thumbnails": {
"default": {
"url": "direct image url",
"width": 120,
"height": 90
},
"medium": {
"url": "direct image url",
"width": 320,
"height": 180
},
"high": {
"url": "direct image url",
"width": 480,
"height": 360
},
"standard": {
"url": "direct image url",
"width": 640,
"height": 480
}
},
"channelTitle": "Channel title",
"tags": [
"bunch of tags, if given"
],
"categoryId": "26",
"liveBroadcastContent": "none",
"defaultLanguage": "en-GB",
"localized": {
"title": "title",
"description": "description"
},
"defaultAudioLanguage": "en-GB"
},
"contentDetails": {
"duration": "PT3M9S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"projection": "rectangular"
},
"statistics": {
"viewCount": "7808",
"likeCount": "79",
"dislikeCount": "4",
"favoriteCount": "0",
"commentCount": "2"
},
"topicDetails": {
"relevantTopicIds": [
"/m/019_rr",
"/m/03glg",
"/m/019_rr",
"/m/03glg"
],
"topicCategories": [
"https://en.wikipedia.org/wiki/Lifestyle_(sociology)",
"https://en.wikipedia.org/wiki/Hobby"
]
}
}
]
}
Problem Statement I’ve been using image styles, and heavily used “Scale and crop…
Introduction We will list few interesting automation techniques with powershell…
This post will show some really awesome tricks in python. Get the power of a…
Introduction In the ReactJS project, you are having aa parent component and a…
Introduction Suppose you have a view, and you have configured your display as a…
Introduction In this post, we will see Python 3.9.x patch for FIPS enabled…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…