溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

android中怎么打開(kāi)video文件

發(fā)布時(shí)間:2021-07-19 15:15:29 來(lái)源:億速云 閱讀:1170 作者:Leah 欄目:移動(dòng)開(kāi)發(fā)

本篇文章為大家展示了android中怎么打開(kāi)video文件,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

先建立錄像窗口 map_video.xml

android:layout_width="fill_parent"

android:layout_height="fill_parent" >

android:id="@+id/arc_hf_video_view"

android:layout_width="fill_parent"

android:layout_height="fill_parent" />

android:id="@+id/arc_hf_video_timer"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_margin="40dp"

android:textColor="#ffff0000"

android:textSize="35dp"

android:textStyle="bold" >

android:id="@+id/arc_hf_video_btn"

android:layout_width="wrap_content"

android:layout_height="fill_parent"

android:layout_alignParentRight="true"

android:gravity="center"

android:orientation="vertical" >

android:id="@+id/arc_hf_video_start"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="@drawable/arc_hf_video_start" />

android:id="@+id/arc_hf_video_return"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="@drawable/arc_hf_video_return" />

android中怎么打開(kāi)video文件

主類 ArcHFVideo.java

android中怎么打開(kāi)video文件

public class ArcHFVideo extends Activity implements SurfaceHolder.Callback {

private Button mVideoStartBtn, mVideoReturnBtn;

private SurfaceView mSurfaceview;

private MediaRecorder mMediaRecorder;

private SurfaceHolder mSurfaceHolder; //

private File mRecVedioPath;

private File mRecAudioFile;

private TextView timer;

private int hour = 0;

private int minute = 0;

private int second = 0;

private boolean bool;

private int parentId;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

this.requestWindowFeature(Window.FEATURE_NO_TITLE);

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,

WindowManager.LayoutParams.FLAG_FULLSCREEN);

getWindow().setFormat(PixelFormat.TRANSLUCENT);

setContentView(R.layout.map_video);

parentId = getIntent().getIntExtra("parentId", 0);

timer = (TextView) findViewById(R.id.arc_hf_video_timer);

mVideoStartBtn = (Button) findViewById(R.id.arc_hf_video_start);

mVideoReturnBtn = (Button) findViewById(R.id.arc_hf_video_return);

mSurfaceview = (SurfaceView) this.findViewById(R.id.arc_hf_video_view);

// 設(shè)置計(jì)時(shí)器不可見(jiàn)

timer.setVisibility(View.GONE);

// 設(shè)置緩存路徑

mRecVedioPath = new File(Environment.getExternalStorageDirectory()

.getAbsolutePath() + "/hfdatabase/temp/");

if (!mRecVedioPath.exists()) {

mRecVedioPath.mkdirs();

}

// 綁定預(yù)覽視圖

SurfaceHolder holder = mSurfaceview.getHolder();

holder.addCallback(ArcHFVideo.this);

holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

mVideoStartBtn.setOnClickListener(new Button.OnClickListener() {

private boolean isRecording = true;

@Override

public void onClick(View v) {

Drawable iconStart = getResources().getDrawable(

R.drawable.arc_hf_video_start);

Drawable iconStop = getResources().getDrawable(

R.drawable.arc_hf_video_stop);

if (isRecording) {

mVideoStartBtn.setBackgroundDrawable(iconStop);

bool = true;

if (mMediaRecorder == null)

mMediaRecorder = new MediaRecorder();

else

mMediaRecorder.reset();

mMediaRecorder.setPreviewDisplay(mSurfaceHolder

.getSurface());

mMediaRecorder

.setVideoSource(MediaRecorder.VideoSource.CAMERA);

mMediaRecorder

.setAudioSource(MediaRecorder.AudioSource.MIC);

mMediaRecorder

.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);

mMediaRecorder

.setVideoEncoder(MediaRecorder.VideoEncoder.H264);

mMediaRecorder

.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

mMediaRecorder.setVideoSize(176, 144);

mMediaRecorder.setVideoFrameRate(15);

try {

mRecAudioFile = File.createTempFile("Vedio", ".3gp",

mRecVedioPath);

} catch (IOException e1) {

e1.printStackTrace();

}

mMediaRecorder.setOutputFile(mRecAudioFile

.getAbsolutePath());

try {

mMediaRecorder.prepare();

timer.setVisibility(View.VISIBLE);

handler.postDelayed(task, 1000);

mMediaRecorder.start();

} catch (Exception e) {

e.printStackTrace();

}

isRecording = !isRecording;

} else {

mVideoStartBtn.setBackgroundDrawable(iconStart);

if (mMediaRecorder != null) {

mMediaRecorder.stop();

bool = false;

timer.setText(format(hour) + ":" + format(minute) + ":"

+ format(second));

mMediaRecorder.release();

mMediaRecorder = null;

audioRename();

}

isRecording = !isRecording;

}

}

});

mVideoReturnBtn.setOnClickListener(new Button.OnClickListener() {

@Override

public void onClick(View v) {

if (mMediaRecorder != null) {

mMediaRecorder.stop();

mMediaRecorder.release();

mMediaRecorder = null;

}

audioRename();

finish();

}

});

}

@Override

public void surfaceCreated(SurfaceHolder holder) {

mSurfaceHolder = holder;

}

@Override

public void surfaceChanged(SurfaceHolder holder, int format, int width,

int height) {

mSurfaceHolder = holder;

}

@Override

public void surfaceDestroyed(SurfaceHolder holder) {

mSurfaceview = null;

mSurfaceHolder = null;

mMediaRecorder = null;

}

/*

* 生成Audio文件名字

*/

protected void audioRename() {

String path = Environment.getExternalStorageDirectory()

.getAbsolutePath()

+ "/hfdatabase/video/"

+ String.valueOf(parentId) + "/";

String fileName = new SimpleDateFormat("yyyyMMddHHmmss")

.format(new Date()) + ".3gp";

File out = new File(path);

if (!out.exists()) {

out.mkdirs();

}

out = new File(path, fileName);

mRecAudioFile.renameTo(out);

}

/*

* 定時(shí)器設(shè)置,實(shí)現(xiàn)計(jì)時(shí)

*/

private Handler handler = new Handler();

private Runnable task = new Runnable() {

public void run() {

if (bool) {

handler.postDelayed(this, 1000);

second++;

if (second < 60) {

timer.setText(format(second));

} else if (second < 3600) {

minute = second / 60;

second = second % 60;

timer.setText(format(minute) + ":" + format(second));

} else {

hour = second / 3600;

minute = (second % 3600) / 60;

second = (second % 3600) % 60;

timer.setText(format(hour) + ":" + format(minute) + ":"

+ format(second));

}

}

}

};

/*

* 格式化時(shí)間

*/

public String format(int i) {

String s = i + "";

if (s.length() == 1) {

s = "0" + s;

}

return s;

}

}

android中怎么打開(kāi)video文件

打開(kāi)指定路徑的video文件

File f = new File(filePath);

Intent intent = new Intent();

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.setAction(android.content.Intent.ACTION_VIEW);

intent.setDataAndType(Uri.fromFile(f), "video/*");

startActivity(intent);

上述內(nèi)容就是android中怎么打開(kāi)video文件,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI