Progressive Trance / Vocal Trance

MNK99

Well-Known Member
Messages
5,356
Not really trance at all.
 
Last edited:

Shadow

Moderator
Messages
383
Cmon guys! You are missing someone! :D:D:D:D

Gunther - Ding Dong Song Gunther Video (You Touch My Tralala)

GUNTHER - I'M NOT JUSTIN BIEBER B**CH

Gunther - No Pantalones
 

MNK99

Well-Known Member
Messages
5,356
@TubZy, Summer? I forgot In AMERICA/ much of the rest of the world, there are actually seasons.
I think it's Spring in Toronto... and near spring like in Calgary (so not freezing). Basement is good, I keep everything 16 or 17 degrees, when hot bring down to 14 (celsius).
 

MNK99

Well-Known Member
Messages
5,356
Why do I only listen to music that makes me sad or crazy/enraged!!??
 

MNK99

Well-Known Member
Messages
5,356
Justin Bieber 4 life son
I remember when he started from the bottom and played that kid in Degrassi.

She's my favorite lesbian rapper, her and Ellen.

Maybe that was some other feminine legend from Toronto, I can't recall, he may have been named after a coffee cake.

In any case I can't get no sleep.


 

MNK99

Well-Known Member
Messages
5,356
Me too bro.
Honestly rap, comedy, and trance without that I'd probably be even more of a menace and or completely crazy. And working out.

I can't stand the radio play, makes me irate. I listen to Trance when I study, Rap before I Start my day or when I'm scheming.
 

MNK99

Well-Known Member
Messages
5,356
Armand is awesome too! Nice tracks @tanedout.
 

MNK99

Well-Known Member
Messages
5,356
Is there a script or some program I can run, to automatically take the list of songs; from page 1, and then convert them into MP3 (320kbps)?
I know there's youtube-to-mp3... but just wondering. Ain't nobody got time to convert them 1-by-1.
I mean for backup, of already purchased music.
@barbaar.
 

barbaar

Well-Known Member
Messages
807
Is there a script or some program I can run, to automatically take the list of songs; from page 1, and then convert them into MP3 (320kbps)?
I know there's youtube-to-mp3... but just wondering. Ain't nobody got time to convert them 1-by-1.
I mean for backup, of already purchased music.
@barbaar.

Can you run python 3? Dependencies are beautifulsoup and pytube.

Python:
from bs4 import BeautifulSoup
from pytube import YouTube
from itertools import chain
import re
import os

# Extracts youtube links from a given html file
def extract_youtube_links(filename):
    # Import and parse a html page
    soup = BeautifulSoup(open(filename), 'html.parser')

    # Find and extract all direct youtube links
    youtubelinks = [a.get('href') for a in soup.findAll('a', href=True) if bool(re.search('youtube', a.get('href')))]

    # Find all embedded youtube videos and extract their links
    embeddedyoutube = [iframe.get('src') for iframe in soup.findAll('iframe', src=True) if bool(re.search('youtube', iframe.get('src')))]

    # Convert embedded links to 'watch' type links
    embeddedlinks = []
    for link in embeddedyoutube:
        id_search = re.search('https:\/\/www\.youtube\.com\/embed\/(.*)\?', link)
        if id_search:
            embeddedlinks.append('https://www.youtube.com/watch?v={}'.format(id_search.group(1)))

    # Concatenate embedded and normal youtube links into a single list
    return youtubelinks + embeddedlinks


# Extract youtube links from all the files in the folder 'pages'
pagedir = 'pages'
files = [f for f in os.listdir(pagedir) if os.path.isfile(os.path.join(pagedir, f))]
youtubelinks = list(chain.from_iterable([extract_youtube_links('{}/{}'.format(pagedir, file)) for file in files]))

# Download the best possible quality audio from youtube for all the collected links
for i, link in enumerate(youtubelinks):
    yt = YouTube(link)
    print('Downloading [{}/{}]: {} {}'.format(i, len(youtubelinks), link, yt.title))
    yt.streams.filter(only_audio=True).order_by('abr').first().download()

The script expects a folder called 'pages' in which there are html files of the forum pages you want to get the youtube links from. I don't have time to automate logins to hackstasis so you'll have to do that manually. It should work for any webpage containing youtube links or embedded videos.

Might be a pain to setup if you're not a programming nerd but I can help you if you want :)
 

MNK99

Well-Known Member
Messages
5,356
Bro, thanks a lot, you're a smart kid no doubt (slightly a kid compared to me age wise.)... but, I am not exactly sure what all that stuff is.
I've done a lot of random things kind of like this too, but not recently, I can check some tutorials or use this batch installer. THAT may work...
Thanks for that links.txt document man! This way I can be calm on my trip, and play some nice music, not just rap (increases hostility and "off-standish-ness").
 

MNK99

Well-Known Member
Messages
5,356
Just download the downloader, or should I get the extractor?
For: rg3/youtube-dl
 

MNK99

Well-Known Member
Messages
5,356
Mac.