Coder Social home page Coder Social logo

Comments (6)

kevalpatel2106 avatar kevalpatel2106 commented on July 19, 2024

@fbayle Can you check this on the device running lower than 23? Also, make sure you added camera permission in manifest and do you handle runtime permissions?

Because this line E/VideoCapture_Exception: Unable to open camera - Camera disabled or in use by other process error log clearly indicates that OpenCameraException(OpenType.INUSE) exception is thrown.

from landscapevideocamera.

fbayle avatar fbayle commented on July 19, 2024

Thank you for your quick answer.

I've put those in the manifest :

<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>

And here is my gradle file

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.3"
    defaultConfig {
        applicationId "com.xxxxx.xxxxx"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.github.JeroenMols:LandscapeVideoCamera:1.2.2'
    testCompile 'junit:junit:4.12'
}

Edit : OK, with this gradle file, it works :

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "24.0.3"
    defaultConfig {
        applicationId "com.xxxxx.xxxxx"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.github.JeroenMols:LandscapeVideoCamera:1.2.2'
    testCompile 'junit:junit:4.12'
}

Thank you :)

from landscapevideocamera.

JeroenMols avatar JeroenMols commented on July 19, 2024

Can I conclude that the problem was that you didn't request the camera permission at runtime?

from landscapevideocamera.

fbayle avatar fbayle commented on July 19, 2024

No, the problem is that it does work with sdk 22 but not with sdk 23.

from landscapevideocamera.

kevalpatel2106 avatar kevalpatel2106 commented on July 19, 2024

@fbayle Yeah, that is because runtime permissions were introduced in API 23. So on API < 23, permissions are automatically granted, but for API >=23 you need to ask the user to grant permission.

I think you should read about runtime permissions from here first.

from landscapevideocamera.

JeroenMols avatar JeroenMols commented on July 19, 2024

Thanks for the stellar support @kevalpatel2106 !
Closing the issue as resolved

from landscapevideocamera.

Related Issues (20)

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.