ferment

0.6.19 • Public • Published


Ferment
Ferment

Ferment is a peer-to-peer audio publishing and streaming application. It is an attempted re-creation of classic SoundCloud, but runs entirely decentralized. 💞 🍻

It is made possible by combining these amazing projects: ssb, webtorrent and electron.

📺 Watch a quick video demo

🔽 Download for macOS

🛠 Build from source

💖 Donate and support me on Patreon

WebTorrent

Requirements

Right now things are super easy if you are running macOS, but for other platforms you need to do some hard open-sourcey compilation stuff. Also it just doesn't work at all on Windows right now (will be addressed soon).

If there is no packaged app for your platform, you'll need to build from source using modern version of node and npm.

Inspiration

I'm trying to replace my need for SoundCloud as a backyard musician that uploads WAY to much stuff.

I'd been ranting to my friends for a few months about how much SoundCloud has changed since "the good old days". But then I gave it some thought and realised the changes did make a lot sense from their perspective. There is no money in hosting other people's content for free, and the company does need to stay in business and keep those investors happy.

It's just a real shame how much forced tie-in there is with these sorts of online services. APIs disappear one-by-one, data formats close up. You become dependent on them, and then they change all your favourite features or simply just shut down. This is a rather unfortunate vision of a tech future that I don't want to live in.

The incentives are all in the wrong places. We need small scale systems that work on a personal level. Sure there are trade-offs, but I'm sick of this completely disconnected feeling you get in the globally connected world.

How it works

Ferment uses a peer-to-peer gossip protocol called Secure Scuttlebutt. The best part about this is there is no central server and no single point of failure. In fact everyone on the network is a server, with a copy of all of their friends and their friend's friends data. You gossip with other peers to find out if any of your shared contacts have any new posts and share them. But by gossip, we mean cryptographically prove everything they've said since the last time you heard from them. It is impossible to skip a message.

Finding peers across the complex topography of the internet is pretty difficult though. This is where pub servers come in. They act as gossip hubs where information can be shared across networks. A pub is just an ordinary Ferment peer that has a publicly accessible IP address and can be remotely connected to on demand.

The actual audio files are just torrents (a special variant called webtorrent that works over WebRTC). The SSB message contains a reference to its magnet url, and you seed the file to other ferment peers.

