Monthly Archives: July 2021

Taiko Creator Kontakt Sample Library

By | July 2, 2021

Taiko Creator Kontakt Sample Library

Taiko Creator Kontakt Sample Library

Huge, deep and powerful, Japanese taiko drums often underpin the music for epic movies across all genre. Taiko Creator is a virtual instrument sample library that produces “that sound” in a new and more powerful way.
Where most libraries present limited variations, Taiko Creator allows you to create, control and generate multiple solo and ensemble groups of your own, all playable from a single interface.

With its large library of MIDI performance files, purpose-built engine and innovative yet simple-to-use feature set, Taiko Creator is a match for anyone producing cinematic percussion tracks.

THE INSTRUMENTS

– HUGE DRUMS –
Odaiko 1 – w mallet
Odaiko 1 – w bachi
Odaiko 2 – w mallet
Odaiko 2 – w bachi
Nishaku
Sanjaku Daiko – w mallet
Sanjuku Daiko – w bachi
Ohira Daiko

– LARGE DRUMS –
Nagado Daiko 1
Nagado Daiko 2
Nagado Daiko 3
Nagado Daiko 4
Nagado Daiko 5
Nagado Daiko 6
Nagado Daiko 7
Nagado Daiko 8
Nagado Daiko 9

– large continued –
Nagado Daiko 10
Katsugi Okedo Taiko 1
Katsugi Okedo Taiko 2
Katsugi Okedo Taiko 3

– MEDIUM DRUMS –
Shime Daiko 1
Shime Daiko 2
Shime Daiko 3
Shime Daiko 4
Shime Daiko 5
Shime Daiko 6

– PERCUSSION –
Rim Hits (24)
Bachi Stick Hits (10)
Temple Blocks (5)
Canon (3)
Cymbals (4)

– perc continued –
Chappa
Tingsha
Gong (2)
Tam Tam
Vox (M/F & Group)

– SOUND DESIGNED –
Big Booms (8)
Deep Atmospheres (8)
Metallic Atmospheres (8)
Brushed Cymbals (8)

 

SPECIFICATIONS

INSTRUMENTS: 24 taiko drums (featuring head and rim hits) and dozens of other sample sets including stick “clicks”, vocalizations, gongs, cymbals and sound designed elements. Total sample count: 9881

VARIATION: All drum head hits feature seven variations at seven velocities; aka: 7×7 round-robin.

MIDI: 20 (Core) or 60 (Core & Expansions) “suites” that include intros, core parts, fills and endings. High and Low mix variations are also supplied.

All parts can be auditioned from the interface and dragged-and-dropped directly to a DAW for user customization.

REQUIREMENTS

SOFTWARE: Taiko Creator runs in Kontakt or the free Kontakt Player 5.7.1 or higher (requires a minimum of Windows 7 or Mac OS 10.11).

COMPUTER: Because Taiko Creator is capable of using many samples at once, we recommend users have a current and powerful computer for the best experience.

ACCESS: A stable internet connection for library download and activation is required.

COPY PROTECTION: Custom Watermarked

Links

Demo Preview:

ynapse Audio World Of Cinematic Gor DUNE 2

By | July 2, 2021

ynapse Audio World Of Cinematic Gor DUNE 2

Synapse Audio – World Of Cinematic for DUNE 2

Synapse Audio – World Of Cinematic for DUNE 2 (SYNTH PRESET)

Publisher: Synapse Audio
Website: synapse-audio.com/dune2cinematic.html
Format: SYNTH PRESET \ SA DUNE 2
Size: 4.2 MB

Our fourth high-end soundbank for DUNE 2.
“World Of Cinematic ”is a stunning new soundset for DUNE 2 from expert sound engineer Kevin Schroeder. With 68 elaborate expressive patches, World of Cinematic will instantly inspire you with its fantastic pads, vibe, leads, textures and sequences! Patches such as Cello, Cymbal hit, Horn, Soft Piano and many more sounds will make you wonder how you can get these sounds using a subtractive synthesizer.
All patches support modulation wheel, and many patches also respond to aftertouch and velocity, offering more flexibility and expression for your live performance.

Installation:

  • Copy the preset folder to C: \ Users \ USERNAME \ Documents \ Synapse Audio \ DUNE 2 \ Soundbanks

Links

Romo Sounds Beatbox Sample Pack WAV MIDI

By | July 2, 2021

Romo Sounds Beatbox Sample Pack WAV MIDI

Romo Sounds Beatbox Sample Pack WAV MIDI

This sample pack is FREE. You can use all the sounds included in this pack in your songs. I would really appreciate it if you could credit me in your song by adding me in the credits. I would be forever grateful!

