Make video player using mpv player vb.nt - vb.net

I want to make video player using MPV player on vb.net
Is there any dll to add it?
I tried dll called mpv-1.dll but when add it to visual studio 2015 he can't read it
I want it to play live video if there any way else please tell me.

Related

Allow users to open any music file on thier local storage with my vb.net music software

The issue on ground is the fact that, judging from a standard music player, as a user, I can just move to my desktop and pick a particular music file,then I right click and i open it with the standard music app and automatically it gets the song and play it.
So I want my desktop app made with visual studio,vb.net to have that same ability. I need the onload event code to carry out that functionality. Thanks in anticipation

Webcam notification in vb.net

Currently I'm doing my Final Year Project regarding with webcam. I had faced a problem to detect for the live webcam. Is there any way that will appear notification when someone open the webcam in vb.net.
Thank you

How can I make the media of ElementHost it not get rezised into the middle?

I have made a media player in visual studio using ElementHost but when I start the media gets resized into the middle how do I fix this?

Visual Basic Windows media player: Changing current time

Im using a trackbar to change the current time position of the video displayed on a windows media player.
The trackbar maximum value is whatever the length (in seconds) of the video is.
So i need help with how to change the current time on a windows media player.
I am not having difficulty i just need to know how to do it.
Im not sure if there are several ways to embed windows media player into vb, so im just gonna clarify that i didnt install/download anything i just used the one that came with windows media player.
Use The currentPosition property of CtlControls.
player.Ctlcontrols.currentPosition = CDbl(10.4)

Embedding vlc player in vb.net

How to integrate vlc player in vb.net? Can anybody help me ? I am using visual studio 2008.
In my project i was using Windows media player before,but because of some problems occured in project.I wanted to switc my video player to vlc player..
My pc configuration:-
1)64 bit
2)Windows 8 pro 9200
Hoping that someone will help me.
My email Id - mayurpatil0123#gmail.com
AxWindowsMediaPlayer1.Ctlcontrols.currentPosition=reader.getString(5)
AxWindowsMediaPlayer1.Ctlcontrols.play()
Above code i have used for windows media player, I am searching for foe alternative for same code wic relates to vlc player.
Download the latest version of VLC, i'm sure it will work anyway, but just to have the same setup as me.
Add the VLC ActiveX as a component to the VB5 /6 project, it will put 2 traffic cones into the toolbox, called VLCPLugin and VLCPlugin2.
Place a new VLCPlugin control on your form and size it suitably, and add the following code to a button or the form load:
VLCPlugin1.addTarget "c:\winvideo\sample.avi", Null, VLCPlayListInsert, -666
VLCPlugin1.play
If you turn on autoplay, or use a vlc play list option with the word "go" in it, it will play the clip automatically.
You can use the fullscreen option to put it into fullscreen mode.
SOURCE