You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
FFmpegAndroid/app/src/main/res/layout/activity_media_handle.xml

34 lines
1.3 KiB

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.frank.ffmpeg.activity.MediaHandleActivity">
<Button
android:id="@+id/btn_mux"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="120dp"
android:text="@string/media_mux"/>
<Button
android:id="@+id/btn_extract_audio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/media_extra_audio"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_mux"/>
<Button
android:id="@+id/btn_extract_video"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/media_extract_video"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/btn_extract_audio"/>
</RelativeLayout>