请帮助我找到存储在计算机上的临时视频文件 [英] please help me find the temp video file stored on my computer

查看:113
本文介绍了请帮助我找到存储在计算机上的临时视频文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用下面的代码(从网站上读取视频并在面板上播放)可以正常工作,但是该视频存储在计算机上的位置,或者在我需要运行此程序时请帮助我纠正该错误它来自我的网站,而不是来自临时文件

I have used the below code(read a video from a website and play it on a panel) its working but where this video stored on my computer or please help me to correct when ever i need to run this program it should read it from my website not from temporary file

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.DirectX.AudioVideoPlayback;
namespace webplayer
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
                int width = panel1.Width;
                int height = panel1.Height;
              System.Uri u = new Uri("http://cassfordinfo.com/Testmovie.avi");                Video video;
              video = Video.FromUrl(u);

                video.Owner = panel1;
                video.Stop();
                video.Play();

                // resize the video to the size original size of the panel

                panel1.Size = new Size(width, height);
            }catch(Exception gh)
            {
                MessageBox.Show(gh.ToString());
            }
        }

    }
}

推荐答案

看到显示video = Video.FromUrl(u);的行吗?这来自其上方一行中的URL,而不是本地计算机.如果要获取该视频并将其保存在本地计算机上,则可以尝试从该URL下载文件并将其保存.
See the line where it says video = Video.FromUrl(u);? That comes from the URL in the line right above it, not your local machine. If you want to get that video and save it on your local machine, you can try to download the file from that URL and save it.



这篇关于请帮助我找到存储在计算机上的临时视频文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