Questions tagged [vlc.dotnet]

.NET control that hosts the audio/video capabilities of the VLC libraries

.NET control that hosts the audio/video capabilities of the VLC libraries, https://github.com/ZeBobo5/Vlc.DotNet

23 questions
4
votes
2 answers

How to play RTSP from VLC on C#

I'm new to using the VLC on C# winforms. I installed or added a vlcControl on my C# Project using Vlc.DotNet.Forms.dll. Below is the guide on how did I install the vlcControl on my…
Richard
  • 439
  • 1
  • 6
  • 25
2
votes
1 answer

Vlc.Dotnet Play streaming h264 raw data on WPF

all. I'm a beginner of programming and I met some difficulties on video decoding/playing. I have raw h264 data stream from tcpsocket, and I want to show the video on a WPF usercontrol. Since I have few knowledge of C++ & video decoding/encoding, it…
Vveeb
  • 23
  • 6
1
vote
1 answer

How to record video with VLC in my C# app

I am making a streaming app in c# and I have embedded the vlc player using vlc.dotnet. How can I add the feature to allow the user to record the livestreaming with a press of a button for example. And how can I view the seek bar as the…
Diana Sk
  • 75
  • 2
  • 9
1
vote
1 answer

Problem adding vlc to my WPF project using Vlc.DotNet

I want to integrate the vlc player to my project in order to display the stream of an IP camera. I was following this Integrate VLC player in C# (WPF) project using Vlc.DotNet to make a demo. Here is my c# code: using System.Reflection; using…
VTnar
  • 11
  • 1
  • 2
1
vote
1 answer

Stream using VLC on WinForms is not working

Im using VS2017, C#, and WinForms to make a desktop application. I installed the VLC.DotNet library through NuGet, and trying to play a local video and works perfectly. Nevertheless, when I try to set the media as a url to stream it in this…
David TG
  • 41
  • 4
0
votes
1 answer

How to Play and Record UDP URL Video in WPF C#?

I have to Play and Record UDP Url Video in my WPF Application, For that purpose currently I am using vlc.dotnet.wpf package In Xaml side I have Assembly xmlns:wpf="clr-namespace:Vlc.DotNet.Wpf;assembly=Vlc.DotNet.Wpf" Have Control to play…
Mr. Xek
  • 81
  • 3
  • 12
0
votes
1 answer

VLC.Dotnet saving streaming

Dears, I was checking VLC.Dotnet lib (I am new to audio/video streaming) static void Main(string[] args) { var currentDirectory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); // Default installation path of…
Nik Dell
  • 53
  • 7
0
votes
0 answers

WPF application crashes while playing video using VLC lib after sometime in Windows 10

I am using WPF VLC lib for playing video but app abruptly crashed without throwing any exception. I have found some error in event Viewer > Windows log > application. Fault bucket 1600891151472079635, type 1 Event Name: APPCRASH Response: Not…
mani gupta
  • 109
  • 1
  • 13
0
votes
1 answer

Playing video yeild black screen with audio(Vlc.DotNet and libvlcsharp)

I have a simple WinForms solution with 2 video players one is Vlc.DotNet and the second is libvlcsharp and besides that, I have a simple button that plays both videos. for libvlcsharp i followed this example and for Vlc.DotNet i used this…
styx
  • 1,852
  • 1
  • 11
  • 22
0
votes
0 answers

How to play a video in loop while streaming RTSP in VLC using C# console application

This is the code am using but not able to loop the video even after using :input-repeat=65535 in code. I need to play video in loop without doing any changes in vlc player. string url = "https://demo.mp4"; int lastIndex =…
man022
  • 1
0
votes
2 answers

VLC.Dotnet.WPF control stretches portrait video. How can I get the control to not stretch the video

VLC.Dotnet.WPF control stretches portrait video. How can I get the control to not stretch the video. Landscape videos play fine, its when I have a video recorded on a phone e.g. .mov in portrait mode it stretches the video. How can I play the video…
Mmedi005
  • 35
  • 7
0
votes
1 answer

c# VLC.Dotnet play and then pause issue

I hope someone will be able to help me with my issue. i want to take a screenshot of the video at a specific time index, however when i try to change the time all i get is a blank black screen. i added buttons which play and pause, it allows me to…
Vijay Yadav
  • 91
  • 13
0
votes
1 answer

Vlc.dotnet.form pause video with a button

I am hoping someone can help me in getting an issue of mine to work, I feel as if it is an easy one, however not having any luck in fixing what I am trying to do. I want to be able to pause a video which I am playing using vlc.dotnet below is a…
Vijay Yadav
  • 91
  • 13
0
votes
3 answers

Vlc.DotNet how open video and show first frame in Wpf?

I use Vlc.DotNet.Wpf, and I need the player to load the video and display only the first frame, so that the control gets a proper size and the user can see what the video is talking about, how can this be done? if I call…
codeDom
  • 1,623
  • 18
  • 54
0
votes
2 answers

c# Play a second video file using Vlc.DotNet.Forms

I am hoping someone can help me, i want to play another video file, however when i double click another video file it doesnt play it and just shows the last frame from the first video file. i am not sure what i am doing wrong. below is my code…
Vijay Yadav
  • 91
  • 13
1
2