Whenever you listen to something in Ferment, you start seeding that file with other peers. It will be cached on your machine until you remove it (right-click > Stop Sharing Post). In the future this may be handled automatically (you'll only cache material you have "liked" and selected content from followed users that are weak on the network).

Ferment and Copyright

Ferment is an audio publishing platform for copyright-owning creators, creative commons licensed material, remix artists and DJs. As this is a decentralized, peer-to-peer community, what you culture in your network is up to you. You get to choose what level of sharing legality you are comfortable with.

For example, if someone in your network adds copyrighted material, and you listen to it, your Ferment will start sharing the file. If you don't want to share the legal responsibility for this, right-click and select 'Stop Sharing Post.'

You could also consider unfollowing them and reporting the infringement to the owner of the pub to prevent the spread of the material.

A pub owner should unfollow anyone who adds material which infringes copyright.

Joining Pub Server

By default, Ferment will only see other users that are on the same local area network as you. In order to share with users on the internet, you need to be invited to a pub server.

Since I'm a nice person 💖 you can hang out in my pub, and you don't even have to buy any drinks! 🍻 But please be mindful about uploading content that you do not own the rights to. My pub will unfollow anyone who uploads content that I don't think is fair to the original creators.

Click 'Join Pub' on the sidebar then paste the code below:

pub.ferment.audio:43761:@uIL3USK7QJg5AHohnZC329+RXS09nwjc24ulFBH2Ngg=.ed25519~MqAyQji/+ZHHtq9JM8Dl/w6hOujxXAxlOpYiFUfLgRM=

NOTE: To avoid destroying my server, this code can only be used a limited amount of times. Please post an issue if it doesn't work for you, and I'll generate a new one.

If all goes to well, you'll start to see audio appear before your eyes! Give that play button a spin.

However, if you don't see anything appear after about 30 seconds, try restarting ferment. It may take a minute or two before it appears. You should be all good as long as +connected pub.ferment.audio:43761:.... appears in your terminal.

If you receive an error message, it probably means my pub server has locked up. This seems to be happening a bit at the moment, trying to get to the bottom of it. Let me know and I'll restart it. In the mean time, you could start creating a shiny profile and adding some tunes!

Publishing Audio

You can share audio with your followers by clicking the "+ Add Audio" button in the top right corner of the screen. Make sure you read the section about copyright before publishing anything!

After choosing a file and pressing Publish, Ferment will convert your audio into a format that compresses and streams well. At this point, you will start to seed the file.

To make sure other people can play your file, you'll need to wait until the status changes from "Waiting to share 💖" to the beer 🍻 icon. Other users and pubs that follow you should start seeding your post soon after you add it, but if this doesn't happen for a few minutes, restarting Ferment can help.

On start-up, Ferment checks the files you have cached (or added) against the tracker and prioritize seeding the rarest files on the network. However, any files you play will start seeding immediately.

Install

on macOS

Download the latest release here!

Make sure you read the section of this readme titled "Joining Pub Server"!

from npm

$ npm install -g ferment

And then run using:

$ ferment

If you get an error appear saying something like Module version mismatch. Expected 50, got 48., try running the following:

# requires automake on your system 
$ ferment --rebuild

Install latest updates:

$ npm install -g ferment@latest && ferment --rebuild

If you get weird issues, trash it and reinstall:

$ npm rm -g ferment

from source

Warning: Development is done on the master branch, so this could be broken right now!

$ git clone https://github.com/mmckegg/ferment.git
cd ferment
$ npm install

And then run using:

$ npm start

Install latest updates:

$ npm update
$ npm run rebuild # make sure native add-ons are compatible with electron version 

If you get weird issues, trash your ferment/node_modules directory:

$ rm -rf node_modules
$ npm install

Hosting Your Own Pub Server

See this guide for full info setting up scuttlebot.

Ferment flavoured pub server

Ferment includes it's own bundled server app that you can run which also functions as a tracker and torrent seeder. It also scopes the network, only replicating ferment feeds with you (rather than the normal 3-hop friend replicate, which gives you a bunch of other ssb data, which you won't be able to see but takes up hard-drive space and makes things slow for no reason).

This is all super undocumented now. Eventually there will be a one-click style install. Or at least some step by step instructions for different platforms.

Here's a hint to get started:

xvfb-run npm run server -- --host={yourhostname} --seed {YOUR_ID}

TODO

  • Scuttlebot database
  • Webtorrent streaming
  • Layout main application interface, base styles
  • Audio player interface
  • Sequencial feed playback
  • API for adding file (transcode, analyse waveform)
  • Upload interface [still needs more fields, and artwork]
  • Connect to local peers and merge streams
  • Store artwork in blobstore, and retrieve again
  • User setup (choose display name, bio, picture)
  • Specific Artist Feed
  • Proper play/pause/loading buttons (nice try emoji)
  • Follow other users ("friends")
  • Display following stats
  • Likes
  • Backgrounding (keep seeding / syncing when main window is closed)
  • Invite to pub
  • Make torrents more reliable via pub server trackers [still need to make this work for other pubs though, hard coded to pub.ferment.audio right now]
  • Allow revisions (some kind of special reply that replaces the content with new content)
  • Show seed stats
  • Reposting
  • Make Save / Download buttons work
  • Automatically download/seed items from people you follow
  • Allow "delete" of audio posts (some kind of tombstoning)
  • Playlists
  • Commenting (time based)

Server

  • Pub server (invites, etc)
  • Seed torrents from specified feeds
  • Web interface for viewing specified feeds (started in branch)

License

GPL-3.0

Package Sidebar

Install

npm i ferment

Weekly Downloads

0

Version

0.6.19

License

GPL-3.0

Last publish

Collaborators

  • mmckegg