我已經使用YouTube API管理我的視頻列表的縮略圖,但是他們的UIImage的頂部和底部都有黑條。任何人都可以幫助我解決如何在沒有這些條的情況下獲取縮略圖,甚至是更好的縮略圖嗎?YouTube視頻Feed縮略圖(無黑條)?
這是我目前使用的代碼:
GDataEntryBase *entry = [[feed entries] objectAtIndex:i];
NSArray *thumbnails = [[(GDataEntryYouTubeVideo *)entry mediaGroup] mediaThumbnails];
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[thumbnails objectAtIndex:0] URLString]]];
UIImage *thumbnail = [UIImage imageWithData:data];
感謝。