We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As the title says, Transcoder doesn't create thumbs of videos in portrait orientation using the code below:
{% set videoURL = "#{imageServerUrl}/reviews/#{productUrl}/#{sampleMoviesDir}/#{row.ReviewSampleMovieFileName}" %} {% set transVideoThumbUrl = craft.transcoder.getVideoThumbnailUrl(videoURL, { "width": 550, "height": 367, "timeInSecs": 2, })%} <img src="{{transVideoThumbUrl}}">
Videos in landscape orientation are fine. I can provide a link to a page that demonstrates the problem but would prefer to share the link privately.
The text was updated successfully, but these errors were encountered:
Have you tried changing the mode to crop? e.g.:
{% set transVideoThumbUrl = craft.transcoder.getVideoThumbnailUrl(videoURL, { "aspectRatio": "crop", "width": 550, "height": 367, "timeInSecs": 2, })%}
Sorry, something went wrong.
Doing that results in landscape orientation videos that previously produced thumbs no longer working too.
No branches or pull requests
Describe the bug
As the title says, Transcoder doesn't create thumbs of videos in portrait orientation using the code below:
Videos in landscape orientation are fine. I can provide a link to a page that demonstrates the problem but would prefer to share the link privately.
Versions
The text was updated successfully, but these errors were encountered: