This site is developed to XHTML and CSS2 W3C standards. If you see this paragraph, your browser does not support those standards and you need to upgrade. Visit WaSP for a variety of options.

Hilfe - Login - Logout#Revorix - Nopaste - Übersicht - Neuer Post - Statistik

-Kein Titel-, erstellt von --- Thu 2nd Feb 21:29

001 
002 
003 
004 
005 
006 
007 
008 
009 
010 
011 
012 
013 
014 
015 
016 
017 
018 
019 
020 
021 
022 
023 
024 
025 
026 
027 
028 
029 
030 
031 
032 
033 
034 
035 
036 
037 
038 
039 
040 
041 
042 
043 
044 
045 
046 
047 
048 
049 
050 
051 
052 
053 
054 
055 
# coding: utf-8

# In[ ]:

import urllib2

def get_html():
    userin = raw_input(">>> ")
    #print(userin)
    response = urllib2.urlopen(userin)
    return response.read()


# In[2]:

def download(url, file_name):

    u = urllib2.urlopen(url)
    f = open(file_name, 'wb')
    meta = u.info()
    file_size = int(meta.getheaders("Content-Length")[0])
    print "Downloading: %s Bytes: %s" % (file_name, file_size)

    file_size_dl = 0
    block_sz = 8192
    while True:
        buffer = u.read(block_sz)
        if not buffer:
            break

        file_size_dl += len(buffer)
        f.write(buffer)
        status = r"%10d  [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
        status = status + chr(8)*(len(status)+1)
        print status,

    f.close()


# In[ ]:

html = get_html()
for line in html.split('\n'):
    if "__fileurl = " in line:
        video = line.split("'")[1].split("?")[0]
        
    if "<title>" in line:
        title = line.split(">")[1].split("<")[0].split(".COM")[0] + ".mp4"
    print(title)
download(video, title)


# In[10]:



Eine ergänzung zu diesem Text posten
An euch RX-Zocker da draußen, spammt die anderen nicht voll sondern postet einfach einen Link ;)
Valid XHTML 1.0! Valid CSS!
Sourcecode entliehen von pastebin.com -- Design und Funktionalitätserweiterungen vorgenommen von [The 8472]

Wenn sie diese Zeile sehen können benutzen sie vermutlich den Inernet Explorer oder einen Browser der nicht kompatibel zu den aktuellen Webstandards ist. Dies kann zu Darstellungsfehlern führen
Get Firefox!
Buggy IE