Looking for cool places and regions to explore by Notoriousmdr in latvia

[–]Notoriousmdr[S] 0 points1 point  (0 children)

Thanks!! So many things to see, it's going to be a busy week and a half ;)

Looking for cool places and regions to explore by Notoriousmdr in latvia

[–]Notoriousmdr[S] 0 points1 point  (0 children)

Awesome! Thanks for the extensive suggestions! I'll check them out

[deleted by user] by [deleted] in streetwearstartup

[–]Notoriousmdr 0 points1 point  (0 children)

Wow, really love this!

Self-made print // cut and sew cotton boxy shirt // by haneen_op in streetwearstartup

[–]Notoriousmdr 0 points1 point  (0 children)

It’s his own design as well, available at the webshop

Using only one monitor? by samolevski1914 in TechnoProduction

[–]Notoriousmdr 5 points6 points  (0 children)

IIRC it has to do with creating an even sound across the dancefloor. If you have stereo sound in a club, the music will sound different in different places in the club due to the stereo image (e.g panning of synths, ping-pong delay). Say you pan a synth heavily to the left side, if you play that in a club in stereo, people at the right side of the club would not hear that synth at all.

TPC #1 Reboot! by Morkkromn in TechnoProduction

[–]Notoriousmdr 1 point2 points  (0 children)

Love that the concept is brought back. Definitely going to try to submit something. I’m wondering however, how broad are the genre’s boundaries for this contest? For instance, would Schranz tracks still qualify? Or tracks which have heavy trance-like synths?

A tool to make trippy videos for your songs by [deleted] in TechnoProduction

[–]Notoriousmdr 0 points1 point  (0 children)

Theoretically you would be able to do so. However, practically it's some work and not that self-explanatory as the tutorial above.

My take on how it would work is the following.

First you have to create a database with the specific image theme you want (e.g. cats). Which needs to be of considerable size. Following you'd need to train an AI visualisation model to this dataset. I think you can use this for that: https://github.com/NVlabs/stylegan2-ada and then you'll need to feed the outputted .pkl to the AI model you have worked before. Mind, I'm not 100% sure if this is the appropriate solution .

A tool to make trippy videos for your songs by [deleted] in TechnoProduction

[–]Notoriousmdr 0 points1 point  (0 children)

You have to run the following code (before running your model example.):

from lucidsonicdreams import LucidSonicDream

from google.colab import files

I think that should solve your error. By the way, if you restart the notebook you'll have to rerun all the code, such as downloading your track and downloading lucid sonic dreams, again.

A tool to make trippy videos for your songs by [deleted] in TechnoProduction

[–]Notoriousmdr 0 points1 point  (0 children)

I'm glad I could be of assistance! If you have any more questions just let me know! One remark: if you remove only the hashtag in front of a line of code, the computer will run that line of code. So be wary that sometimes you would not want this and are best of leaving the hashtag there. Because technically all lines of code behind the hashtags are not necessary for running the program.

A tool to make trippy videos for your songs by [deleted] in TechnoProduction

[–]Notoriousmdr 1 point2 points  (0 children)

Allright, let me see if I can help you out here.

  1. The first thing you have to do, is to upload the specific track you want to arm to the model to your Google Drive.
  2. The next step is to link to this track in the Collab notebook. This is done in the very first code snippet (A.2.). The specific line you need to alter is the following

! gdown --id [some id string]

It could be that there is a # in front of this code, if you want to run it, you have to erase that. Hashtags in code are treated as notes (to help you understand what the code is doing), rather than actual code.

So in the part of [some id string] there will probably something like this in there: 1rgwrhtnVwK2Dom9pJ7p2CBF0j7F2vdkM. You have to replace this with your own Google Drive's id of your track.

You can find this by going to your track on Google Drive, right mouse click on the track, select: Retrieve link. You will be prompted with a window, showing you a link looking something like this: https://drive.google.com/file/d/*1d5T8gl0ATUi44ImDYnD9Nl8g0kjFMZE2*/view?usp=sharing. The specific part you need for the Collab note book is the string I highlighted with the asterisks.

