You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
4.3 KiB

  1. # Nextcloud Talk
  2. **Video- & audio-conferencing app for Nextcloud**
  3. ![](https://raw.githubusercontent.com/nextcloud/spreed/master/docs/call-in-action.png)
  4. ## Why is this so awesome?
  5. * 💬 **Chat integration!** Nextcloud Talk comes with some simple text chat since Nextcloud 13. More features are planned for future versions.
  6. * 👥 **Private, group, public and password protected calls!** Just invite somebody, a whole group or send a public link to invite to a call.
  7. * 💻 **Screen sharing!** Share your screen with participants of your call. You just need to use Firefox version 52 (or newer) or Chrome with this [Chrome extension](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol).
  8. * 🚀 **Integration with other Nextcloud apps!** Currently Contacts and users – more to come.
  9. * 🙈 **We’re not reinventing the wheel!** Based on the great [simpleWebRTC](https://simplewebrtc.com/) library.
  10. And in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):
  11. * 🙋 [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds
  12. If you have suggestions or problems, please [open an issue](https://github.com/nextcloud/spreed/issues) or contribute directly :)
  13. ### Supported Browsers
  14. Firefox | Chrome/Chromium | Edge | Safari | Opera
  15. ---|---|---|---|---
  16. ✔️ 52 or later | ✔️ 49 or later | ⏳ [Planned](https://github.com/nextcloud/spreed/issues/687) | ⏳ [Planned](https://github.com/nextcloud/spreed/issues/687) | ❌ Not planned yet
  17. ## Installing for Production
  18. Nextcloud Talk is really easy to install. You just need to enable the app from the [Nextcloud App Store](https://apps.nextcloud.com/apps/spreed) and everything will work out of the box.
  19. There are some scenarios (users behind strict firewalls / symmetric NATs) where a TURN server is needed. That's a bit more tricky installation, but the guys from [Nextcloud VM](https://github.com/nextcloud/vm) have developed a script which takes care of everything for you. You can find the script [here](https://github.com/nextcloud/vm/blob/master/apps/talk.sh). The script is tested on Ubuntu Server 18.04, but should work on 16.04 as well. Please keep in mind that it's developed for the VM specifically and any issues should be reported in that repo, not here.
  20. Here's a short [video](https://youtu.be/KdTsWIy4eN0) on how it's done.
  21. ## Development setup
  22. 1. Simply clone this repository into the `apps` folder of your Nextcloud development instance.
  23. 2. Run `make dev-setup`
  24. 3. Then activate it through the apps management. :tada:
  25. We are also available on [Freenode IRC #nextcloud-talk](https://webchat.freenode.net/?channels=nextcloud-talk), if you want to join the discussion.
  26. ### Milestones and Branches
  27. #### Branches
  28. In the Talk app we have one branch per Nextcloud server version. stable* branches of the app should always work with the same branch of the Nextcloud server.
  29. This is only off close to releases of the server, to allow easier finishing of features, so we don't have to backport them.
  30. #### Milestones
  31. * 5.0.0 - **Numeric** milestones are settled and waiting for their release or some final polishing
  32. * 💙 Next Minor (15) - The **next minor** milestone is for issues/PR that go into the next Dot-Release for the given Nextcloud version (in the example 15 - e.g. 5.0.1)
  33. * 💚 Next Major - The **next major** milestone is for issues/PR that go into the next feature release for the new Major Nextcloud version (as there are Minors for 15, this would be 16)
  34. * 💛 Following Major - The **following major** milestone is for issues/PR that should be worked towards/on but didn't make it into the next major due to timing constraints
  35. * 💔 Backlog - The **backlog** milestone is assigned to all remaining issues
  36. You can always pick a task of any of the milestones and we will help you to get it into the assigned milestone or also an earlier one if time permits. It's just a matter of having an overview and better visibility what we think should be worked on, but it's not exclusive.
  37. ### Disabling internal camera/audio for testing
  38. * Disable camera until reboot: `sudo modprobe -r uvcvideo`
  39. * Re-enable camera: `sudo modprobe uvcvideo`
  40. ## Contribution Guidelines
  41. For more information please see the [guidelines for contributing](https://github.com/nextcloud/spreed/blob/master/.github/contributing.md) to this repository.