TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Amin Memar
1.6k
180
29k
streaming video in vlc
Apr 3 2020 6:39 PM
hi
i want to stream byte video from file in vlc(i am using wpf)
i used
<
Vlc:VlcControl
xmlns:Vlc
=
"clr-namespace:Vlc.DotNet.Wpf;assembly=Vlc.DotNet.Wpf"
x:Name
=
"vlcPlayer"
Margin
=
"126,61,125.6,88"
/>
and
var currentAssembly = Assembly.GetEntryAssembly();
var currentDirectory =
new
FileInfo(currentAssembly.Location).DirectoryName;
// Default installation path of VideoLAN.LibVLC.Windows
var libDirectory =
new
DirectoryInfo(System.IO.Path.Combine(currentDirectory,
"libvlc"
, IntPtr.Size == 4 ?
"win-x86"
:
"win-x64"
));
vlcPlayer.SourceProvider.CreatePlayer(libDirectory
/* pass your player parameters here */
);
vlcPlayer.SourceProvider.MediaPlayer.Play(
new
Uri(
"http://79.170.191.118:1935/formula55_2/stream55_2/playlist.m3u8"
));
which nothing happening and i dont know how to path my video name
any help
Reply
Answers (
1
)
How to draw widthwise and height wise when i click button
Selected value is not fill in Dropdown list c# mvc