Giter Site home page Giter Site logo

audioreview's Introduction

Audioreview

I had two reasons to build this:

  1. I wanted to learn React Native
  2. I participate in music band and we used to record our repetitions and comment them on soundcloud. Unfortunately, soundcloud does not offer enough features for us and also have some limits so we wanted some better solution for our needs.

Requirements

I used realm as a realtime database, which keeps everyone in sync. So in order to try the app you need to have realm object server (they have easy to install linux or macOS packages) and write paths to it in config.js.

At the moment you can't add tracks from the app, you can only register and comment. You need to use Realm Browser to push tracks and repetitions.

User

Once you have your server running, you need to have some user. You can either do it in the web interface of the server or right in the app. In the app enter login and password, tap register and wait some time, it will change screen on success.

Content

You also need to have some public direct link to audiotracks and images, I used nginx static website. Easiest way is to create repetitions via Realm Browser. Other way to create some tracks is to pause JS in the Model.js after this.realm was set, and execute this in console:

this.realm.write(()=>{
  let album = this.realm.create('Repetition', {
    title: 'Example album/repetition',
    date: new Date(),
    imageURL: 'http://example.com/image.jpg', //optional, but nice to have
  });
  album.tracks.push(this.realm.create('Track', {
    title: 'Our new song',
    duration: 244, //in seconds. currently unused, so you can define anything
    trackURL: 'http://example.com/song.mp3',
  }));
});

How to comment

When playing track, tap button in top right to open compose comment interface. Comment will be bond to a particular second on the track. You can tap on the comment to start playing track from the second bond to it. You can long tap on the comment to reply.

Credits:

This project is based on the react native music player which I used to bootstrap and dive into React Native. See contribution graph for more details.

audioreview's People

Contributors

alexandra-mara avatar andgrankin avatar devnacho avatar redetection avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.