Message from @-𝕋𝕖𝕘𝕣𝕒-

Discord ID: 545223573464416259


2019-02-13 12:36:23 UTC  

<:commie:463087263153258506>

2019-02-13 12:36:47 UTC  

Did you just insult Zerg by comparing them to communists?

2019-02-13 12:36:51 UTC  

wat

2019-02-13 12:36:55 UTC  

I feel second hand insulted

2019-02-13 12:38:14 UTC  

thats Tyranids bruh

2019-02-13 12:38:21 UTC  

Zerg are a stolen concept

2019-02-13 12:38:24 UTC  

by thieving Blizzard

2019-02-13 12:38:43 UTC  

Eww 40K

2019-02-13 12:38:55 UTC  

incidently, Protoss are also stolen

2019-02-13 12:38:59 UTC  

Unphysicsly big tonk

2019-02-13 12:39:19 UTC  

Same issue I have with mech animu

2019-02-13 12:39:49 UTC  

I wrote a script that can use Minds for infinite file storage.

2019-02-13 12:39:56 UTC  

[*throws the thick book of "Material Properties" at sci-fi writers*]

2019-02-13 12:39:56 UTC  

hehe

2019-02-13 12:40:10 UTC  

My suspension of disbelief has only so much give

2019-02-13 12:40:17 UTC  

You can dump arbitrary files on Minds if you append it to a GIF.

2019-02-13 12:40:45 UTC  

Loopholes ftw

2019-02-13 12:41:50 UTC  

> inb4 one user takes up 80% of Minds servers with gif files

2019-02-13 12:43:49 UTC  

@Undead Mockingbird what is this gist?

2019-02-13 12:44:01 UTC  

It's an M3U playlist.

2019-02-13 12:44:07 UTC  

I dumped it out from bandcamp.

2019-02-13 12:44:14 UTC  

I made a script for it.

2019-02-13 12:44:29 UTC  

is it playable on winamp now?

2019-02-13 12:44:32 UTC  

```python
import sys
import json
import os
import re

ytarg = sys.argv[1]
list = re.search('list=(.+)', ytarg)
if list != None:
ytarg = list.group(1)

cmd = "youtube-dl -J --flat-playlist " + ytarg
out = os.popen(cmd).read()
out = out.encode('utf-8')
j = json.loads(out)

fn = j["title"].encode('utf-8') + ".m3u"
fn = fn.replace('/', " ")
f = open(fn, "w")
f.write("#EXTM3U\n")
for e in j['entries']:
f.write("#EXTINF:0," + e['title'].encode('utf-8') + "\n")
f.write(e['url'] + "\n")
```

2019-02-13 12:44:50 UTC  

Go ahead and try it on Winamp. I'd like to see if it works.

2019-02-13 12:45:20 UTC  

If it doesn't, I could modify it to have links to the audio URLs directly, but they might have tokens that expire.

2019-02-13 12:45:29 UTC  

nope

2019-02-13 12:46:07 UTC  

Does that work?

2019-02-13 12:46:27 UTC  

That's a direct link to Bandcamp's CDN.

2019-02-13 12:46:47 UTC  

no. It works in browser
But not in winamp

2019-02-13 12:46:59 UTC  

Ah, that's too bad. Why can't winamp handle that?

2019-02-13 12:47:20 UTC  

I remember listening to shoutcast and such in my Win95 days.

2019-02-13 12:47:37 UTC  

Drove my internet cost through the roof.

2019-02-13 12:48:06 UTC  

The script you just posted - it's making a list of what?

2019-02-13 12:48:54 UTC  

You take a youtube playlist and make an m3u?

2019-02-13 12:49:17 UTC  

That's for bandcamp.

2019-02-13 12:49:22 UTC  

You give it the URL of an album.

2019-02-13 12:49:30 UTC  

Do you want one for YouTube?