Sunday 30 June 2019

How to remove vocals from a song and create high-quality karaoke

How to remove vocals from a song and create high-quality karaoke
Removing vocals from a song and creating high-quality karaoke track is not an easy task. There are so many free software available like Audacity, Wavosaur, etc which can remove vocals from a song and there are several paid software available like Mixcraft Pro Studio, FL Studio, etc but I was not satisfied with the results provided by these software. After removing the vocals, the songs sounded like mono songs and the instruments in the songs also seemed to be compressed which didn't sound good at all.
But now I would tell you about a software which I found the best among all the tools which can remove vocals from any song, the software is iZotope RX 7 Audio Editor. It is awesome and the vocal removal technique of this software is too good. After removing the vocals, the stereo quality of the song remains the same and only a very faded part of the vocal is noticeable if you try to hear it carefully. Let's see how to remove vocals from a song and create high-quality karaoke:
  • Install iZotope RX 7 Audio Editor in your computer (Click Here)
  • Now launch the application and click on "Open File".
  • Now open any song which you want to remove the vocals from.
  • One the song is loaded in the waveforms, press ctrl and A keys together on the keyboard and the whole song would be selected.
  • Now look at the Repair options in the right sidebar of the software and click on "Music Rebalance".
  • Once music rebalance is opened, set the voice slider to infinity by dragging it downwards and set its sensitivity to 10. Do the same with the other sliders and set the gain slider at +2.0 dm and sensitivity at 7.0
iZotope RS 7 settings for Voxal
  • Now click the "Preview" button to listen to the preview of the final karaoke. If the song sounds good, click on "Render" to render the song. 
  • Once the render is completed, you may click on File > Export and export the song as high-quality MP3.
  • After the mp3 file is exported, you can keep it with you and record your own vocals over it.
If you want to watch a video about this setup and get an idea to know how to use this software, go through the video below:

If the video doesn't play here, click this link: https://www.youtube.com/watch?v=L0R4hkb82vM

Note: Even after rendering the song, you need to mix the music part from the original song and the vocal removed part from the karaoke track you exported to make the final karaoke sound better (you may create a new mp3 file after adding the music part of the original song using any multi track audio editing software. I'll publish an article about it soon). Keep visiting PC Tricks Guru for more tips and tricks.
Share:

Sunday 23 June 2019

Setup Cannot Continue because Outlook isn’t Configured to have a Default Profile : Fix the error

Setup Cannot Continue because Outlook isn’t Configured to have a Default Profile : Fix the error
iCloud is a handy tool when it comes to syncing your contacts and calendars in Outlook and other Apple devices. It is well known that Microsoft brings new issues with it's every new update and it's the user who has to face the issues. Earlier also, Outlook had issues with iCloud where users were getting an error that said "Set of folders can't be opened" after launching Outlook. Now another issue is going on with Outlook and iCloud. In this error, when you try to configure iCloud with Outlook, you would get an error stating that "Setup Cannot Continue because Outlook isn’t Configured to have a Default Profile". Whatever you try, reinstalling Office and iCloud doesn't work. So, I'm sharing a simple fix for this issue, just go through the steps given below:

1. Perform an Online Repair for Office:
  • To perform an online repair of Office, open run box by pressing Windows and R keys together from the keyboard and type appwiz.cpl and click OK.
  • After this, search for Microsoft Office (the version which is installed in your machine) from the list of installed applications. Right click on it and click Change.
repair office

  • After clicking change, a window will appear with the options, "Quick Repair" and "Online Repair". Select online repair and proceed. When the repair gets completed, don't launch Outlook.
office online repair

2. Set Outlook as default Windows email client
  • Click on the start button and start typing "Default Apps" and from the search results, open the Default Apps setting.
set outlook as default app
  • Now, set Outlook as a default email application.
3. Repair iCloud
  • Open the iCloud app and sign out of your account. If it opens the browser to remove the chrome extension of iCloud, remove the extension.
  • Follow the steps mentioned in step 1 and complete the repair of iCloud. Instead of Office, select iCloud and repair it.
  • Now restart your machine
4. Use the PowerShell to fix the issue permanently
This is the final step which will actually resolve the issue now. If you want to skip the above 3 steps, you may skip them and try this fix directly.
  • Open PowerShell window as admin and run the following commands:
run powershell as admin

Get-AppxProvisionedPackage -Online | where-object {$_.packagename –like “*Outlook*”} | Remove-AppxProvisionedPackage –Online

powershell
  • Now run the following command in the same PowerShell window:
Get-AppxPackage “*Outlook*” | Remove-AppxPackage
  • Now close the PowerShell window and open PowerShell again as a regular non-admin app and run the following command:
Get-AppxPackage “*Outlook*” | Remove-AppxPackage
  • Now open iCloud and sign in using your iCloud credentials. After iCloud opens, tick the checkbox of "Mail" in iCloud and then click Apply.
icloud

You would see that iCloud would download your contacts and calendars and would merge them in Outlook.

For more tips and tricks, keep visiting PC Tricks Guru.
Share:

Friday 21 June 2019

How to fetch Product Key of Windows 7/8.1/10 if COA is not available

How to fetch Product Key of Windows
Windows product keys are very important to keep because if we reinstall Windows or change the hardware of the machine, we would need to re-activate Windows and it requires the product key of Windows. Without the product key, you won't be able to activate Windows. Although Windows 10 activation is now digitally linked with Microsoft account but still, after changing the hardware, you might face issues with the activation of your Windows OS. So here are a few steps which you can follow to fetch the product key of the Windows operating system from the installed machine.

1. Using Command Prompt
To fetch the product key using the command prompt, you may open cmd as admin and run the following command:
wmic path softwarelicensingservice get OA3xOriginalProductKey
Remember that this command can fetch the product key only if you are using an OEM machine which came pre-installed with Windows and the key was injected in the Motherboard of the machine.

2. Using PowerShell
To fetch the product key using the PowerShell, you may open PowerShell as admin and run the following command:
powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey"
Remember that this command can fetch the product key only if you are using an OEM machine which came pre-installed with Windows and the key was injected in the Motherboard of the machine.

3. Using VB Script
To fetch the product key using the VB Script, you may copy and paste the following code in a notepad file and save it as keyfinder.vbs and then run the file. It would show the product key in a small pop-up:

Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))

Function ConvertToKey(Key)
Const KeyOffset = 52
i = 28
Chars = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = Key(x + KeyOffset) + Cur
Key(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
If (((29 - i) Mod 6) = 0) And (i <> -1) Then
i = i -1
KeyOutput = "-" & KeyOutput
End If
Loop While i >= 0
ConvertToKey = KeyOutput
End Function

This command can fetch product key from OEM and non OEM PCs both.

4. Using the ProduKey tool
If none of the above methods work, you may use the NirSoft ProduKey tool to fetch the product key of your Windows. This tool can fetch the keys of Windows and MS Office also. Just download the tool from this link and run it as admin in your PC and it would show the product keys installed in your machine.
Share:

Custom Search Box

Earn Money With Crypto

WazirX

Offers and Deals

Blog Archive

Contact Form

Name

Email *

Message *