Create a follow link for Bandcamp and an auto YouTube subscribe link URL
Bandcamp followers and YouTube subscribers are important ways to promote your music and future content. Here are two easy ways to setup link URL's for both Bandcamp and YouTube.
YouTube auto subscribe link URL
Figure out your YouTube Channel URL
Understand your channel URLs
https://support.google.com/youtube/answer/6180214
Add the following to the end of the URL
?sub_confirmation=1
Example
https://www.youtube.com/channel/UCzsCUpYcv5JYp2s114c1Xkg?sub_confirmation=1
Bandcamp Follow Link
Figure out your Bandcamp URL
(If you already have a Bandcamp account you can copy the links from the guide)
Add the following to the end of the URL.
follow_me
Example
https://afteraudio.bandcamp.com/follow_me
And hey, if this helps out go ahead and Follow and Subscribe to my Bandcamp and YouTube channel. Thanks!
Using Reapers MIDI input FX to help create vocal guide tracks in the key of your song
Fix Small VST Window in Reaper
Small plugin window in Reaper
To increase the VST plugin windows in Reaper change the following in Windows:
Go to "C:\Program Files\REAPER (x64)\reaper.exe". (for Reaper 64-bit installs)
Right click reaper.exe and select Properties.
Select the Compatibility tab.
Select the "Change high DPI settings" button.
Under "High DPI scaling override" check the box for "Override high DPI scaling behavior".
Change Scaling performed by to "System (Enhanced)" or "System".
Reopen Reaper and check out the easier to read VST plugin window size.
Setup OBS as a virtual camera for video conferencing
I recently setup OBS as a virtual camera and used it as my source for a video call. It's a simple and easy process.
Create a music video with a still image that can be uploaded to YouTube or other social media sites (FFMPEG,Powershell)
Check out the AfterAudio YouTube Channel to see the final results. All of my album playlists used this process to create YouTube videos from the master .wav files and the album cover file.
Okay, just to let you know, this post gets pretty technical.
I've been looking for a way to create a simple music video that has a still image of my album cover so I can upload it to YouTube (or your favorite social media site). I use Distrokid and they are amazing for automating the process of uploading my music to many of the online stores. It's a simple and easy process.
The one problem that I found is that YouTube creates a video that I have no control of. The channel name is the dreaded "Various Artists - Topic".
The description of the video is
Provided to YouTube by DistroKid
Song Name · Artist Name
Album Name
℗ Record Label
Released on: yyyy-mm-dd
Auto-generated by YouTube.
You can't update the video title or description to include your information. I researched this for several months and could not find anything about how to fix this.
So I said screw this! I'll figure out how to do it myself and upload the videos to my own YouTube channel.
I'm a programmer by day, so I looked into finding a way to code the video creation process so it could be automated.
I ended up finding FFMPEG a tool that can be installed. To download and install it just search for the latest instructions. (I used the wikihow link instructions)
google.com/search?q=ffmpeg+windows
Once installed you can run a command using a source audio file and a source picture file fullpath to create a video file. I noticed that the default codec setting did not encode the audio with the best compression. I ended up finding YouTube's suggested settings for video files.
Recommended audio bitrates for uploads
Stereo 384 kbps
So I ended up using the following line to create the video (you will need to manually enter the input files)
ffmpeg -loop 1 -i "full path to the image file" -i "full path to the audio file" -tune stillimage -shortest -b:a 384k C:\Users\$user\Desktop\$name.mp4
Now I could have stopped here, but I wanted to automate this more, so I ended up using Windows Powershell.
Here are my final scripts that can be run in powershell ise or powershell. The first one will process a single video from a single audio and album cover file. The second one will process videos for an entire folder of audio files with a single album cover file.
Single Video File Script
#google.com/search?q=ffmpeg+windows
#Run as Admin
#You may need to set the execution policy in Windows to run the script
#Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine
start "https://afteraudio.com"
$user = $env:UserName
$image = read-host "Enter the fullpath to the IMAGE file"
$audio = read-host "Enter the fullpath to the AUDIO file"
$name = read-host "Enter the NAME of the output video file"
ffmpeg -loop 1 -i $image -i $audio -tune stillimage -shortest -b:a 384k C:\Users\$user\Desktop\$name.mp4
Full Album Video Files Script
##google.com/search?q=ffmpeg+windows
#Run as Admin
#You may need to set the execution policy in Windows to run the script
#Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine
start "https://afteraudio.com"
$user = $env:UserName
$date = get-date -Format "MM-dd-yyyy-hhmm"
$image = read-host "Enter the fullpath to the IMAGE file"
$audio = read-host "Enter the fullpath to the folder that contains all the AUDIO files"
$audio = $audio -replace '"',''
$base = (get-item $audio).basename
$folder = "$base-$date"
$album = get-childitem -Path "$audio" -Force -recurse
New-Item -Path "C:\Users\$user\Desktop" -Name "$folder" -ItemType "directory"
$album | % {
$song = $_.fullname
$name = $_.basename
ffmpeg -loop 1 -i $image -i $song -tune stillimage -shortest -b:a 384k C:\Users\$user\Desktop\$folder\$name.mp4
$song
$name
}
If this helps please purchase or stream some music.
Add VST2 plugins to your OBS audio input capture
Reason Key Commands
https://help.reasonstudios.com/hc/en-us/articles/360002216673-Reason-Documentation-and-Help-Files
Reason (Latest Version) Key Commands
Track Parameter Automation in Reason
How do you automate in Reason? I found a few ways to setup parameter automation in Reason which are easy to setup.
The simplest way to automate a parameter is to right click the control and select "Edit Automation". A new automation lane is created for that parameter.
But what if you want to get a list of all parameters that can be automated on a device? To do this you need to select the device and then select the track parameter automation drop down located at the top of the track list.
Reason Documentation
https://help.reasonstudios.com/hc/en-us/articles/360002216673-Reason-Documentation-and-Help-Files
Reason (Latest Version) Operation Manual
Lane details > Creating/adding lanes > Creating/adding parameter automation lanes
Note and Automation Editing > Automation editing
https://www.soundonsound.com/techniques/reason-automation-situation
https://ask.audio/articles/6-propellerhead-reason-automation-tips
https://www.musictech.net/tutorials/reason-pu-12/
https://www.edmprod.com/automation-guide/
If this helps please purchase or stream some music.
Live Streaming for Independent Musicians
Live stream on YouTube
https://www.youtube.com/howyoutubeworks/product-features/live/
Stream live on Bandcamp
Ticketed live streaming with integrated merch and supporter chat.
Stream on Twitch
https://www.twitch.tv/creatorcamp/en/twitch-music-getting-started/twitch-music-getting-started/
Instagram and Facebook Live
https://www.facebook.com/formedia/solutions/instagram-live
https://www.facebook.com/formedia/solutions/facebook-live
Open Broadcaster Software
Free and open source software for video recording and live streaming.
MIDI 2.0
Free Sound Packs and Refills for Reason
Free Reason Sound Packs
https://www.reasonstudios.com/blog/category/sound-packs
Reason Blog Tags
https://www.reasonstudios.com/blog/tag/download
https://www.reasonstudios.com/blog/tag/patches
https://www.reasonstudios.com/blog/tag/sound-pack
Free reverb resources - where to find impulse responses
https://www.reasonstudios.com/blog/free-reverb-resources-where-to-find-impulse-responses
Tom Pritchard Sound Design Refills
https://www.dropbox.com/s/536axfqjflftmvm/TPSD%20Legacy%20ReFills.zip?dl=0
Peff Reason ReFills
http://www.peff.com/journal/reason-refills/
Reason Experts Refills
https://www.reasonexperts.com/reason-refills/
Miscellaneous Free Refills
http://www.jiggery-pokery.com/free.html
http://william.lamy.free.fr/reason/
https://stereoklang.se/page_1250068635268.html
https://drumandbassasylum.com/
http://ccmixter.org/media/tags/refill
http://www.xsynth.com/free.html
http://reasonpatchaday.blogspot.com/2013/07/26-new-thor-patches-from-reason-patch.html
Blogger Tips and Tricks
Helix Double Take (double tracker) explained
Focusrite Scarlett Solo 3rd Gen USB audio interface
Setup electronic drums to trigger drum plugins in your DAW
| Alesis Surge Kit setup for Reason Drums Rack Extension | |||
| Original Key Map Reason Drums | Alesis Kit Key Map Reason Drums | ||
| Midi Note | Sound | Midi Note | Sound |
| 36 | kick | 25 | Ride |
| 38,40 | snare | 28 | Clap |
| 37 | side stick | 30 | Hi_Hat_Open_Pedal |
| 39 | clap | 31 | Hi_Hat_Edge |
| 41,43 | lo Tom | 36 | Kick |
| 45,47 | mid Tom | 37 | Side_Stick |
| 48,50 | hi Tom | 38 | Snare |
| 42,44 | hi hat closed | 40 | Rim |
| 46 | hi hat open | 41,43 | Lo_Tom |
| 49 | crash 1 | 42 | Closed_Hi_Hat |
| 51 | ride | 44 | Hi_Hat_Pedal |
| 53 | bell | 45,48 | Mid_Tom |
| 54,56 | tamb | 46 | Hi_Hat_Open |
| 57 | crash 2 | 47,50 | Hi_Tom |
| 59 | ride | 49 | Crash_1 |
| 60 | kick | 51 | Ride |
| 61 | rem shot | 53 | Bell |
| 62 | snare extra | 54 | Tambourine |
| 63 | finger snap | 60 | Crash_2 |
| 64 | ruff | ||
| 65 | roll | ||
| 66,68 | closed hi hat alt | ||
| 69,70,71 | open hi hat alt | ||
| 72 | pedal | ||
| 73 | open pedal | ||
| 74,75,76,77 | poly | ||
| 78 | crash 2 mute | ||
| 79 | crash 1 mute | ||
| Original Setting | |
| Trigger_MIDI_Note_Number | Trigger_MIDI_Note_Number |
| Kick | 36 |
| Snare | 38 |
| Snare_Rim | 40 |
| Tom_1 | 48 |
| Tom_1_Rim | 50 |
| Tom_2 | 45 |
| Tom_2_Rim | 47 |
| Tom_3 | 43 |
| Tom_3_Rim | 58 |
| Tom_4 | 41 |
| Tom_4_Rim | 39 |
| Hi-Hat_Open | 46 |
| Hi-Hat_Half-Open | 23 |
| Hi-Hat_Closed | 42 |
| Hi-Hat_Pedal | 44 |
| Ride | 51 |
| Splash | 21 |
| Crash_1 | 49 |
| Crash_2 | 57 |
| Final User Preset Setting | |
| Trigger_MIDI_Note_Number | Trigger_MIDI_Note_Number |
| Kick | 36 |
| Snare | 38 |
| Snare_Rim | 37 |
| Tom_1 | 48 |
| Tom_1_Rim | 54 |
| Tom_2 | 45 |
| Tom_2_Rim | 53 |
| Tom_3 | 43 |
| Tom_3_Rim | 39 |
| Tom_4 | |
| Tom_4_Rim | |
| Hi-Hat_Open | 46 |
| Hi-Hat_Half-Open | 44 |
| Hi-Hat_Closed | 42 |
| Hi-Hat_Pedal | 72 |
| Ride | 51 |
| Splash | |
| Crash_1 | 49 |
| Crash_2 | 57 |


