I worked on this sample pack for 2 years, recording for many months, and carefully selecting the most interesting and creative vocal sounds, sometimes manipulating my voice using some tools such as a harmonizer, vocoder, also exploring new and creative vocal techniques trying to push things forward!

Enjoy the sounds and do not forget to send me your tracks. I would love to listen!

What’s included in the sample pack:
✅ 600+ MB of creative Beatbox loops and one-shots
✅ 585 files in total (410 loops, 145 one-shots, and 30 MIDI files)
✅ 3 Demos
✅ MIDI Melodies & Chords
✅ Drum loops, Percussions, Human Bass, Guitars, Human Mono and Poly Synths, Vocoder beats, Scat vocal loops, Human scratches
✅ Multi-Genre sample pack: Hip-Hop, House, Techno, Drum and Bass & more (Ranging from 92 to 175 BPM)

Links

Demo Preview:


Big Data code optimization in Python NumPy: Sound Processing TUTORIAL

By | July 2, 2021

Big Data code optimization in Python NumPy: Sound Processing TUTORIAL

Programming is one of the most flexible fields I know of. You can create a program that achieves a certain task in so many ways. However, that does not mean that all ways are equal. Some are better than others.

That is especially visible when your program has to work with big data. Working with big data means working with gigantic arrays and matrices.

You can create a program that achieves the same task like the other one, but it does so 1000 times faster. It all depends on how you code and which coding practices you use.

And this is what you will learn here. You will learn the good and the bad coding practices, so that you would learn to code the right way when dealing with big data.

In this 100% project based course, we will use Python, the Numpy and the Moviepy library to create a fully functional sound processing program.

This program will import your videos in sequence, extract their audio, automatically identify the silent intervals in that audio, and then cut them out while still keeping some silence on the edges to preserve a bit of pause in between sentences.

Sound processing naturally deals with millions and millions array elements and so it really matters how we write that program. We will do it in a bad way and in a good way, because I want you to see both sides of the coin.

In the end, you will see that the last version of your Python Numpy code will be more than 1000 times faster than the first version, and so, you will see how to code and how definitely not to code.

Finally, I really want you to see that this knowledge is universal and can be applied in other fields as well, not only audio processing. And therefore, in the last section, there will be an assignment in computer vision.

Digital images are in fact, gigantic matrices, and so, it really matters how you handle them in the code. We will build a small program that can binarize these images and we will also do it in a good and in a bad way.

We will use the Python image processing library called Pillow to process all this big data inside the image matrices.

After this course, you will know how to approach programming in the right way from the beginning. Take a look at some of my free preview videos and if you like what you see, then, ENROLL NOW and let’s get started! I’ll see you inside.

What you’ll learn:

  • Code optimization in Python using the NumPy library
  • Sound processing in Python using the MoviePy library
  • Fundamentals of digital images

Links

Cymatics Cartel Hip Hop Drum Kit WAV

By | July 2, 2021

Cymatics Cartel Hip Hop Drum Kit WAV

Cymatics Cartel Hip Hop Drum Kit WAV

From massive 808s and kicks to perfectly sharp snares and claps, Cartel has all of the drum sounds you need for creating a banger record.

And these are easily some of the heaviest hitting drums that our team of sound designers have ever put together.

Cartel includes tons of kicks, 808s, snares, hats, percs, drum loops, and much more!

