Attachments are only available to registered users.Please register using your full, real name.
0 Members and 1 Guest are viewing this topic.
MBox64 (Media Foundation version) has been updated.The TMDB API doesn't provide anymore wallpaper in full HD mode (they switched to 720p) thus forcing me to change the query that was using w1920 to w1280, sorry for the inconvenience...Note:The link to the standalone Windows 10 binary version has also been updated.
// Get wallpaperlong TMD_GetBackdrop(IN WCHAR* UsePath) { long nRet = 0; WCHAR zURL[MAX_PATH]; ClearMemory(zURL, sizeof(zURL)); //Path_Combine(zURL, L"https://image.tmdb.org/t/p/w1920/", gM.backdrop_path); Path_Combine(zURL, L"https://image.tmdb.org/t/p/w1280/", gM.backdrop_path); // 03-29-2018 the HD mode has been removed (but i can also use {original} rather than wxxxx) Path_Combine(gTMD.backdrop, UsePath, L"TMD_backdrop.jpg"); if (URLDownloadToFile(NULL, zURL, gTMD.backdrop, 0, NULL) == S_OK) { nRet = -1; } else { ClearMemory(gTMD.backdrop, sizeof(gTMD.backdrop)); } return nRet;}
Original is too big.
With "original", some can be as width as 3600 pixels, i do not need such a huge resolution, and i prefer to save the disk space.This makes sense only for the purpose of printing posters.