資源簡介
只要要用c#寫個(gè)rtmp播放器,苦苦找不到資源,c#播放 RTMP,RTSP流媒體等源代碼,特此分享,希望能幫助大家
代碼片段和文件信息
using?System;
using?System.Windows.Forms;
namespace?WindowsFormsApplication1
{
????using?WebEye.Controls.WinForms.StreamPlayerControl;
????public?partial?class?Form1?:?Form
????{
????????public?Form1()
????????{
????????????InitializeComponent();
????????}
????????private?void?playButton_Click(object?sender?EventArgs?e)
????????{
????????????var?uri?=?new?Uri(_urlTextBox.Text);
????????????streamPlayerControl1.StartPlay(uri);
????????????_statusTextBox.Text?=?“Connecting...“;
????????}
????????private?void?stopButton_Click(object?sender?EventArgs?e)
????????{
????????????streamPlayerControl1.Stop();
????????}
????????private?void?imageButton_Click(object?sender?EventArgs?e)
????????{
????????????SaveFileDialog?saveFileDialog1?=?new?SaveFileDialog();
????????????saveFileDialog1.Filter?=?“Bitmap?Image|*.bmp“;
????????????if?(saveFileDialog1.ShowDialog()?==?DialogResult.OK)
????????????{
????????????????streamPlayerControl1.GetCurrentframe().Save(saveFileDialog1.FileName);
????????????}
????????}
????????private?void?UpdateButtons()
????????{
????????????_playButton.Enabled?=?!streamPlayerControl1.IsPlaying;
????????????_stopButton.Enabled?=?streamPlayerControl1.IsPlaying;
????????????_imageButton.Enabled?=?streamPlayerControl1.IsPlaying;
????????}
????????private?void?HandleStreamStartedEvent(object?sender?EventArgs?e)
????????{
????????????UpdateButtons();
????????????_statusTextBox.Text?=?“Playing“;
????????}
????????private?void?HandleStreamFailedEvent(object?sender?StreamFailedEventArgs?e)
????????{
????????????UpdateButtons();
????????????_statusTextBox.Text?=?“Failed“;
????????????MessageBox.Show(e.Error?“Stream?Player?Demo“
????????????????MessageBoxButtons.OK?MessageBoxIcon.Error);
????????}
????????private?void?HandleStreamStoppedEvent(object?sender?EventArgs?e)
????????{
????????????UpdateButtons();
????????????_statusTextBox.Text?=?“Stopped“;
????????}
????}
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
????..A..H.?????40448??2019-03-11?12:03??WinFormsSource\.vs\StreamPla
?????文件??????????0??2019-03-11?11:38??WinFormsSource\.vs\StreamPla
?????文件???????4096??2019-03-11?11:38??WinFormsSource\.vs\StreamPla
?????文件??????32768??2019-03-11?12:02??WinFormsSource\.vs\StreamPla
?????文件????1087712??2019-03-11?12:03??WinFormsSource\.vs\StreamPla
?????文件????????157??2015-07-23?06:03??WinFormsSource\StreamPla
?????文件??????11776??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件????????157??2015-07-23?06:03??WinFormsSource\StreamPla
?????文件??????22016??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件???30013440??2019-03-11?11:52??WinFormsSource\StreamPla
?????文件???????1995??2019-03-11?12:03??WinFormsSource\StreamPla
?????文件???????7496??2019-03-11?12:03??WinFormsSource\StreamPla
?????文件???????5817??2019-03-11?12:03??WinFormsSource\StreamPla
?????文件???????5702??2019-03-11?12:03??WinFormsSource\StreamPla
?????文件???????6438??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件??????????0??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件?????????42??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件???????1194??2019-03-11?11:46??WinFormsSource\StreamPla
?????文件????????847??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件??????27633??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件??????11776??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件??????22016??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件????????180??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件???????3584??2019-03-11?11:38??WinFormsSource\StreamPla
?????文件????????180??2019-03-11?11:41??WinFormsSource\StreamPla
?????文件????????171??2017-12-03?07:42??WinFormsSource\StreamPla
?????文件???????1030??2015-07-23?06:03??WinFormsSource\StreamPla
?????文件???????1460??2015-07-23?06:03??WinFormsSource\StreamPla
?????文件???????2860??2015-07-23?06:03??WinFormsSource\StreamPla
?????文件???????5612??2015-07-23?06:03??WinFormsSource\StreamPla
............此處省略21個(gè)文件信息
評論
共有 條評論