diff --git a/src/_blog/ipfs-as-a-first-class-citizen-in-ffmpeg-who-s-next.md b/src/_blog/ipfs-as-a-first-class-citizen-in-ffmpeg-who-s-next.md
index 026dd588..babcc828 100644
--- a/src/_blog/ipfs-as-a-first-class-citizen-in-ffmpeg-who-s-next.md
+++ b/src/_blog/ipfs-as-a-first-class-citizen-in-ffmpeg-who-s-next.md
@@ -70,15 +70,15 @@ I wanted to do much more in the IPFS ecosystem, specifically to enable broad eco
Starting in [FFmpeg 5.1](https://github.com/FFmpeg/FFmpeg/blob/master/Changelog) you’ll enjoy “native feeling” IPFS support. The support is implemented through rewriting your `ipfs url` to a url that your gateway will handle.
-ipfs://QmbGtJg23skhvFmu9mJiePVByhfzu5rwo74MEkVDYAmF5T
+ipfs://QmbGtJg23skhvFmu9mJiePVByhfzu5rwo74MEkVDYAmF5T
to:
-http:///ipfs/QmbGtJg23skhvFmu9mJiePVByhfzu5rwo74MEkVDYAmF5T
+http:///QmbGtJg23skhvFmu9mJiePVByhfzu5rwo74MEkVDYAmF5T
-* The red color is the auto-detected gateway to use.
-* The orange color is the protocol to use (can be either _ipfs_ or _ipns_).
-* The green color is the [CID](https://docs.ipfs.io/concepts/content-addressing/) to use.
+* The red color is the auto-detected gateway to use.
+* The orange color is the protocol to use (can be either _ipfs_ or _ipns_).
+* The green color is the [CID](https://docs.ipfs.io/concepts/content-addressing/) to use.
FFmpeg tries to detect the gateway according to this [IPFS Integration](https://github.com/markg85/specs/blob/master/INTEGRATION.md) document document. If you don’t have a gateway running, the current logic will fall back to calling ‘dweb.link’ behind the scenes. It will therefore give the end user an experience of IPFS just working.