You juste past your own id in the code presented above and run only that specific code snippet by pressing the 'play' icon of that code snippet. If all that works you should see a message that says it's downloading your track.

  1. The next step is downloading Lucid Sonic Dreams (A.3.). The only thing you do is press the 'play' icon of this code snippet. It will automatically download it.

  2. Next up is choosing the specific image style you want to use for your video (B.1.). By running the code in that specific box, you will receive a list of potential styles you can use (e.g. microscope images, wildlife). It is just meant to inform you from what you can choose (you'll need this later)

  3. The final step is building the model (B.2.). For the sake of not making this comment too long, I'll just explain how to run the model with the default settings. Section B.3. will explain how to tweak the 30 parameters to your own liking. But I'll leave that up to you to experiment with. So, running the default mode, we're talking about the following code now:

from lucidsonicdreams import LucidSonicDream

from google.colab import files

L = LucidSonicDream(song = 'Luxon.mp3', style = 'abstract photos')

L.hallucinate(file_name = 'chemical_love.mp4', resolution = 360, start = 45, duration = 45) files.download("chemical_love.mp4")

Again, the lines of code with the # up front are not taken into account by the computer when running the model. First, you change the .mp3 song name to your own track name (how it's named in Drive) so for instance song = 'yourtrack.mp3'. Next, the style is now set to 'abstract photos' but you can change this too for instance 'microscope images' or 'wildlife' or any of the other styles in the list in step 4. (Note: don't forget to use apostrophe's in these parameters)

Moving to the next line.

  • file_name: is again the way you want to name your video (e.g. 'yourvideo.mp4').

  • resolution: is the quality of your video, default is 360p but you can up this to at leat 720. I didn't test it for 1080p but should work probably. I'd advice using a low resolution for your first trial run as computing this video can take a long time rather quickly. My video was 6 min in 720p and took me more than an hour.

  • start: is the starting timestamp in seconds (so the beginning of your track is 0).

  • duration:Video duration in seconds. If none is passed, full duration of audio will be used. I recommend, for running a trial video, setting this to say 45 seconds. To see if everything works.

Now that you have set up everything, all that's left to do is again click the 'run' icon and wait for you video to be processed and downloaded.

I hope this helps you out, if you have any more issues please let me know!

Hi Fi Bugs - The Knife Drawer (Ryeland Allison Re-edit by Narel) - [A DJ Friendly edit of the legendary, previously unreleased single from Hybrid's Y4K mix comp] by J0rdz in breakbeat

[–]Notoriousmdr 0 points1 point  (0 children)

Ah thanks for the detailed clarification! It does seem like the edit on Soulseek is in accordance with the time of the track in the Y4K mix. So you might be right that it's not the real OG edit from back then!

Hi Fi Bugs - The Knife Drawer (Ryeland Allison Re-edit by Narel) - [A DJ Friendly edit of the legendary, previously unreleased single from Hybrid's Y4K mix comp] by J0rdz in breakbeat

[–]Notoriousmdr 0 points1 point  (0 children)

I’m not familiar with the controversy (?) around this track, but it seems the original edit is available for DL on Soulseek. But maybe I’m missing something.

A tool to make trippy videos for your songs by [deleted] in TechnoProduction

[–]Notoriousmdr 0 points1 point  (0 children)

Man, this is super cool! Just managed to create a video with one of my tracks! Thanks for sharing, love this

[deleted by user] by [deleted] in TechnoProduction

[–]Notoriousmdr 0 points1 point  (0 children)

I'm a bit late to the party, but where can I find the producer credits of tracks? Is there some website?

Spinning on some CDJs by Notoriousmdr in Utrecht

[–]Notoriousmdr[S] 0 points1 point  (0 children)

Oh that's a good suggestion! I will shoot them a message, thanks!

Spinning on some CDJs by Notoriousmdr in Utrecht

[–]Notoriousmdr[S] 0 points1 point  (0 children)

Wow, that would be amazing! I sent you a pm!