SKincinerate / gotube

Automatically exported from code.google.com/p/gotube
0 stars 0 forks source link

Gotube - YouTube 11 #28

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem (site>keyword>video)?
1.Youtube
2.Keyword Bobobo episode 15
3.Bobobo-bo Bo-bobo Episode 15 Part 1
4.Just an embarrassing example but none of them work.

What is the expected output? What do you see instead?
Video to play. Screen goes black and fails to show duration of video (ie. 
00.00:07.38) I hope thats clear. MS light flashes a few times and wifi light 
flashes once then just stays on.Normally if I see the time the video works but 
hasnt last day or so.

What version of the product are you using? On what operating system?
Gotube HMM 1.2 on 5.50 Gen/Promethe on a 2001 model.

Please provide any additional information below.
Thank you for working on Gotube. Psptube is stinky these days. I know you just 
updated to Youtube Js 11 but it still doesnt work on mine. Toodles~

Original issue reported on code.google.com by rina.is....@gmail.com on 4 Mar 2011 at 4:52

GoogleCodeExporter commented 8 years ago
ah alright thanks ill try it if it dont work guess ill wait

Original comment by deoxys...@gmail.com on 7 Mar 2011 at 5:59

GoogleCodeExporter commented 8 years ago
no worries as longas you only change that part you should be good to go
just make sure you dont have any extra spaces/lines if you copy and paste
gl

Original comment by mark.web...@gtempaccount.com on 7 Mar 2011 at 6:15

GoogleCodeExporter commented 8 years ago
hope it ok 2 do this but attached working youtube.js
big thnx2 gopp

Original comment by mark.web...@gtempaccount.com on 7 Mar 2011 at 6:29

Attachments:

GoogleCodeExporter commented 8 years ago
the goop... version work for me
and because it work for everyone i updated the repository with Youtube [13]
http://code.google.com/p/gotube/source/browse/trunk/biscotte/YouTube.js

Original comment by biscotte...@gmail.com on 7 Mar 2011 at 9:52

GoogleCodeExporter commented 8 years ago
sweet hope u didnt mind me posting the youtube.js for others did u want it 
deleted now?? or leave up?
also on ya frontpage about halfway down it says about another tutorial? is the 
1?
and does the dailymotion on frontpage still up2date so i should be able to 
match up what i need to find in the raw source ??
sry 2 bug ya

Original comment by mark.web...@gtempaccount.com on 7 Mar 2011 at 10:11

GoogleCodeExporter commented 8 years ago
there isn't any copyright on any gotube script so you do what you want
the daylimotion sample in the tutorial is not up to date but the on actualy in 
the repository is, but all new video from this site is MP4 HQ who lead to a 
crash , but video still savable (to be played on another player like PPA or XMB)

Original comment by biscotte...@gmail.com on 7 Mar 2011 at 10:31

GoogleCodeExporter commented 8 years ago
kk i dont wanna download from there i was tryin make a script of one already 
made so it might be easier to find the things needed in the tutorial 
but now gone back to tryin to get efukt to work

Original comment by mark.web...@gtempaccount.com on 7 Mar 2011 at 10:42

GoogleCodeExporter commented 8 years ago
@Mark
Yeah, I understand that, but the quality is noticeably worse on most of the 
videos that I've tried (not all).  Is there a way to get it to not select the 
absolute lowest quality available, like have a minimum quality limit? Biscotte?

