We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6382f commit 15c9772Copy full SHA for 15c9772
app/src/main/java/protect/videotranscoder/activity/MainActivity.java
@@ -1299,9 +1299,6 @@ public void onNothingSelected(AdapterView<?> parentView)
1299
1300
private void setSelectMediaFile(String path, String overrideBaseName)
1301
{
1302
- videoView.setVideoPath(path);
1303
- videoView.start();
1304
-
1305
videoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener()
1306
1307
@Override
@@ -1402,6 +1399,8 @@ public void onResult(MediaInfo result)
1402
1399
1403
1400
if(result != null)
1404
1401
+ videoView.setVideoPath(uri);
+ videoView.start();
1405
1406
videoInfo.setFileBaseName(overrideBaseName);
1407
populateOptionDefaults();
0 commit comments