Rayman / fusic-meteor

Fusic: Realtime Social Music Collaboration
MIT License
27 stars 12 forks source link

Play functionality (crappy but working) #8

Closed pepf closed 10 years ago

Rayman commented 10 years ago

I was also thinking about this problem. I'll merge it now, we can always improve it later.

Maybe add some more information to a playlist? Then we can also visualize every user that is playing a song in that playlist.

playlist: {
  title: String,
  ...
  songs: {
    id: YoutubeId,
    playing: [
      id: UserId,
      status: 'playing',
      position: 14,
    ],
  }
}
pepf commented 10 years ago

Yes! Sounds like a good plan; we should actually have usernames implemented as well; otherwise we won't be able to distinguish who's who ;) On 9 Jun 2014 19:49, "Ramon Wijnands" notifications@github.com wrote:

I was also thinking about this problem. I'll merge it now, we can always improve it later.

Maybe add some more information to a playlist? Then we can also visualize every user that is playing a song in that playlist.

playlist: { title: String, ... songs: { id: YoutubeId, playing: [ id: UserId, status: 'playing', position: 14, ], } }

— Reply to this email directly or view it on GitHub https://github.com/Rayman/fusic-meteor/pull/8#issuecomment-45520782.