I am capturing video from video camera, and I want to view it before uploading. and I'm using SimpleMediaFensterPlayerController. its not playing the video. is it possible to play the video captured and stored in local system . if so then how can it be done.
<RelativeLayout
android:id="@+id/videoTextureLayout"
android:layout_above="@+id/bottomBtnContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
>
<com.malmstein.fenster.view.FensterVideoView
android:id="@+id/play_video_texture"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_centerInParent="true"
android:keepScreenOn="true"
android:fitsSystemWindows="true" />
<com.malmstein.fenster.controller.SimpleMediaFensterPlayerController
android:id="@+id/play_video_controller"
android:layout_below="@+id/play_video_texture"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:animateLayoutChanges="false"
android:fitsSystemWindows="true" />
</RelativeLayout>
The above is my xml to display video captured from local system.