![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on Ultimate PSPTube v1.6 just got released within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Hey guys! Just dropping by... JK108 has released an update for Ultimate PSPTube. It now has support for a grand-slamming ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
![]() |
![]() Hey guys! Just dropping by... JK108 has released an update for Ultimate PSPTube. It now has support for a grand-slamming total of 26 video streaming sites! Time to get busy; choose your poison, guys! Changelog: * Yuvutu is now included * xHamster is now included * Fixed a bug in YouTube where the thumbnail and title would display incorrectly for some results * Fixed the VBox7 script so the videos now work again * Made a few changes to how the description text is handled Current list of sites supported: Spoiler for current list of sites supported:
Download: Ultimate PSPTube v1.6 |
|
|
|
|
#4 |
![]() |
Great app! I still can't get it to save YouTube vids to my playlist though. It seems like it's adding them, but when I go to my Playlist, it's empty
any ideas on this?I would also love to see the ability for it to link to your favorites on Youtube. Or the possibility of reading/leaving comments although I doubt that will ever happen. :P |
|
|
|
|
#6 |
![]() |
Does this homebrew work on CF 3.90M33-3?
Sorry, it's been a loooong while since I've been here..
__________________
[center] [COLOR="DarkOrange"][SIZE="1"]Custom Firmware[/SIZE] [COLOR="Magenta"][SIZE="3"]3.90 M33-3 [/SIZE][/COLOR][/COLOR] [SIZE="1"][B]PSN[/B][/SIZE][SIZE="3"] [U]mattchewedu[/U][/SIZE] [SIZE="1"]Mainly play COD4[/SIZE][/center] |
|
|
|
|
#10 |
![]() |
Thanks, it does. I'm surprised it still works on such an old firmware
__________________
[center] [COLOR="DarkOrange"][SIZE="1"]Custom Firmware[/SIZE] [COLOR="Magenta"][SIZE="3"]3.90 M33-3 [/SIZE][/COLOR][/COLOR] [SIZE="1"][B]PSN[/B][/SIZE][SIZE="3"] [U]mattchewedu[/U][/SIZE] [SIZE="1"]Mainly play COD4[/SIZE][/center] |
|
|
|
|
#11 |
|
To JK108:
On the YouTube script, try using the official GoogleData API. It is much more faster and takes up less code plus no need for parsing a full webpage. I have done it myself and if you want to have a look you can send me a message. |
|
|
|
|
|
#13 |
|
I already looked at the GoogleData API and it's results differ from the results on the actual YouTube site and they would also not be updated with new videos as quickly. YouTube is fast enough anyway lol. Pornhub videos have stopped working because the site changed a little and the fixed script will be in the next release.
|
|
|
|
|
|
#15 | |
|
Quote:
BTW, results differ because the actual YouTube search page shows featured videos (sometimes they're not even relevant to what you searched) Advantages of my script is that it parses faster and shorter code for faster loading. Also there's no need to update when the YouTube site changes. Feel free to try out my script ![]() Code:
/* YouTube.js by roflmao456; No HQ, it's really laggy :P */
function YouTube_CheckURL(url,option){return url.match("http://youtube.com/watch")=="http://youtube.com/watch";}
function YouTube_GetURL(url,option){
var id=url.match(/http:\/\/youtube\.com\/watch\?v=(.*)/)[1];
return "http://youtube.com/get_video?video_id="+id+"&t="+GetContents("http://youtube.com/api2_rest?method=youtube.videos.get_video_token&video_id="+id).match(/<t>(.*)<\/t>/)[1];
}
function YouTube_Search(Keyword,sIndex,Length,option){
var result={keyword:Keyword,VideoInfo:[],start:(((sIndex-1)/10)*10)+1,end:0,total:-1};
eval("var api="+GetContents("http://gdata.youtube.com/feeds/api/videos?q="+escape(Keyword)+"&start-index="+result.start+"&max-results=10&alt=json"));
result.total=parseInt(api.feed.openSearch$totalResults.$t);
for(i in api.feed.entry){
var entry=api.feed.entry[i];
for(x in entry.media$group.media$thumbnail)var thumb=entry.media$group.media$thumbnail[x].url;
result.VideoInfo.push({URL:"http://youtube.com/watch?v="+entry.id.$t.substr(entry.id.$t.lastIndexOf("/")+1),ThumbnailURL:thumb.substr(0,thumb.lastIndexOf("/"))+"/default.jpg",Title:entry.media$group.media$title.$t,Description:entry.media$group.media$description.$t,ViewCount:parseInt(entry.yt$statistics.viewCount),LengthSeconds:parseInt(entry.media$group.yt$duration.seconds),SaveFilename:entry.media$group.media$title.$t+".flv",attr:7});
}
result.VideoInfo.length?result.end=result.start+(result.VideoInfo.length-1):result.total=0;
if(result.VideoInfo.length!=10&&result.start!=1)result.total=result.end;
return result;
}
SiteList.push({Name:"YouTube",Description:"YouTube",SearchDesc:"YouTube Video Search",SearchOSKMode:1,CheckURL:YouTube_CheckURL,GetURL:YouTube_GetURL,Search:YouTube_Search});
Code:
/* site_man.js by roflmao456 [beta] */
function CallGate_GetSiteList(){var s=[];for(i in order)for(x in SiteList)if(order[i]==SiteList[x].Name){if(SiteList[x].Name.charAt(0)=="P")SiteList[x].Name=""+SiteList[x].Name;s[i]=SiteList[x];};return s;}
function CallGate_VideoURLResolver(url,option){for(i in SiteList)if(SiteList[i].CheckURL(url,option))return SiteList[i].GetURL(url,option);}
function CallGate_SearchSite(Site,Keyword,SIndex,Length,option){for(i in SiteList)if(SiteList[i].Name==Site)return SiteList[i].Search(Keyword,SIndex,Length,option)}
function splitTo2Lines(text,line_length){var pos=text.indexOf("\n");if((pos==-1||pos>line_length)&&text.length>line_length)if((pos=text.lastIndexOf(" ",line_length))!=-1)text=text.substr(0,pos)+"\n"+text.substr(pos+1,text.length);return text;}
function TimestringToSeconds(timestring){var pos=timestring.indexOf(":");return parseInt(timestring.substr(0,pos)*60)+parseInt(timestring.substr(pos+1));}
function ToFilename(text){return text.substr(0,text.lastIndexOf("/")+1)+".flv"}
function ImproveText(text){return text.replace(/\<a href\=\"(.*?)\"\>(.*?)\<\/a\>/gi,RegExp.$2)}
Last edited by roflmao456; 01-05-2009 at 07:37 PM.. |
||
|
|
|
|
#17 |
![]() Pro Hacker
|
Yes the scripts needs an update but no one working on this.
![]() Anyway i will lock this thread because it is too old.
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
|
|
|
![]() |
| Tags |
| psptube , released , ultimate , v16 |
| Thread Tools | |
|
|