SpK's View Methods - Part 1 - The 'mobile method' (and disguising as Facebook/Twitter)

Status
Not open for further replies.
Any idea how to make Firefox play YT videos using iPhone or Android user agents, because for me it doesn't work.

Best way, use Fiddler2 go to "Rules" menu => User-Agents => select IPAD (or other UA)
 
I am just interested that user is under name SPK that has he already reported about it to Google support for quick money?He always did it before post value info there.I saw his name in Google Hall of honor lol,he has arabic name or something like that 1995?Bastard schoolboy which is controlled by the big bosses?
 
Started toying around a bit with Fiddler2 and YT yesterday, but for the life of me I can't make a mobile video play on a normal browser. I noticed many had the same problem reading the thread, but none of the solutions worked for me. Tried on Firefox, Explorer, Chrome and Safari, when I use the Iphone/Ipad UA it goes to m.youtube.com, I can navigate through the site, but everytime I try to load a video, I just get the thumbnail with the play button and nothing else happens.

I know of a way to make Firefox play YT mobile videos through VLC, but that way should trigger the RTSP method and not the HTML5 one (correct me if I'm wrong).

I also read that someone suggested to click on "desktop" link in the watch page of YT mobile, the video plays that way, but I noticed that the HTTP requests are slight different than the ones posted by izSPK, and by the way wouldn't the desktop PLID not work for the mobile requests?
 
Started toying around a bit with Fiddler2 and YT yesterday, but for the life of me I can't make a mobile video play on a normal browser. I noticed many had the same problem reading the thread, but none of the solutions worked for me. Tried on Firefox, Explorer, Chrome and Safari, when I use the Iphone/Ipad UA it goes to m.youtube.com, I can navigate through the site, but everytime I try to load a video, I just get the thumbnail with the play button and nothing else happens.

I know of a way to make Firefox play YT mobile videos through VLC, but that way should trigger the RTSP method and not the HTML5 one (correct me if I'm wrong).

I also read that someone suggested to click on "desktop" link in the watch page of YT mobile, the video plays that way, but I noticed that the HTTP requests are slight different than the ones posted by izSPK, and by the way wouldn't the desktop PLID not work for the mobile requests?
I suggest you grab a smartphone and proxy it to your PC. The default Fiddler2 port is 8888, try that.
 
hey Spk how long are the views recieved from your bot reliesed on march??is there anything I need to change on it or it should work without problems now??
 
I got Spk's bot...how do I make it work???could anyone kindly show me how??
 
Well said. Programming and finding the methods can take time out of you. I learned C# the hard way and I code my bots for simple to moderately complex tasks. It feels very good when we code something that is already selling the BST over here. Put some time and you can easily learn coding. :)

These little noobs crack me up, its way to easy to get views and make a WORKING bot if you actually put your mind to it.

YouTube view sellers make things seem "so complicated" but in reality its super freaking EASY! Just learn some vb.net and play with YouTube a little you'll figure something out. (DO NOT FUCKING PM ME)

Also, here's another little tip for every1 to learn from: ever notice how learn has earn in it!!

You're saying to EARN you have to LEARN!!! It's a new topic I know (it's only been around the past 10k years)! Learn something and BANK hard on it people. That's the only way to get somewhere on BHW, School, or LIFE!

The YouTube section is a complete disgrace it's nothing but noobs asking for fking "bots" because they want to skip the entire process!

They don't realize how much work programmers (such as izSPK) puts into these bots that they make and the methods they find. Just think of how many hours izSPK could have put into finding this method he shared and little noobs who probably haven't played with it for five minutes are asking him for help! That's just shitty imo.

/rant

Just something I had to say.
 
guys stfu this is over.
Don't listen to fibs guys, this is still working with tweaks. It's just noobs that can't get it to work, and that is a good thing ;)

"Nothing is impossible, only if you quit".

These little noobs crack me up, its way to easy to get views and make a WORKING bot if you actually put your mind to it.

YouTube view sellers make things seem "so complicated" but in reality its super freaking EASY! Just learn some vb.net and play with YouTube a little you'll figure something out. (DO NOT FUCKING PM ME)

Also, here's another little tip for every1 to learn from: ever notice how learn has earn in it!!

You're saying to EARN you have to LEARN!!! It's a new topic I know (it's only been around the past 10k years)! Learn something and BANK hard on it people. That's the only way to get somewhere on BHW, School, or LIFE!

The YouTube section is a complete disgrace it's nothing but noobs asking for fking "bots" because they want to skip the entire process!

They don't realize how much work programmers (such as izSPK) puts into these bots that they make and the methods they find. Just think of how many hours izSPK could have put into finding this method he shared and little noobs who probably haven't played with it for five minutes are asking him for help! That's just shitty imo.

/rant

Just something I had to say.
Listen to this man.
 
FINE...I wanna learn coding..Don't give rat's *ss if it takes me years...NOW...since I'm noob I don't wanna bother you people about how and where...could anyone point me in the right direction??like which code should I use?in other words learn??
specially from where could I start?
 
I keep getting PM's about the plid generating and as I had some help myself with it heres the code i came up with thanks to SPK's posts and the php kindly supplied by lsmstd. :)

VB code makes a plid for you. It needs these two functions....

Code:
Public Function getmilliseconds() As String                     '----------returns time in milliseconds (as posted by SPK)
        Return (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000L) \ 10000
End Function


Private Function newBase36(ByVal intNumber As Int64) As String  '----------copy pasted from the web 
        Dim intNum As Int64
        Dim strSum As String
        Dim intCarry As Int64
        Dim intConvertBase As Int64 = 36
        strSum = ""
        intNum = intNumber
        Do
            intCarry = intNum Mod intConvertBase
            If intCarry > 9 Then
                strSum = Chr(intCarry + 87) + strSum
            Else
                strSum = intCarry & strSum
            End If
            intNum = Int(intNum / intConvertBase)
        Loop Until intNum = 0
        Return strSum
End Function

and is called like this
Code:
        Dim timemilliseconds As Double = getmilliseconds()        'get time in milliseconds
        Dim plid As String = newBase36(Convert.ToInt64(timemilliseconds))     'convert to base36 string
        Dim randomend As String = newBase36(Convert.ToInt64((7954295789457 - 5002610349452 + 1) * Rnd() + 5002610349452))   'not the best way to do a random i know!
        plid = plid + randomend         'random on the end

Hope that helps. Seems to work for me. You still need to be able to do all the httpwebrequests with the correct parameters but all that info is in the thread already.

Im not a coder by any means and this was my first time doing anything with http get's. Before attempting this all i could do was fetch a page to a string using httpwebrequest.
So I really must thank SPK for starting this thread as it gave me something to have a go at and ive learned so much since starting it!
Oh and how good is fiddler2, wish i'd known about that earlier wireshark gives me a headache lol

cheers :beer:
 
Last edited:
FINE...I wanna learn coding..Don't give rat's *ss if it takes me years...NOW...since I'm noob I don't wanna bother you people about how and where...could anyone point me in the right direction??like which code should I use?in other words learn??
specially from where could I start?

start here
http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-basic-express

and learn how to do http requests
http://msdn.microsoft.com/en-us/library/456dfw4f.aspx
http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.useragent.aspx
 
start here


and learn how to do http requests
Thanks I'll start working on it...any other stuffs that could help me understand how bot works and how do I make one??
thanks again...and sorry I'm really a newbee...I'll try my best to learn :)
 
I keep getting PM's about the plid generating and as I had some help myself with it heres the code i came up with thanks to SPK's posts and the php kindly supplied by lsmstd. :)

How's this looking? h3umrtfn1asxdd0tba63k, I'm working in C# so converting your VB is a bitch :P
 
How's this looking? h3umrtfn1asxdd0tba63k, I'm working in C# so converting your VB is a bitch :P
http://www.developerfusion.com/tools/convert/vb-to-csharp/
 
Status
Not open for further replies.
Back
Top