Advertisement
solodroid

Change Youtube Thumbnail Image Quality (Your Videos Channel)

Aug 4th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.69 KB | None | 0 0
  1. //The default thumbnail image :
  2. public static final String YOUTUBE_IMAGE_BACK = "/default.jpg";
  3.  
  4. //For the high quality version of the thumbnail use a url similar to this:
  5. public static final String YOUTUBE_IMAGE_BACK = "/hqdefault.jpg";
  6.  
  7. //There is also a medium quality version of the thumbnail, using a url similar to the HQ:
  8. public static final String YOUTUBE_IMAGE_BACK = "/mqdefault.jpg";
  9.  
  10. //For the standard definition version of the thumbnail, use a url similar to this:
  11. public static final String YOUTUBE_IMAGE_BACK = "/sddefault.jpg";
  12.  
  13. //For the maximum resolution version of the thumbnail use a url similar to this:
  14. public static final String YOUTUBE_IMAGE_BACK = "/maxresdefault.jpg";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement