rtmp stream

apateonas

Member
Joined
Sep 11, 2014
Messages
5
Programming Experience
3-5
Hi, my name is Marios and i'm from Greece

I'm trying to make a web radio but one station is rtmp (rtmp://31.204.153.190/live2/ethradio)

is there any way that i can stream it via WindowsMediaPlayer or other ?

Thank you in advance ....
 
since you help me and thank you very much for that please allow me for one last question ...

it seems that i can't mute it, change volume or stop it from playing
everything i did it fails ... here is what i wrote for mute

AxWindowsMediaPlayer1.settings.mute = CheckBox1.Checked If CheckBox1.Checked = True Then
Label8.Visible = True
Else
If CheckBox1.Checked = False Then
Label1.Text = AxWindowsMediaPlayer1.settings.volume.ToString()

for stop

AxWindowsMediaPlayer1.Ctlcontrols.stop()

and for volume with trackbar
Private Sub TrackBar1_Scroll(sender As Object, e As EventArgs) Handles TrackBar1.Scroll AxWindowsMediaPlayer1.settings.volume = TrackBar1.Value
Label1.Text = AxWindowsMediaPlayer1.settings.volume.ToString()
Label8.Visible = False
Label9.Visible = False
CheckBox1.Checked = False
End Sub

Private Sub Volume_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Label1.Text = AxWindowsMediaPlayer1.settings.volume.ToString()
TrackBar1.Minimum = 0
TrackBar1.Maximum = 110 ' covers the size of the scroll bars button
AxWindowsMediaPlayer1.Ctlcontrols.play()
End Sub

thank you in advance
 
Last edited:
Since the actual player is an external flash player, you might have to look into what the player object exposes. I'm not too sure that you will be able to do anything apart from play and stop...
 
Back
Top