Video plays in slow motion
- By Vikasch
- Smartphones
- 3 Replies
Why my all videos are playing in slow motion even in VLC, MX player, Facebook what's app etc
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Executing tasks: [:app:assembleDebug]
7:25 AM Emulator: dsound:
7:25 AM Emulator: Could not initialize DirectSoundCapture
7:25 AM Emulator: dsound: Reason: No sound
7:25 AM Emulator: driver is available for use, or the given GUID is not a valid DirectSound device ID
7:25 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object
7:25 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object
7:25 AM Emulator: audio: Failed to create voice `goldfish_audio_in'
7:25 AM Emulator: C:\Users\Shelby\AppData\Local\Android\Sdk\emulator\qemu\windows-x86_64\qemu-system-i386.exe: warning: opening audio input failed
7:25 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object
7:25 AM Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object
7:25 AM Emulator: audio: Failed to create voice `adc'
private void shareImageWithUri(Uri uri) {
Intent intent3 = new Intent(Intent.ACTION_MAIN, null);
intent3.addCategory(Intent.CATEGORY_LAUNCHER);
intent3.setComponent(new ComponentName("org.mozilla.firefox", "org.mozilla.firefox.App"));
intent3.setAction("org.mozilla.gecko.BOOKMARK");
intent3.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent3.putExtra("args", "--url=" + uri.toString());
intent3.setData(uri);
startActivity(intent3);
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.1"
defaultConfig {
applicationId "com.example.app5"
testApplicationId "com.example.app5.test"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
testHandleProfiling true
testFunctionalTest true
}
testBuildType "debug"
testOptions {
reportDir "$rootDir/test-reports"
resultsDir "$rootDir/test-results"
unitTests {
returnDefaultValues true
all {
jvmArgs '-XX:MaxPermSize=256m'
if(it.name == 'testDebugUnitTest')
systemProperty 'debug', 'true'
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}