Giter VIP home page Giter VIP logo

Comments (23)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I have the same problem. Can't play or download any youtube videos, tried 
reconnecting, restarting the psp, redownloading the script ect. 

Why does this happen, is it that youtube keeps making changes?

Original comment by [email protected] on 7 Apr 2011 at 7:17

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
yep and unless you understand javascript youll have to wait or start learning 
itlike me dont ask me to coz i aint even got to javascripts yet still on html 
and css

Original comment by [email protected] on 7 Apr 2011 at 9:50

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I wish I knew Java because I use this so much.

Original comment by [email protected] on 8 Apr 2011 at 2:10

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Yeah this is also happening to me. I, dont know why because youtube was working 
on my psp yesterday and today it just stopped working. This is starting to 
annoy me because this is the third time it stopped working. I hope someone can 
fix this because i have no idea how to use javascript.

Original comment by [email protected] on 8 Apr 2011 at 2:23

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I'll take a look

Original comment by [email protected] on 8 Apr 2011 at 4:59

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Just a temporary fix but, Biscotte's Youtube 13 script works again. You can 
copy and paste it from the source right here on code.

Original comment by [email protected] on 8 Apr 2011 at 11:17

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Confirmed. Thanks Tragic. Code for those who dont wanna look at the trunk.

var YouTube = new Object();
YouTube.rev = 13;
YouTube.SearchDesc    = 
YouTube.Name      = "YouTube";
YouTube.Search  = function (keyword, page){
    var result = new Object();
    result.bypage    = 20;// modifiable
    result.start     = (page-1)*result.bypage+1;//&begin=250000
    c=GetContents('http://gdata.youtube.com/feeds/api/videos?q='+escape(keyword)+'&start-index='+result.start+'&max-results='+result.bypage+'&v=1');
    result.total     = ext("<openSearch:totalResults>");
    result.VideoInfo = new Array();
    while(p=c.indexOf("<entry>",p)+1){
        v = {attr:3};//neither IDA|npp find this string ...0=RD 1= 2=SRD 3=S
        v.id              = ext("<id>http://gdata.youtube.com/feeds/api/videos/","</id>");
        v.Title         = ext("<title type='text'>");
        v.Description   = ext("content type='text'>")+'\nUploader:'+ext("<name>");
        v.CommentCount  = ext("countHint='")*1;
        v.Tags          = ext("keywords>").replace(/,/g,"");
        v.LengthSeconds = ext("ds='")*1;
        v.RatingAvg     = ext("average='")*1;
        v.RatingCount   = ext("numRaters='")*1;
        v.MylistCount   = ext("favoriteCount='")*1;
        v.ViewCount     = ext("viewCount='")*1;
        v.ThumbnailURL  = 'http://i.ytimg.com/vi/'+v.id+'/default.jpg';
        v.SaveFilename  = v.id+".flv";//".flv" is hidden in the OSK
        v.URL             = 'YouTube.play("'+v.id+'")';
        result.VideoInfo.push(v);
    }
    result.end       = result.start-1+result.VideoInfo.length;
    return result;
}
YouTube.play    = function (id){//fixed by goppend
    c=GetContents("http://www.youtube.com/watch?v="+id);p=0;
    var tbl = unescape(ext('fmt_url_map=',';')).split(/,/);//list the available format in a array
    //PSPTube.log(tbl+"\n");//debugging!
    var url = unescape(tbl[tbl.length-1]);//take the lastest entry in the table (lowest quality)
    //PSPTube.log(url+"\n");//more debugging!
    return url.substring(url.indexOf("|")+1).replace(/\\/g,"");//format the url
}
SiteList.push(YouTube);

Original comment by [email protected] on 8 Apr 2011 at 11:46

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Thanks, works fine now. However the sudden changes makes me think that Youtube 
is doing something and might change soon.

Original comment by [email protected] on 9 Apr 2011 at 2:32

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Thanks work on psp fat 4.01 m33-2!!!!

Original comment by [email protected] on 9 Apr 2011 at 10:26

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
here is as .js file jusy replace with one in gotube folder

Original comment by [email protected] on 9 Apr 2011 at 12:06

Attachments:

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
[deleted comment]

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
I made a working version too for whatever it's worth...
and Java isn't JavaScript, they are entirely different. Well, Significantly 
different...

Original comment by [email protected] on 9 Apr 2011 at 7:33

Attachments:

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
thanks thanks

Original comment by [email protected] on 9 Apr 2011 at 7:35

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
@killspire
oops my bad. isnt Javascript similar to actionscript?
and thanks for working ver also.

Original comment by [email protected] on 10 Apr 2011 at 12:12

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
Script updated and add to my repo

Greets,

iServer

Original comment by [email protected] on 10 Apr 2011 at 7:22

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
@biscotte just wondering anyway of changing the music gotube plays as im really 
not a fan im guessin some1s a bit ofa raver but not for me or any info on how 
to change it whould be grate thnx

Original comment by [email protected] on 14 Apr 2011 at 8:14

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
i've used a "rave" song cuz ultimate used "makina" style
but you can prefer electro or trance, that your choice , in that case :
you have to open the PBP, and change the .at3 track by your own (there is lot 
of tutorial on this topic) ;)

Original comment by [email protected] on 15 Apr 2011 at 6:36

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
ok thnx 4 info ill have a look

Original comment by [email protected] on 16 Apr 2011 at 1:30

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
now , the psp can play youtube
but the video's colour all change to Black and white'
can you fix it ??
thank you

Original comment by [email protected] on 23 Apr 2011 at 8:07

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
[deleted comment]

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
but the video's colour all change to Black and white'

Original comment by [email protected] on 28 Apr 2011 at 2:32

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
thanks for the update. i use normal go tube @ pro-b4. and works fine with 
colors.

Original comment by [email protected] on 7 Jun 2011 at 3:37

from gotube.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 11, 2024
most scripts do not work whats wrong?

Original comment by [email protected] on 15 Jul 2011 at 1:02

from gotube.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.