All Projects → almightycouch → audiopia

almightycouch / audiopia

Licence: MIT license
Peer-to-peer music platform built with modern Web Standards technologies.

Programming Languages

javascript
184084 projects - #8 most used programming language
Less
1899 projects
HTML
75241 projects

Projects that are alternatives of or similar to audiopia

musique
C'est très élégant
Stars: ✭ 91 (+133.33%)
Mutual labels:  music-player
npshell
Command line music queue manager. A music player from the comfort of your own shell.
Stars: ✭ 15 (-61.54%)
Mutual labels:  music-player
meteor-search
🔍 SPIKE of full-text search in MongoDB using Meteor
Stars: ✭ 40 (+2.56%)
Mutual labels:  meteorjs
ReactNative-Challenge-7
A series of animation challenges in React Native.
Stars: ✭ 16 (-58.97%)
Mutual labels:  music-player
Appo-Music
A full-stack clone of the incredible Apple Music online streaming platform, with an aim to re-create it's core features, seamless design, and excellent user experience.
Stars: ✭ 82 (+110.26%)
Mutual labels:  music-player
meteor-blaze-bs4
Generic Bootstrap 4 components library for Meteor Blaze.
Stars: ✭ 20 (-48.72%)
Mutual labels:  meteorjs
MusicPlayer
A Telegram Music Bot written in Python using Pyrogram and Py-Tgcalls. This is Also The Source Code of The UserBot Which is Playing Music in @S1-BOTS Support Group ❤️
Stars: ✭ 218 (+458.97%)
Mutual labels:  music-player
WindowsMediaController
Allows developers to more easily get information from and interact with the Windows 10/11 OS media interface.
Stars: ✭ 41 (+5.13%)
Mutual labels:  music-player
jazeee-meteor-spiderable
Fork of Meteor Spiderable with longer timeout, caching, better server handling
Stars: ✭ 33 (-15.38%)
Mutual labels:  meteorjs
TapeDeck
[WIP] Modern and cross-platform music player with MPD support
Stars: ✭ 22 (-43.59%)
Mutual labels:  music-player
amperfy
Amperfy is an iOS app to play songs from an Ampache or Subsonic server
Stars: ✭ 117 (+200%)
Mutual labels:  music-player
Meteor-logger-file
🔖 Meteor Logging: Store application log messages into file (FS)
Stars: ✭ 24 (-38.46%)
Mutual labels:  meteorjs
tideflow
Building extensible automation. Tideflow is a Realtime, open source workflows execution and monitorization web application.
Stars: ✭ 101 (+158.97%)
Mutual labels:  meteorjs
ArgPlayer
An android music player library
Stars: ✭ 52 (+33.33%)
Mutual labels:  music-player
pushtape-player.js
Customizable JS audio page player with global playback controls and autoscan (mutationobserver), built on Soundmanager2.
Stars: ✭ 27 (-30.77%)
Mutual labels:  music-player
ctrmus
3DS Music Player
Stars: ✭ 73 (+87.18%)
Mutual labels:  music-player
opencubicplayer
Open Cubic Player (unix fork). Music visualizer for various tracked music formats (amiga modules, S3M, IT), chiptunes and other formats related to demoscene
Stars: ✭ 141 (+261.54%)
Mutual labels:  music-player
HiMusic
一个简单的 Android 音乐播放器
Stars: ✭ 17 (-56.41%)
Mutual labels:  music-player
plyr
A hyperminimal, lightweight macOS desktop music application
Stars: ✭ 48 (+23.08%)
Mutual labels:  music-player
guess2song
A song-guessing web game integrated with KKBOX Open API
Stars: ✭ 21 (-46.15%)
Mutual labels:  meteorjs

Audiopia

GitHub license Github Issues

Cover image

Audiopia is a peer-to-peer music streaming platform built with modern Web Standards technologies (such as WebSockets and WebRTC) and APIs (MediaSource API, Web Audio API).

No online storage

Your songs are not stored anywhere but on your computer. Only meta-informations (title, album, artist, year, etc.) are available online. When you listen to a song, you stream the audio content directly from an other user.

Streaming is performed by a combination of client-server access and P2P protocol between Web users. This is done in an adaptive and transparent way in order to reduce server bandwidth costs while ensuring low latency and smooth playback for users.

No installation required

Audiopia is entirely built with Web Standards. For you this means no plugins or installation. You only need one of the supported browsers listed below.

Start your browser, type the URL and you are ready to go.

No registration required

You don't have to register to use Audiopia. Go to audiopia.io and start listening to the music you love.

In fact, Audiopia is fully anonymous, our service is about music, not users.
Note: We do not collect or store any user specific information.

How it works

We built our platform with Meteor (a complete open source framework for building reactive web and mobile apps in pure JavaScript) and PeerJS (a Javascript library which provides a complete, configurable, and easy-to-use peer-to-peer connection API).

Each time a user accesses audiopia.io, he gets a new generated id from the server. This id is used to identify each user as the owner of each song he makes available. The id is also used to create peer-to-peer data or media stream connections between users.

When the user imports new songs, the browser analyses each file and parses its meta-informations (title, album, artist, year, etc.). For each valid audio file loaded by the user, a new document is inserted to the server's database:

{"title": "Come closer", "artist: "Guts", ..., "mime": "audio/m4a", "owner": "gd8FMwsTS4T4ejytg"}

The server implements a fully-reactive NoSQL database (MongoDB) to keep track of available songs. It's data is instantly reflected to every connected user (see Meteor for more details). When a user exists, the server automatically remove all of his songs on the database.

To stream a song, the browser uses the owner's identifier to create a peer-to-peer media connection (PeerJS) and stream the audio file (see WebRTC, Web Audio API and MediaSource API).

Check the code for more details.

Browser support

We use a set of open standards technologies and apis which are not supported by all browsers. Before you start, check if your browser supports following requirements:

License & Warranty

Copyright (c) 2015 Mario Flach under the MIT License (MIT)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].