WHAT`S INCLUDED WITH CARTEL

  • 28 Full Drum Loops
  • 23 Percussion Loops
  • 16 Hihat Loops
  • 10 Unique Loops
  • 15 Hihat Rolls
  • 27 Hihat MIDI
  • 20 Crashes
  • 20 808s
  • 56 Percussion
  • 18 Rimshots
  • 21 Claps
  • 15 Vox
  • 12 Snaps
  • 24 Snares
  • 14 Hihats – Open
  • 28 Hihats – Closed
  • 14 Shakers
  • 23 Kicks

Links

Nano Musik Loops 50 Trance Pads: Sounds for Sylenth1

By | July 2, 2021

Nano Musik Loops 50 Trance Pads: Sounds for Sylenth1

Nano Musik Loops 50 Trance Pads: Sounds for Sylenth1 [FXP MIDI]

’50 Trance Pads: Sounds for Sylenth1′ from Nano Musik Loops features 50 must-have pad and 10 bonus bass presets suitable for Trance, Dance, House, Electro, Progressive and Minimal genres. Fire up your Sylenth with these highly versatile pads.

Turbo-charge your productions with this awesome soundbank.

Product Details:

60 Sylenth1 Presets
50 Pads
10 Bass Sounds

Bonus:
25 MIDI Chord Loops
100% Royalty-Free
All tempos are 128 BPM and key-labelled

Please note:
This soundset requires Sylenth1 Version 2.2.1+.

MIDI Included:
For producers demanding ultimate control you need MIDI loops and you’ll them find here! Using the supplied MIDI files you can assign any of the musical phrases found in this pack to your favourite synth or sampler, and integrate them seamlessly with the pre-rendered loops.

Royalty-Free:
All of the loops in this product are 100% Royalty-Free. So, once you have purchased this product you can use these loops in your commercial releases without having to pay any extra.

Links

Demo Preview:

DAFX: Digital Audio Effects, 2nd Edition PDF

By | July 2, 2021

DAFX: Digital Audio Effects, 2nd Edition PDF

DAFX: Digital Audio Effects, 2nd Edition PDF

The rapid development in various fields of Digital Audio Effects, or DAFX, has led to new algorithms and this second edition of the popular book, DAFX: Digital Audio Effects has been updated throughout to reflect progress in the field. It maintains a unique approach to DAFX with a lecture-style introduction into the basics of effect processing. Each effect description begins with the presentation of the physical and acoustical phenomena, an explanation of the signal processing techniques to achieve the effect, followed by a discussion of musical applications and the control of effect parameters. Topics covered include: filters and delays, modulators and demodulators, nonlinear processing, spatial effects, time-segment processing, time-frequency processing, source-filter processing, spectral processing, time and frequency warping musical signals.
Updates to the second edition include:Three completely new chapters devoted to the major research areas of: Virtual Analog Effects, Automatic Mixing and Sound Source Separation, authored by leading researchers in the field .
Improved presentation of the basic concepts and explanation of the related technology.
Extended coverage of the MATLABTM scripts which demonstrate the implementation of the basic concepts into software programs.
Companion website (www.dafx.de) which serves as the download source for MATLABTM scripts, will be updated to reflect the new material in the book.
Discussing DAFX from both an introductory and advanced level, the book systematically introduces the reader to digital signal processing concepts, how they can be applied to sound and their use in musical effects. This makes the book suitable for a range of professionals including those working in audio engineering, as well as researchers and engineers involved in the area of digital signal processing along with students on multimedia related courses.

Links

Guitartricks How to Play Ode To Joy by Beethoven TUTORIAL

By | July 2, 2021

Guitartricks How to Play Ode To Joy by Beethoven TUTORIAL

Guitartricks How to Play Ode To Joy by Beethoven TUTORIAL

Let’s learn a very simple arrangement of a beautiful melody: Beethoven’s “Ode to Joy” theme! We’ll take this one in three steps: first the single note melody, the we’ll learn the theme in two voices, and finally we’ll add a third voice for a full arrangement.

In this intro lesson we’ll go over what is covered in this tutorial.
The melody we are using is from the finale of Beethoven’s Ninth Symphony. It’s known as the Ode To Joy theme because Beethoven used the words from Friedrich Schiller’s poem of the same name as the basis of the choral lyrics that are sung with the melody in his symphony finale.

We’ll play it in C major so it will be relatively easy to arrange for solo classical guitar. We’ll start by arranging the theme as a simple, single note melody. Next, we’ll have a play-through of the melody.

Then, we’ll find places to add a bass note or two to each measure until we have a complete bass line; a second voice to accompany our single note melody. We’ll develop a complete two voice arrangement. Then, we’ll have a play-through.

Finally, we’ll find places to add inner voices, or middle voices to flesh out our two voice arrangement. Usually this will involve finding appropriate chord tones to use along with the melody and bass line. Eventually, we’ll have a complete classical guitar style arrangement with a melody completely supported by two other integrated voices, a full three voice arrangement! We’ll end up with a play-through of this full arrangement.

Links

Guitartricks How to Play Tobacco Road by David Lee Roth TUTORIAL

By | July 2, 2021

Guitartricks How to Play Tobacco Road by David Lee Roth TUTORIAL

Dave will show you the guitar parts in this song, from the squealing intro licks, to the power chord riffs in a boogie rhythm, to the whammy bar filled solo. “Tobacco Road” is in the key of D minor and 4/4 time at a tempo of about 140 BPM.

The guitar tone is classic 80’s – a super Strat equipped with a floating whammy bar with locking nut, ideally a Floyd Rose style, and a hot humbucker pickup in the bridge position. The amp is a hot-rodded Marshall with loads of high gain and for EQ, set the bass at 2 o’clock, mid at 12 o’clock, and treble at 2 o’clock, and overdrive at 1 o’clock. These settings should get you pretty close to the desired tones using whatever gear you have, but feel free to adjust accordingly.

For the single guitar performance, play Guitar 1 for the entire song except the solo, where you’ll switch to Guitar 2.

Links

Mixing & Sound Design: Multimode Filters TUTORIAL

By | July 2, 2021

Mixing & Sound Design: Multimode Filters TUTORIAL

Mixing & Sound Design: Multimode Filters TUTORIAL

Do you need to understand the theory, practical applications, and creative applications of multimode filters? In this course, producer and instructor Evan Sutton shows you how to use multimode filters for several types of sound design and musical projects.

Evan begins with an explanation of basic low-pass and high-pass filter theory. Then he explains mixing with high-pass filters and low-pass filters. He goes into mid/side filtering, band-pass filters, and hybrid filters.

Then he concludes with ways you can use filters as FX.

Links

Tips & Tricks For Modern Producers TUTORIAL

By | July 2, 2021

Tips & Tricks For Modern Producers TUTORIAL

Tips & Tricks For Modern Producers TUTORIAL

Are you interested in taking your productions to the next level? In this course, instructor Evan Sutton shares tips, workarounds, and time-saving techniques that can help music producers work smarter in the studio and enhance their final productions.

Evan dives into drum programming and processing, and discusses synth programming, including how to get from MIDI to audio. He also shares practical tips that can help audio engineers as they work with vocals and get their mixes ready for mastering.

Plus, learn how to apply EQ precisely, combine additive and subtractive EQ methods, and smooth out peaks and standing resonances with multiband compression.

Links

Creating with Ableton Live Plugins & Instruments TUTORIAL

By | July 2, 2021

Creating with Ableton Live Plugins & Instruments TUTORIAL

Creating with Ableton Live Plugins & Instruments TUTORIAL

Explore the wide variety of powerful plugins and instruments in Ableton Live 10, the popular music production software. Instructor Rick Schmunk starts with an in-depth look at Sampler and how to create multi-sample presets, as well as overviews of the core instruments Electric and Collision. Rick moves on to cover audio and MIDI plug-ins through a variety of walkthroughs, tips, tricks, and examples.

Topics include:

  • Sampler in-depth
  • Preparing and loading multi-sample instrument presets
  • Electric overview
  • Audio plugins
  • Multi-channel dynamics
  • Random
  • Vocoder
  • Vinyl distortion
  • Collision overview
  • Resonator
  • LFO

Links

The Songwriting Process TUTORIAL

By | July 2, 2021

The Songwriting Process TUTORIAL

The Songwriting Process TUTORIAL

Songwriting is a craft that requires creativity and discipline. By adopting a regular process, you can set yourself up for more productive and inspired sessions. In this course, professional songwriter and music industry veteran Cliff Goldmacher offers tips, tricks, and workflow suggestions for new and experienced songwriters alike. You can learn how to set up your songwriting space for effortless creativity, how to research your ideas, how to overcome writer’s block and procrastination, how to develop chords and lyrics, and how to write better songs overall. Plus, get tips for working effectively with a cowriter and sharing your songs once they are complete

Topics include:

•Keeping track of your song ideas
•Setting up a songwriting space
•Eliminating distractions
•Writing out chord charts
•Registering your song with your RPO
•Tips for cowriting songs

Links

Audio for Video Editors: Essential Terms TUTORIAL

By | July 2, 2021

Audio for Video Editors: Essential Terms TUTORIAL

Audio for Video Editors: Essential Terms TUTORIAL

Learn the science behind some of the most essential digital audio terms that pop up in the post-production process. Join audio post-production engineer Cheryl Ottenritter as she dives into an array of key concepts, explaining how each one plays into the creation of high-quality audio. Learn how sample rates are used in digital audio, as well as what perceived loudness, or LKFS, is and how to mix with it in mind. Plus, learn how understanding sound fields can help you select the right audio track type, what the most common audio track layouts are, and more.

Topics include:

•Identifying audio frequencies
•How sample rate is used in digital audio
•Using audio meters for a better mix
•Signal flow and gain stages
•Mixing with perceived loudness (LKFS) in mind
•Common audio deliverables

Links

Lynda Learning Audacity TUTORIAL

By | July 2, 2021

Lynda Learning Audacity TUTORIAL

Lynda Learning Audacity TUTORIAL

Audacity is a free, open-source, multitrack audio editing application that can be used to record live audio, edit sound files, change the speed or pitch of a recording, and more. In this course, instructor Garrick Chow demonstrates how to download and install Audacity on both Mac and Windows, record live audio, and import and play existing audio files. See how to perform basic editing tasks such as copying and pasting audio, splitting clips, and adding effects. Garrick also shows more advanced tasks including adding compression and automating volume levels.

Topics include:

  • Downloading and installing Audacity
  • Importing audio
  • Setting up hardware to record
  • Recording two tracks simultaneously
  • Basic editing and common effects
  • Splitting clips
  • Exporting a project
  • Inserting silence
  • Bleeping unwanted words and sounds

Links