我正在为基于 Window 的计算机开发一个视频播放器,它可以播放来自任何地址的在线流媒体视频,例如 rtsp://live.example.com/live/mystream
为此,我正在使用来自 VLC 的插件。
我有 2 个问题: 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();
}
}
}
如果您对我的问题有答案,请帮助我。提前致谢。