Reputation: 637
embedded-video, and the thumbnail should work but it just returns url.
Thumbnail: {{ my_video.thumbnail }}
should return thumbnail but returns url like http://img.youtube.com/vi/PWgvGjAhvIw/maxresdefault.jpg ...
I think I set everything right. the video gets uploaded but the thumbnail is the only problem. This is their documentation, http://django-embed-video.readthedocs.org/en/v1.1.0/ if anyone can help me figure out why it won't work, thank you very much.
Upvotes: 0
Views: 60
Reputation: 142681
You have to use <img src="{{ my_video.thumbnail }}" >
in HTML and browser shows image.
Upvotes: 2