DEV Community

Cover image for My Media Creation Setup
Jamie
Jamie

Posted on

My Media Creation Setup

The cover images for this post is by marvelous

I was recently asked (via DM) by someone on Twitter about writing a blog post on the tools that I used for creating media. It should be of no surprise to some of you all that I create a number of podcasts. In fact, I wrote a post with disparate pieces of advice for aspiring podcasters:

For those wondering, I'm involved in the creation of two

psst. it's soon to be three

podcasts:

  1. The .NET Core Podcast
  2. The Waffling Taylors Podcast

Here is an embedded player for the latest episode of The .NET Core Podcast at the time of writing:

play pause The .NET Core Podcast

I've also tried my hand at video creation and editing - something you can see in my live coding streams:

I've even tried some graphic design work

no I didn't create the artwork for The Waffling Taylors - that's created by the super amazing Yuricannes

But I have tried my luck at creating SVG icons for some of my open-source libraries, such as the logo for my ASP .NET Core middleware for injecting OWASP recommended HTTP Headers: OWASPHeaders.Core

The logo for OWASPHeaders.Core - a green outline of a wasp, a green outline of a padlock, on a grey background

All of this whilst using Pop!_OS as my daily driver OS. So which tools do I use:

Audio

Aside from my development work (and writing), the majority of my time is spent doing audio work. So how do I go from no audio to a fully rendered MP3 of a podcast episode?

note: I started planning this blog post before I hired an editor, who takes the lion's share of the editing work from me

VS Code

It all starts with VS Code:

VS Code with the front matter for episode 41s show notes

I start with VS Code when planning out episodes because I can quickly type out my idea using markdown. There are other editors which do a good job of rendering markdown, but I also use VS Code as one of my IDEs - so I'm happy using it for markdown, too.

I use VS Code to write out a plan for an episode idea or to take a bunch of ideas and expand on them. This is then saved in a private git repo

pro tip: source control all the things

.NET Core

I have a .NET Core template which I can use to scaffold everything I need to record a new episode:

some of the output from my .NET Core template

note: the open-source version only scaffolds the markdown show notes; whereas the closed source version does all of the episode scaffolding for me

I use this to quickly set up everything that I might need in order to record a new episode of the podcast.

Audacity

Once the recording is completed, I'll use Audacity to edit the raw audio.

An Audacity project being edited

This is the application that I'll spend the most time in when putting an episode together. Editing and post-producing

which are similar, yet subtly different, things

an episode takes a long time - the rule of thumb is that 30 minutes of audio will take 60 minutes of work.

Auphonic

Auphonic is an amazing post-production tool, especially if you're not a fully-fledged audio engineer.

Auphonic running on Pop!_OS

This is the first paid tool on the list, but I'm happy paying for it because it makes my shows sound much better than I could. It's also really simple to use - the default setup is almost perfect for my shows. I feed this app an uncompressed wav file (exported from Audacity), and it gives me an MP3 with radion and TV industry-standard audio levelling.

Beware: although there are desktop versions of Auphonic, there isn't a native version for any Linux distros. This means that you'll have to setup WINE in order to run the Windows version of Auphonic on your distro.

kid3

Once I have the MP3, I put it through kid3 in order to tag it correctly.

kid3 being used to alter the ID3 tags for an episode of The Waffling Taylors Podcast

I like to set the ID3 tags on episodes of my podcasts before I upload them. Most podcast hosts allow you to alter them once episodes have been uploaded, but you can use the contents of the tags to auto-fill most data on podcast host sites.

Also, setting ID3 tags on any audio that you create

assuming that you're creating MP3s

will your listeners happy.

Video

In the past, I have scheduled live code sessions

something I'm tempted to get back into

and these have been facilitated by a single application:

OBS

OBS. This has become the de facto application for streaming video to and from services like Twitch, Youtube, and Mixer. It's used by the pros along with the amateurs

like me

all for free.

Did you know that the software which ships with Elgato devices is simply a re-branded version of OBS?

Images

I use two applications when creating images or doing any kind of (admittedly simple) design work:

GIMP

GiMP (or GNU Image Manipulation Program) is also known as "free Photoshop".

It's incredibly powerful, but the work that I do with it barely scratches the surface of what's capable with it.

Inkscape

When I need to work with SVGs or any kind of illustrations, I open Inkscape first.

Just like GiMP, Inkscape is super powerful and I'm barely even scratching the surface of what it can do. I've used it to create the icons for the majority of my opensource projects, and for touch up work on the Waffling Taylors logo ready for placing on business cards and hoodies:

What Do You Use?

If you're rocking a FOSS OS

that's pretty catchy

what do you use for media creation? I'd love to hear about other applications that I can use to potentially increase my productivity or create higher quality media.

I've intentionally left off the majority of the tools that I use for my day to day client work for a number of reasons:

  • Some of it is covered by NDAs
  • IDE choice is a sticky subject
  • This was a post specifically about media creation

Let's swap suggestions in the comments.

Top comments (0)