paint-brush
How I Built an Online Radio with Soundcloud and NextJSby@madzadev
1,765 reads
1,765 reads

How I Built an Online Radio with Soundcloud and NextJS

by MadzaFebruary 1st, 2022
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

After years working in the morally optional world of online direct marketing I was looking for a new path toward fulfilling employment. But so were forty other strangers on the Fox Studio lot in the middle of the night.

Companies Mentioned

Mention Thumbnail
Mention Thumbnail

Coin Mentioned

Mention Thumbnail
featured image - How I Built an Online Radio with Soundcloud and NextJS
Madza HackerNoon profile picture


Creating a radio app was a project that I had in mind for quite a while. I have always felt a special connection to music. It has always inspired me and boosted my productivity.


A while ago I also did a discussion asking do other developers prefer music while coding. I was surprised by the amount positive responses, so I wanted to execute the idea even more.


I started to build DevTunes FM. Initially, it was meant as a pet project for personal use, but the more time I spent on it, the more it started to take shape of something the developer community could benefit from as well, so I decided to share it with the public.


Mockup

The project is live at: radio.madza.dev

Since I went through multiple phases of planning and executing I thought it could be valuable to create an article about the process and show you the features.

Planning

From the beginning my main focus was simplicity. I've never been a fan of complex layouts and multi-level settings. I wanted to create a radio, that is straightforward for listening to music and easy to understand on the first visit.

I also focused on usability. This meant the radio should be adjustable to different moods and various musical genre preferences. It also should be used anywhere - while coding, exercising, or on the commute, for example.

Finally, the radio should have a nice design. The UI/UX should feel smooth and look great on different devices. The user should be allowed to customize the look and behavior of the radio.

Planning

Features

Once I had defined the main characteristics, it was time to identify the specific features.

I came up with the following list:

  • Change stations
  • Change backgrounds
  • Play/pause
  • Repeat track
  • Volume controls
  • Recently played list
  • Save last settings
  • Responsive design
  • Loading screen

Wireframes

To put the features in the UI, I created wireframes for the components.

I started with the dropdown for switching the stations. Once the dropdown is opened, the list of available stations is shown and the currently active station is highlighted.

Wireframe1

To control the play state of the radio, there is a component with alternating play and pause icons as well as the title of the currently playing track.

Wireframe2

In order to open different panels of the settings, control the volume and repeat the current track, I created navigation consisting of several icons.

Wireframe3

The previous tracks panel displays the last tracks that have been played on the radio. Users can click on any track on the list to start playing it. The settings panel lets the user control the behavior of the radio. Both panels can be closed by clicking outside of them.

Wireframe4 I used Figma to make these wireframes. You can also check out Diagrams.net, which is another amazing tool.

Design

Next, I had to create a design for the radio. In this phase, I focused on how to position the components and how to make the project look and feel great.

To achieve that I created 10 different themes.

The source for wallpapers is Wallhaven. Icons are taken from FlatIcon.

Theme 1

Theme1

Background from: source

Theme 2

Theme2

Background from: source

Theme 3

Theme3

Background from: source

Theme 4

Theme4

Background from: source

Theme 5

Theme5

Background from: source

Theme 6

Theme6

Background from: source

Theme 7

Theme7

Background from: source

Theme 8

Theme8

Background from: source

Theme 9

Theme9

Background from: source

Theme 10

Theme9

Background from: source

Stations

DevTunes FM was designed to be electronic music radio. Electronic music includes tons of genres and subgenres, so creating the right stations was a challenge.

I spent a lot of time browsing the available playlists on SoundCloud and played through all the individual tracks to decide if the content matches what I would want to include on the radio.

I ended up creating 28 stations. Down below is the full list and their curators:

Each time the user visits the radio the tracks on each station are randomly shuffled, so the sequence of tracks is always unique.

Stack

The radio is written in NextJS. It has awesome features such as API routes, data fetching, built-in support for CSS modules, static file serving, environment variables, hot reloading, and so much more stuff, that I made use of while creating the app.


The audio source is SoundCloud API. It allows developers to get the data about the users, tracks, playlists, likes, reposts, comments, comments, favorites, followers, and other useful data.

I used Vercel for deployment. Deploying the app is as simple as hosting the source on GitHub and then importing it in Vercel. It will do all the heavy lifting - build processes and configuration for you behind the scenes. All you need to do is set up environmental variables.

Mobile Responsiveness

One of the priorities of the radio was for it to be fully responsive for different screen widths. This way the radio could have been efficiently used on multiple device

s.

To achieve that, I set up a media rule at 700px, where the UI switches from top and bottom navigation to the fullscreen interface.

Responsiveness

Conclusion

A couple of years ago creating my own radio app was a dream. Now I am happy to see coding as a powerful tool that can be used to help other developers on their path.

Hopefully, DevTunes FM will make your developer flow more productive. Feel free to try it out and see if you like it. Feedback is always welcomed.

In the future, I will focus on improving the current code base, test it and keep exploring new music to add them to the radio.

Feel free to submit feature requests, music recommendations, or other related stuff to [email protected].

Let's connect!

Writing has always been my passion and it gives me pleasure to help and inspire people. If you have any questions, feel free to reach out!


Connect me on Twitter, LinkedIn, and GitHub!

Visit my Portfolio for more projects.


Also published here