Skip to content

Commit c6ee893

Browse files
committed
fix broken link
1 parent 25f2de6 commit c6ee893

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/golang/golang-video-stream-server.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Create a Golang Video Streaming Server Using HLS"
33
author: Lane Wagner
44
date: "2020-09-04"
5-
categories:
5+
categories:
66
- "golang"
77
images:
88
- /img/800/stream-party.jpeg
@@ -13,7 +13,7 @@ In this tutorial, we'll go step-by-step through building a video streaming API (
1313
## What is HLS?
1414

1515
> HTTP Live Streaming is an HTTP-Based adaptive bitrate streaming communications protocol developed by Apple.
16-
>
16+
>
1717
> [Wikipedia](https://en.wikipedia.org/wiki/HTTP_Live_Streaming)
1818
1919
HLS is a streaming protocol that allows large media files to be served as many smaller text files that are broken up into roughly ~10-second increments. By breaking them up, the user's client-side application only needs to buffer ~10 seconds in advance. This saves the user a lot of potential bandwidth and allows songs or videos to start playback almost immediately.
@@ -26,7 +26,7 @@ Using [FFmpeg](https://www.ffmpeg.org/), we can easily convert mp3 files to HLS
2626

2727
Download a sample .mp3:
2828

29-
[http://www.hubharp.com/web\_sound/BachGavotteShort.mp3](http://www.hubharp.com/web_sound/BachGavotteShort.mp3)
29+
[http://www.hubharp.com/web_sound/BachGavotteShort.mp3](http://www.hubharp.com/web_sound/BachGavotteShort.mp3)
3030

3131
Install [FFmpeg](https://www.ffmpeg.org/). If you are on a Mac:
3232

@@ -94,7 +94,7 @@ Now run the server:
9494
go run main.go
9595
```
9696

97-
Your server is live! Test your code and listen to the music stream by using an HLS media client. You can find a free online client here: [https://hls-js-latest.netlify.com/demo/](https://hls-js-latest.netlify.com/demo/)
97+
Your server is live! Test your code and listen to the music stream by using an HLS media client. You can find a free online [client here](https://livepush.io/hlsplayer/index.html)
9898

9999
Simply paste your song's URI and listen:
100100

0 commit comments

Comments
 (0)