Giter VIP home page Giter VIP logo

worldscope's People

Contributors

kylelwm avatar ndt93 avatar sharminelow avatar yj-soh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

worldscope's Issues

Stream is rotated while streaming from back camera

I am trying to stream to wowza server using WorldScope, i did streaming with front camera and it was good. But, when i used back camera(with ROTATION_90) my stream preview is getting rotated to 180 degree. i tried to rotate it from OnPreviewFrame() callback

                ` yuvImage = new Frame(imageWidth, imageHeight, Frame.DEPTH_UBYTE, 2);
                /*Rotate it...*/
                data = rotateYUV420Degree180(data,imageWidth, imageHeight);
                ((ByteBuffer)yuvImage.image[0].position(0)).put(data);`

`private byte[] rotateYUV420Degree180(byte[] data, int imageWidth, int imageHeight)
{
byte [] yuv = new byte[imageWidth_imageHeight_3/2];
int i = 0;
int count = 0;

    for (i = imageWidth * imageHeight - 1; i >= 0; i--) {
        yuv[count] = data[i];
        count++;
    }

    i = imageWidth * imageHeight * 3 / 2 - 1;
    for (i = imageWidth * imageHeight * 3 / 2 - 1; i >= imageWidth
            * imageHeight; i -= 2) {
        yuv[count++] = data[i - 1];
        yuv[count++] = data[i];
    }
    return yuv;
}`

Please help me to fix this.

Permissions <GET_ACCOUNTS, RECORD_AUDIO> are declared but not used

Hello, I'm Denis Bogdanas, a research assistant at Oregon Stat University.
I'm working on a tool that automatically introduces runtime permission checks and requests for Android 6 apps. As part of this study I analyzed this app. I was looking at the way permissions are referred in the code.

This app declares permissions <GET_ACCOUNTS, RECORD_AUDIO> in the apk manifest, but doesn't have any code that requires them. It is possible that source code doesn't declare the permissions. I only analyzed apk builds from f-droid. Yet android build mechanism may introduce them when the app uses certain libraries:

https://commonsware.com/blog/2015/06/25/hey-where-did-these-permissions-come-from.html

It won't create any problems on Android 6, but on Android 5- users may wonder why the app needs these permissions and be skeptical of installing the app.

Do you think this is an issue?

best regards,
Denis

Help fix issue

how solve this issue :

2019-05-05T00:42:45.991Z - info: [Authenticator.js] Authenticating with facebook 2019-05-05T00:42:46.001Z - info: [Platform.js] Requesting: https://graph.faceboo k.com/v2.5/me?access_token=EAACmysCm3moBAOPwkpJQzPDqZBUos6KIbiLqOmPwCxqIXcMhaqgF HMaWVpwxnTc496bZAtO24EuMZAcK37yUFnO4ZCVmZBveALsOVcBGdxlh8d4ZBnojSNW6tKHT964TM50t XxBMMXGuJXN73ZBdJnYPMr1KpHYVxw4UkglOJr2L35hzTOUUr99BWOmZBZCSEUU5p3w8K5zb7QZBdRWw iOHcMzZB7xZAgNw83tyHbzZA1xduZAFQZDZD (node:20972) [DEP0097] DeprecationWarning: Using a domain property in MakeCallba ck is deprecated. Use the async_context variant of MakeCallback or the AsyncReso urce class instead. 190505/014245.970, [response], http://RoyalblueHidden-VM:3000: post /api/users/l ogin {} 400 (374ms)

Why Facebook required?

If WorldScope has its own servers, why does it use Facebook login? I'm worried about using Facebook to log into any service if it may (even in principle) mean that the service gets any access to my Facebook account.

Anyway, really interesting project! Is there some other place to discuss and ask questions? For instance, have you considered enabling gitter chat?

Unexpected token => in authenticator.js

I followed instruction strictly and then when hit npm start , syntax error was thrown with

Authenticator.js:61
})().then((adapter) => adapter.getUser());
^^
SyntaxError: Unexpected token =>
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Function. (F:\worldscope-master\app_server\node_modules\rfr\lib\rfr.js:160:12)
at Object. (F:\worldscope-master\app_server\app\Router.js:12:21)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3

What should be the issue?

Connect without facebook

Hello,

I'd like to use this app without connecting at facebook. It would be nice for privacy-aware users.

Thanks.

Facebook login

Found worldscope on fdriod, concept looks very neat, just curious why Facebook login is required? All the best!

Stream preview is streched

Hi,
My Android devices is supporting 1280x720(Also tried different resolution) resolution and i am streaming with that resolution. But on while viewing preview it is not proper and it's streching.

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.