行了没谁了 发表于 2018-1-7 15:11

C#制作视频软件

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 小印视频解析
{
    public partial class Form1 : Form
    {
      public Form1()
      {
            InitializeComponent();
      }
      private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
      {
      }
      private void textBox1_TextChanged(object sender, EventArgs e)
      {
            
      }
      private void button1_Click(object sender, EventArgs e)
      {
            string bilibili = "http://api.baiyug.cn/vip/index.php?url=";
            string dilidili = textBox1.Text;
            int wawayu = dilidili.Length;
            int wwe = 0;
            if (textBox1.Text == "" || textBox1.Text == "请输入视频链接")
            {
                MessageBox.Show("我靠不要每次都怪程序问题行不,你看看你的电脑配置,再看看你网线插好没,没网的话你解析个头(—▼—)[]干杯");
            }
            webBrowser1.Navigate(bilibili + dilidili);
      }
      private void Form1_Load(object sender, EventArgs e)
      {
            MessageBox.Show("可选网址功能还未完成,有待更新,各位大佬请耐心等待、、、、QAQ","提示",MessageBoxButtons.OKCancel);
      }
    }
}

ftmovie 发表于 2018-1-7 19:19

调用百域阁的接口 这个还行  多添加点功能  

行了没谁了 发表于 2018-1-8 11:17

这个是很简约的,如果我把这个加上电视剧选集就更好一点了

chenianli 发表于 2018-1-8 17:06

int wwe = 0;
这个定义的什么?
页: [1]
查看完整版本: C#制作视频软件