3

rtsp://live.example.com/live/mystream などの任意のアドレスからオンライン ストリーミング ビデオを再生できる Windows ベースのコンピューター用のビデオ プレーヤーを開発しています。

この目的のために、VLC のプラグインを使用しています。

2 つの質問があります。1. バッファリングを開始したかどうかを示すビデオ プレーヤーのステータスを取得する方法。はいの場合、進行状況としてバッファリングを表示します。

  1. VLC プラグインは、ビデオが再生されていないときに、ビデオ プレーヤー画面の中央に VLC のロゴを表示します。そのロゴをカスタム ロゴに置き換える方法:

以下は私のコードです:

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 System.Net;
using System.Net.NetworkInformation;
using SikhPlayer;
using System.Windows;


namespace SikhPlayer
{
    public partial class Form1 : Form
    {
        public Form1()
        {

            InitializeComponent();
                   }



        public void Form1_Load(object sender, EventArgs e)
        {

            InitializeComponent();
            System.Threading.Thread.Sleep(500);

            //axVLCPlugin21.BringToFront();
            axVLCPlugin21.video.logo.file("http://localhost/logo.png");
            axVLCPlugin21.video.logo.opacity = 50;
            axVLCPlugin21.video.logo.Position = "center";
            axVLCPlugin21.video.logo.enable();


                axVLCPlugin21.AutoPlay = false;

        }

            private void button1_Click(object sender, EventArgs e)
        {
           axVLCPlugin21.playlist.playItem(@"rtsp://ip.example.com:1935/live/mystream);


             axVLCPlugin21.Focus();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            axVLCPlugin21.playlist.stop();
        }
    }
}

私の質問に対する答えがあれば、私を助けてください。前もって感謝します。

4

1 に答える 1