本文介绍了在资源中播放视频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在资源文件中播放视频,但不想在硬盘上创建临时文件。



* .type资源中的返回文件视频是byte []。现在什么在媒体中播放字节?



File.WriteAllBytes(filePath,Properties.Resources.avifile);





----------样本----------------------

字符串filePath = Path.GetTempPath()+ @avifile.avi;

File.WriteAllBytes(filePath,Properties.Resources.avifile);

axmediaplayer.Movie = filePath;

axmediaplayer.Play();



坦克帮助。

i want play video in resource file but not want create temp file on hard.

*.type return file video in resource is byte[].what now play byte in media?

File.WriteAllBytes(filePath, Properties.Resources.avifile);


----------sample----------------------
string filePath = Path.GetTempPath() + @"avifile.avi";
File.WriteAllBytes(filePath, Properties.Resources.avifile);
axmediaplayer.Movie = filePath;
axmediaplayer.Play();

tanks of help.

推荐答案


这篇关于在资源中播放视频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 14:40