Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save howar31/cd05b0fa855f848b6de467e29562124f to your computer and use it in GitHub Desktop.
Save howar31/cd05b0fa855f848b6de467e29562124f to your computer and use it in GitHub Desktop.
https://clyp.it/o4klokhx.mp3
https://clyp.it/y454cw4d.mp3
https://clyp.it/uzgofddb.mp3
https://clyp.it/04vp2aiu.mp3
https://clyp.it/l2zg20hc.mp3
https://clyp.it/5ykwd2to.mp3
https://clyp.it/g14xywd0.mp3
https://clyp.it/hymyjwmt.mp3
https://clyp.it/lsjm5qj0.mp3
https://clyp.it/boh1dknv.mp3
https://clyp.it/vxwcjz1f.mp3
https://clyp.it/shgtgbye.mp3
https://clyp.it/bgapzhad.mp3
https://clyp.it/roffjtai.mp3
https://clyp.it/zttkawzo.mp3
https://clyp.it/flbcaui5.mp3
https://clyp.it/sukobnew.mp3
https://clyp.it/zfrf02ga.mp3
https://clyp.it/bvnamixg.mp3
https://clyp.it/w5dp4sp4.mp3
https://clyp.it/ybutt3gh.mp3
https://clyp.it/iv20bemj.mp3
https://clyp.it/ghru03fq.mp3
https://clyp.it/xujk4h2f.mp3
https://clyp.it/oq4lmj2n.mp3
https://clyp.it/4rth35dv.mp3
https://clyp.it/5hywref1.mp3
https://clyp.it/fyruceo4.mp3
https://clyp.it/vqj0crrz.mp3
https://clyp.it/ugjkncpq.mp3
https://clyp.it/usxzcicj.mp3
https://clyp.it/bdkheui5.mp3
https://clyp.it/fyo5f4mo.mp3
https://clyp.it/ljagmx1c.mp3
https://clyp.it/secfqzkl.mp3
https://clyp.it/qj0volln.mp3
https://clyp.it/jqvh2o5x.mp3
https://clyp.it/p0uivvmb.mp3
https://clyp.it/4zdqjkwk.mp3
https://clyp.it/wa1dutdc.mp3
https://clyp.it/0irdyple.mp3
https://clyp.it/abrweqxy.mp3
https://clyp.it/4l1xolnw.mp3
https://clyp.it/tmfmz0z5.mp3
https://clyp.it/2p5hgppl.mp3
https://clyp.it/2gk3ebwl.mp3
https://clyp.it/pdsl4uou.mp3
https://clyp.it/qgugl5qd.mp3
https://clyp.it/pq2titay.mp3
https://clyp.it/b5vkb0hb.mp3
https://clyp.it/13nv2b24.mp3
https://clyp.it/30devgtp.mp3
https://clyp.it/uilnczkn.mp3
https://clyp.it/ya0e2nvn.mp3
https://clyp.it/v4duysjy.mp3
https://clyp.it/a4r5by12.mp3
https://clyp.it/cio3z550.mp3
https://clyp.it/odxcsoqj.mp3
https://clyp.it/yoqarnte.mp3
https://clyp.it/22v3yood.mp3
https://clyp.it/hbdu23li.mp3
https://clyp.it/1urxhvyt.mp3
https://clyp.it/dnnejxr4.mp3
https://clyp.it/ewyzir2g.mp3
https://clyp.it/dtvcndys.mp3
https://clyp.it/c1dbfo5l.mp3
https://clyp.it/zhkrjgcw.mp3
https://clyp.it/afr2ij1f.mp3
https://clyp.it/p1ch4amc.mp3
https://clyp.it/kr5b1eu1.mp3
https://clyp.it/wt1cmq2w.mp3
https://clyp.it/om5qvjal.mp3
https://clyp.it/wdopgze0.mp3
https://clyp.it/ibt5al5p.mp3
https://clyp.it/wwqv2htn.mp3
https://clyp.it/5ck21kyj.mp3
https://clyp.it/1qiw44sr.mp3
https://clyp.it/gvx1bhfv.mp3
https://clyp.it/bdcnwe1g.mp3
https://clyp.it/izmd02ps.mp3
https://clyp.it/giqhwgia.mp3
https://clyp.it/wtf0vzao.mp3
https://clyp.it/la3b23kf.mp3
@sivadevwiz
Copy link

Use the below code for Python Environment

# Python 3
import urllib.request

index_file = 'index.txt'

names_file = "names.txt"

folder = "Output"

with open(index_file) as file:
    list_urls = [name.rstrip() for name in file]

    print(list_urls)

with open(names_file) as file:
    list_names = [name.rstrip().split("  ")[1].replace("\"", "\'").replace("?", "") for name in file]

    print(list_names)

count = 0

for index in list_urls:
    file_name = folder + "/" + list_names[count] + ".mp3"
    urllib.request.urlretrieve(list_urls[count], file_name)
    print("Downloading File..............{}".format(file_name.strip("output/")))
    count += 1

print("All files downloaded!!")

Download the gist contents as index.txt and the comment as names.txt first.

@sivadevwiz
Copy link

Use the below code for Python Environment (It will download with correct name even if the order is changed)

import urllib.request  # Python 3

index_file = 'index.txt'

names_file = 'names.txt'

folder = ""  # Add a specific Folder if you want; Folder should be already created

# To get the list of URLs to download
with open(index_file) as file:
    list_urls = [name.rstrip() for name in file]
    print(list_urls)

# To get the list of file names of the URLs to download
with open(names_file) as file:
    list_names = [name.rstrip() for name in file]

dict_names = {}

for name in list_names:
    key, val = name.split("  ")
    dict_names[key] = val.replace("\"", "\'").replace("?", "")


for key, val in dict_names.items():
    url_match = [url for url in list_urls if key in url]
    file_name = folder + "/" + val + ".mp3"
    urllib.request.urlretrieve(url_match[0], file_name)
    print("Downloading File..............{}".format(file_name.strip("output/")))

print("All files downloaded!!")


Download the gist contents as index.txt and the comment as names.txt first.

@zrtyljhdfhnzgzergzg
Copy link

hey, how could I contact this Jalence guy??? i would so much enjoy to get some voicelines from rikers but i cannot find a way to extract and read those files....

@dyxang
Copy link

dyxang commented Jan 21, 2021

hey, how could I contact this Jalence guy??? i would so much enjoy to get some voicelines from rikers but i cannot find a way to extract and read those files....

It doesn't work,can't play it.I found some useful information
The creator of this Clyp does not have an active Pro account. Upgrade to Pro for direct MP3 file access.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment