open source project about implementing WebRTC MCU on the server [closed] - open-source

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have recently study on how to implement WebRTC MCU software on the server. I find an open source project called licode, but it is difficult for me to understand its source code. Can you recommmend some articles or documents about explaining the source code of licode, or there is another open source project you can recommend about implementing WebRTC MCU?

Janus is what you are looking for. It is the new cool kid on the block and I've found it to be really easy to understand since it doesn't make assumptions in the signaling plane or the features you'll use in your gateway.
It comes with a core that acts as a central hub for browser connections and then implements all its features with plugins. For instance here you have the Video MCU plugin code:
https://github.com/meetecho/janus-gateway/blob/master/plugins/janus_videoroom.c
As you can see it is programmed in C and comes with a JS API and clear code samples. Give it a go, I think it is ideal for a project study compared to already bloated multi-stack solutions (Licode, Jitsi Videobridge, etc)
Hope it helps!

Related

Where to host code for small, individual projects? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
as the final project for a programming course I took I've made a small tool which deals with databases issues. It works and I think it could be useful to others, so I'd like to put the code on the net to see if it actually is.
I'm aware of various source code hosts such as GitHub or Google Code, however they seem more oriented towards group development and I'm not sure if they're good for individual complete projects as well. I'm not saying I'm opposed to collaboration, but those platforms just seem a bit too much for something so simple.
Does anyone have any idea on how I should share the code?
Github would be fine - just because git allows multiple developers on a project doesn't mean it is required.
Most of the complexity is there if you need it but you do not have to ever visit those screens. The last time I looked at the network view for my more complex projects was a long time ago!

Which Canvas library to choose? Fabric, Kinetic, paper [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm currently about to begin work on a project and I'm wondering which library is the best to use.
The project is to create a simulation of a particular scenario. It's main requirements are:
Animation on various parts / objects
User input for some variable, including the constructor parameters of some objects.
Collision detection
Flood algorithm.
Images will be required and the 'pattern' aspect of fabric would be perfect for a couple of objects
I'm attempting to model the Macondo well disaster.
I recently discovered Fabric js and was excited, very excited at the prospect of being able to use objects. I then looked a bit harder and found many other libraries that are available.
I'd like to ask what the benefits of using Fabric js are over those of the alternative libraries. From what I've described, would Fabric be able to cater to all the requirements and would an alternative framework be a better solution?
Thanks for any help.

Are there any well-known public web sites which have made their source code publicly available? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm just about to rewrite my personal site as a learn-as-you-go project and am thinking of open-sourcing the code (see this question).
Are there any examples of large-ish web sites (not desktop applications) which have made their code open-source? Or is this generally thought of as a bad idea because it would be easier for a malicious hacker to find any security holes in the code?
WordPress is the best example, I can think of in your case.
And, the security implications come from the loopholes, you might leave by mistake or in coding process. But, then when you are open-sourcing the project, a lot of people may contribute and help you resolve those issues, which is how WordPress also works. They have a bug-tracker setup for them for this purpose.

Great Grails opensource application I could learn from [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I love to learn new and better ways to program from good opensource applications written in desired language/using such technology. Now I am digging into Grails and I didn't succeded in searching great and usable opensource application written in Grails. I tried googlecode, github and even the community page on grails documentation webpage. Find nothing really top quality application (missing documentation, too simple and so on). Maybe I missed some, but maybe users of grails have their loved famous app. Could someone recommend me any?
Thank you.
There is a list of open source projects based on Grails here: http://www.grails.org/OpenSource+Projects
One of the best is Graeme Rocher's Building Twitter in 40 minutes demo.
http://www.springsource.com/webinar/building-twitter-with-grails-40-minutes

Best site/software to visualize Most Active Open Source Projects? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
As a Microsoft .NET developer I have noticed a marked increase in the number of new Open Source frameworks and software tools that directly impact how your design a software solution. So much so that if you don't happen to be talking to the right person at the right time you may miss a whole major development. I started to wonder if there is anyone out there who is tracking and charting the "most active open source projects" over time. To be able to visualize what are the up and coming and most active open source projects appearing in any given space/category (e.g c#/web development space) would be incredibly useful. Searching around on the web I have only managed to find visualizations of specific projects (e.g. code_swarm and Gource) but nothing tracking Open Source projects over-all.
Do you know of any such sites?
http://www.ohloh.net/ is such a website - provides description, summaries and categorization for many open source projects; shows info about commit activities and lots of other useful info.
for an example check this out - http://www.ohloh.net/p/jQuery/analyses/latest
Hope this helps :o)