Original comment by joshuagl...@gmail.com on 8 Mar 2011 at 6:37

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
When you get the url from youtube it's given in the form of something like 
"5|http://urltoflv/mp4 3|http://urlofflv/mp4 now the 5 and the 3 represent 
quality numbers (there is a table on wikipedia)
so what you can do is find the highest number that youtube can handle and count 
back from there. Also I wouldn't load it into a half assed table I would take 
this from the list of urls
i.e.(
var urls = unescape(ext('fmt_url_map=',';'))
int highestnumber = 8;
while (string finalurl == null)
{
if (ulrs.search(highestnumber + "|") > 0) //I believe this function returns -1 
if the value is not found
{
finalurl = ext(highestnumber+"|", ",") // get what is between 8| and the , I.E. 
the actual url
return finalurl; //get it for playing
}
else
{
highestnumber -= 1; //subtract one from the highest value and search again 
(look for a lower quality video if this quality doesn't exist
}
}
)

something to that effect... (I main in c++, and c#, not javascript D: ) I'm on 
a psp right now so if someone wants to find the lowest quality a psp can play 
I'll consider looking at the script later

Original comment by Killsp...@gmail.com on 8 Mar 2011 at 2:05

GoogleCodeExporter commented 8 years ago
http://en.wikipedia.org/wiki/YouTube#Quality_and_codecs
alright jokes on my it would appear normal youtube quality starts at 35 (the 
hell?) and the lowest quality acceptable is probably like 5

so we might have to use one giant if statement
I.E.

if (ulrs.search("35|") > 0) 
{
finalurl = ext("35|", ",");
return finalurl;
}
elseif (ulrs.search("34|") > 0) 
{
finalurl = ext("34|", ",");
return finalurl;
}
elseif (ulrs.search("34|") > 0) 
{
finalurl = ext("5|", ",");
return finalurl;
}
//etc
highestnumber -= 1; //subtract one from the highest value and search again 
(look for a lower quality video if this quality doesn't exist
}

Original comment by Killsp...@gmail.com on 8 Mar 2011 at 2:23

GoogleCodeExporter commented 8 years ago
in fact there is worth (see youtube[4] quality table : 
http://code.google.com/p/gotube/source/browse/trunk/biscotte/YouTube.js?r=60)
the fmt:5 is simply the stablest quality (even if there is YUV problem)

Original comment by biscotte...@gmail.com on 8 Mar 2011 at 4:46

GoogleCodeExporter commented 8 years ago
I have updated youtube script but it still doesn't work :S it's only problem 
with my gotube or anyone else still got problems with video playback?

Original comment by Nikol....@gmail.com on 30 Mar 2011 at 3:56

GoogleCodeExporter commented 8 years ago
Excuse me, I might sound like a total N008 in here but as an average user (No 
coder experience T_T) I can't update the newest Youtube script, won't appear on 
the updater, is it a server error or there is no Youtube script anymore?

Original comment by Axel...@gmail.com on 7 Apr 2011 at 11:43

GoogleCodeExporter commented 8 years ago
Same problem with me im using phat psp and ver 6.39 LME9 youtube vids works 
fine with me but now stuck on 00:00 plz help!

Original comment by reazonb...@gmail.com on 5 Aug 2011 at 6:56

GoogleCodeExporter commented 8 years ago
which is the newes script for youtube?can somebody link it please?

Original comment by fakepena...@gmail.com on 5 Aug 2011 at 12:11

GoogleCodeExporter commented 8 years ago
I have put up the download link in my blog here: http://goo.gl/zGdkA

Original comment by kso...@gmail.com on 27 Sep 2011 at 12:52

GoogleCodeExporter commented 8 years ago
according to showtime, the video retreiving should be like this :

var data = showtime.httpGet('http://www.youtube.com/watch?v='+id, null, 
api.headers_common).toString();
var videos = unescape(data.slice(ext('"url_encoded_fmt_stream_map": 
"url=','",'))).split(',url=');
var video_url = videos[0].slice(0, videos[0].indexOf('\\u0026quality'));

in that case, the highest quality will be returned

Original comment by biscotte...@gmail.com on 2 Oct 2011 at 7:47

GoogleCodeExporter commented 8 years ago
yo no soy un programador me encantaria poder ayudar para sacar adelante este 
projecto tan maravilloso pero no se nada de nada jaja pero confio en ustedes 
que son la elite! lo van a hacer posible para todos aquellos que tengamos la 
psp yo soy uno de ellos y desde ya les doy las gracias a ustedes espero que 
sigan adelante fuerza gente !!!
uso un traductor soy de argentina!

Original comment by germanga...@gmail.com on 19 Oct 2011 at 5:30

GoogleCodeExporter commented 8 years ago
I am not a programmer I would love to help to take forward this project so 
wonderful but not anything at all haha but I hope you who are the elite! I will 
make it possible for those who have the psp I'm one of them and from and I 
thank you I hope that force people to go ahead!
I use a translator from Argentina!

Original comment by germanga...@gmail.com on 19 Oct 2011 at 5:31

GoogleCodeExporter commented 8 years ago
Hello i have a small problem with my psp 1003. infact i can connect with 
wireless nwetwork i can use facebook and all but when i connect to youtube its 
says :THERE IS NOT ENOUGHT MEMORY: PLEASE HELP ME WHAT TO DO. I have qa 2gb 
memory card free in it..
Thanks

Original comment by sobha0...@gmail.com on 17 Jan 2012 at 7:44